:root {
  --line: rgba(94, 170, 255, 0.22);
  --text: #dbeeff;
  --muted: #92a8c3;
  --cyan: #3fe6ff;
  --blue: #4f82ff;
  --magenta: #ff5fe3;
  --purple: #9e73ff;
  --green: #2cebba;
  --red: #ff6f7b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 130, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 0%, rgba(227, 58, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(63, 230, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #010308 0%, #07111b 52%, #03060d 100%);
}

body.site-locked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(90, 153, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 153, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 42px, 42px 100%;
  mask-image: radial-gradient(circle at center, black 58%, transparent 96%);
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(58, 160, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(2, 5, 13, 0.98), rgba(1, 2, 7, 0.99));
}

.gate-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  transition: transform 1.45s cubic-bezier(0.18, 0.9, 0.15, 1), box-shadow 220ms ease;
}

.gate-door-left {
  left: 0;
}

.gate-door-right {
  right: 0;
}

.door-panel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 14%, rgba(255, 255, 255, 0.02) 48%, transparent 86%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(94, 116, 144, 0.18), rgba(25, 33, 47, 0.96) 22%, rgba(11, 15, 24, 0.98) 50%, rgba(32, 38, 52, 0.96) 100%);
  border-right: 1px solid rgba(144, 173, 199, 0.18);
  border-left: 1px solid rgba(144, 173, 199, 0.1);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.05), inset 0 0 0 2px rgba(17, 25, 39, 0.95);
}

.gate-door-left .door-panel::before,
.gate-door-right .door-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(173, 194, 215, 0.08);
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03) 20%, transparent 40%, rgba(255, 255, 255, 0.02) 52%, transparent 68%),
    repeating-linear-gradient(180deg, transparent 0 62px, rgba(161, 183, 208, 0.05) 62px 64px);
}

.gate-door-left .door-panel::after,
.gate-door-right .door-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(180deg, rgba(136, 175, 211, 0.2), rgba(16, 26, 39, 0.96));
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.gate-door-left .door-panel::after {
  right: 0;
}

.gate-door-right .door-panel::after {
  left: 0;
}

.door-rivets {
  position: absolute;
  inset: 44px 30px;
  background-image:
    radial-gradient(circle, rgba(197, 215, 233, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(197, 215, 233, 0.28) 0 1px, transparent 2px);
  background-size: 84px 84px, 84px 84px;
  background-position: 0 0, 42px 42px;
  opacity: 0.28;
}

.wall-scratch {
  position: absolute;
  left: clamp(28px, 7vw, 88px);
  top: 18%;
  transform: rotate(-9deg);
  color: rgba(234, 240, 245, 0.34);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.12);
}

.wall-scratch::before {
  content: "scratched into steel";
  display: block;
  margin-bottom: 10px;
  font-size: 0.56rem;
  color: rgba(185, 195, 205, 0.18);
  letter-spacing: 0.22em;
}

.wall-scratch span {
  display: inline-block;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  position: relative;
}

.wall-scratch span::before,
.wall-scratch span::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 250, 255, 0.4), transparent);
}

.wall-scratch span::before {
  top: 35%;
  transform: rotate(-7deg);
}

.wall-scratch span::after {
  bottom: 28%;
  transform: rotate(8deg);
}

.access-console {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(480px, calc(100% - 42px));
  transform: translate(-50%, -50%);
  padding: 20px 22px;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.38), 0 0 32px rgba(63, 230, 255, 0.1);
}

.access-console h2 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.1rem, 2.1vw, 1.6rem);
}

.console-copy {
  margin: 0 0 16px;
  color: #b6c6da;
  font-size: 1rem;
  line-height: 1.35;
}

.access-form {
  display: grid;
  gap: 10px;
}

.access-form label {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #9eb7d1;
}

.access-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-input-row input {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(87, 181, 255, 0.22);
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.96), rgba(2, 5, 13, 0.98));
  color: #eff8ff;
  font: inherit;
  letter-spacing: 0.08em;
  outline: none;
  box-shadow: inset 0 0 14px rgba(63, 230, 255, 0.04);
}

.access-input-row input:focus {
  border-color: rgba(63, 230, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(63, 230, 255, 0.16), inset 0 0 14px rgba(63, 230, 255, 0.06);
}

.access-status-wrap {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(85, 133, 189, 0.18);
  background: linear-gradient(180deg, rgba(4, 10, 19, 0.94), rgba(2, 5, 11, 0.98));
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: center;
}

.access-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(115, 150, 182, 0.34);
  box-shadow: 0 0 0 4px rgba(115, 150, 182, 0.08);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.access-status-screen {
  min-height: 1.2em;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.09em;
  color: #9eb4ca;
  text-transform: uppercase;
  font-size: 0.72rem;
}

body.site-locked .shell {
  filter: blur(8px) brightness(0.22) saturate(0.8);
  transform: scale(1.015);
  pointer-events: none;
  user-select: none;
}

body.access-checking .access-indicator {
  background: #ffd96b;
  box-shadow: 0 0 14px rgba(255, 217, 107, 0.65), 0 0 0 4px rgba(255, 217, 107, 0.12);
}

body.access-denied .access-status-screen {
  color: #ff8a97;
}

body.access-denied .access-indicator {
  background: #ff5b7c;
  box-shadow: 0 0 14px rgba(255, 91, 124, 0.55), 0 0 0 4px rgba(255, 91, 124, 0.12);
}

body.access-granted .access-status-screen {
  color: #61f0a2;
}

body.access-granted .access-indicator {
  background: #61f0a2;
  box-shadow: 0 0 16px rgba(97, 240, 162, 0.7), 0 0 0 4px rgba(97, 240, 162, 0.14);
}

body.access-granted .shell {
  filter: none;
  transform: none;
}

body.access-granted .gate-door-left {
  transform: translateX(-102%);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.34);
}

body.access-granted .gate-door-right {
  transform: translateX(102%);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.34);
}

.access-gate.opened {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.shell {
  width: min(1600px, calc(100% - 20px));
  margin: 10px auto;
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 12px;
}

.frame {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 11, 24, 0.96), rgba(3, 7, 16, 0.96));
  box-shadow: 0 0 22px rgba(44, 121, 255, 0.12), inset 0 0 16px rgba(73, 123, 255, 0.05);
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
}

.frame::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(116, 198, 255, 0.06);
  clip-path: inherit;
  pointer-events: none;
}

.inner {
  background: linear-gradient(180deg, rgba(8, 15, 31, 0.98), rgba(4, 8, 18, 0.98));
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}

.logo-panel,
.sidebar-nav,
.status-panel,
.contact-panel,
.sidebar-footer {
  padding: 12px;
}

.logo-panel {
  display: grid;
  place-items: center;
  text-align: center;
}

.logo-panel img,
.hero-logo,
.card-art img,
.release-card img,
.release-art img,
.about-badge img,
.sidebar-footer img {
  display: block;
  width: 100%;
}

.ice-logo {
  opacity: 1;
  filter: drop-shadow(0 0 18px rgba(113, 213, 255, 0.18));
}

.doom-clean {
  mix-blend-mode: multiply;
  filter: brightness(1.3) contrast(1.2) saturate(1.12);
}

.logo-panel strong,
.hero-title,
.section-tag,
.section-header h2,
.nav-item,
.chip,
.wide-link,
.hire-button,
.download-link,
.footer strong,
.guide-card h3,
.hero-pill strong {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}

.logo-panel strong {
  margin-top: 8px;
  color: #73cfff;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.ct-lockup img {
  transform: scale(1.06);
}

.sidebar-nav {
  display: grid;
  gap: 4px;
}

.nav-item {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #a6b9d0;
  padding: 10px 12px;
  font-size: 0.86rem;
  letter-spacing: 0.075em;
  border: 1px solid transparent;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
  white-space: nowrap;
}

.nav-item span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(63, 230, 255, 0.3);
  font-size: 0.72rem;
}

.nav-item:hover,
.nav-item.active {
  color: #effaff;
  background: linear-gradient(90deg, rgba(45, 133, 255, 0.18), rgba(18, 231, 255, 0.04));
  border-color: rgba(68, 206, 255, 0.28);
}

.section-tag {
  margin: 0 0 8px;
  color: var(--cyan);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.status-panel h3,
.guide-card h3,
.release-copy h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.status-panel h3 {
  color: #61f0a2;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-top: 12px;
  align-items: end;
  height: 34px;
}

.waveform span {
  background: linear-gradient(180deg, rgba(63, 255, 185, 0.95), rgba(63, 255, 185, 0.22));
  border-radius: 999px 999px 0 0;
}

.waveform span:nth-child(1) { height: 8px; }
.waveform span:nth-child(2) { height: 13px; }
.waveform span:nth-child(3) { height: 10px; }
.waveform span:nth-child(4) { height: 26px; }
.waveform span:nth-child(5) { height: 15px; }
.waveform span:nth-child(6) { height: 19px; }
.waveform span:nth-child(7) { height: 7px; }
.waveform span:nth-child(8) { height: 31px; }
.waveform span:nth-child(9) { height: 11px; }
.waveform span:nth-child(10) { height: 21px; }
.waveform span:nth-child(11) { height: 9px; }
.waveform span:nth-child(12) { height: 5px; }

.contact-panel {
  display: grid;
  gap: 8px;
}

.contact-panel a {
  color: #9fc1e0;
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.2;
  word-break: break-word;
}

.main {
  display: grid;
  gap: 10px;
}

.hero,
.products,
.new-release,
.studio,
.developments,
.about,
.footer {
  padding: 12px;
}

.hero-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 6px 12px 12px;
}

.hero-title {
  color: var(--cyan);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.hero-slogan {
  color: #7d8ea8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.hero-actions,
.clock-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clock-wrap {
  color: #aebad0;
  font-family: "Orbitron", sans-serif;
  font-size: 0.76rem;
}

.clock-plus {
  color: #ff4d71;
  font-weight: 700;
  font-size: 1rem;
}

.hire-button,
.product-card a,
.wide-link,
.section-header.with-link a,
.download-link {
  text-decoration: none;
  color: #effbff;
  border: 1px solid rgba(83, 201, 255, 0.32);
  background: linear-gradient(180deg, rgba(18, 86, 165, 0.65), rgba(10, 27, 60, 0.95));
  padding: 9px 16px;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  transition: filter 140ms ease, border-color 140ms ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 12px;
  align-items: stretch;
}

.hero-brand {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(90deg, rgba(6, 11, 24, 0.9) 0%, rgba(6, 11, 24, 0.66) 45%, rgba(6, 11, 24, 0.84) 100%),
    radial-gradient(circle at 18% 30%, rgba(43, 144, 255, 0.16), transparent 24%);
}

.hero-brand::before {
  content: "";
  position: absolute;
  inset: -18% 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 20, 0.1), rgba(4, 9, 20, 0.34)),
    url("https://assetscts.netlify.app/cyberpunkcity.png") center 0 / cover repeat-y;
  opacity: 0.96;
  transform: scale(1.06);
  transform-origin: center center;
  animation: city-rise 7s linear infinite;
  will-change: background-position;
  z-index: 0;
}

.hero-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 11, 24, 0.86) 0%, rgba(6, 11, 24, 0.5) 45%, rgba(6, 11, 24, 0.78) 100%),
    radial-gradient(circle at 18% 30%, rgba(43, 144, 255, 0.14), transparent 24%);
  z-index: 0;
  pointer-events: none;
}

.hero-brand > * {
  position: relative;
  z-index: 1;
}

@keyframes city-rise {
  from {
    background-position: center 0, center 0;
  }
  to {
    background-position: center -680px, center -680px;
  }
}

.hero-copy {
  max-width: 560px;
  padding-top: 10px;
}

.hero-kicker {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.hero-copy h1 {
  margin: 0 0 10px;
  max-width: 520px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.08;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  color: #eef7ff;
}

.hero-copy p {
  margin: 3px 0;
  color: #b8c7db;
  font-size: 1rem;
}

.creation-snippets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.snippet-card {
  padding: 12px;
  border: 1px solid rgba(93, 164, 255, 0.18);
  background: rgba(8, 14, 29, 0.8);
  backdrop-filter: blur(2px);
}

.snippet-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6ce3ff;
  font-size: 0.82rem;
}

.snippet-card span {
  color: #b4c7da;
  line-height: 1.26;
  font-size: 0.92rem;
}

.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  min-width: 170px;
  border: 1px solid rgba(109, 153, 255, 0.22);
  background: rgba(11, 15, 34, 0.88);
}

.hero-pill-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 160, 255, 0.28);
  color: var(--cyan);
  font-size: 0.92rem;
  font-family: "Orbitron", sans-serif;
}

.hero-pill div span {
  color: #a9bad1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

.guide-card {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 14px;
  border: 1px solid rgba(121, 183, 255, 0.16);
  background: rgba(7, 10, 22, 0.8);
}

.guide-card p {
  margin: 0 0 8px;
  color: #bccce1;
  line-height: 1.32;
}

.guide-sign {
  color: #de79ff;
  text-align: right;
  font-size: 1.35rem;
}

.section-header,
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header {
  margin-bottom: 10px;
}

.section-header span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.16em;
}

.section-header h2 {
  margin: 0;
  font-size: 0.96rem;
  letter-spacing: 0.15em;
}

.with-link {
  justify-content: space-between;
}

.section-header.with-link a {
  padding: 6px 10px;
  font-size: 0.66rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.product-card {
  min-height: 100%;
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(11, 16, 34, 0.96), rgba(5, 8, 18, 0.98));
  transition: box-shadow 160ms ease;
}

.nexus-card {
  overflow: hidden;
}

.nexus-card::before {
  content: "";
  position: absolute;
  inset: -24%;
  background: radial-gradient(circle, rgba(63, 230, 255, 0.18), transparent 48%);
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: none;
}

.nexus-card:hover::before,
.nexus-card.expanded::before,
.nexus-card.ordering::before {
  opacity: 1;
  transform: scale(1);
}

.product-card.cyan { border-color: rgba(67, 230, 255, 0.32); }
.product-card.blue { border-color: rgba(97, 132, 255, 0.32); }
.product-card.magenta { border-color: rgba(255, 73, 219, 0.26); }
.product-card.purple { border-color: rgba(142, 98, 255, 0.28); }
.product-card.red { border-color: rgba(255, 90, 103, 0.28); }
.product-card.amber { border-color: rgba(255, 178, 74, 0.3); }
.product-card.green { border-color: rgba(44, 235, 186, 0.28); }
.product-card.doom { border-color: rgba(255, 90, 103, 0.32); }

.card-art {
  width: 100%;
  height: 118px;
  flex: 0 0 118px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 6px;
  overflow: hidden;
}

.card-art img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 180ms ease, filter 180ms ease;
}

.nexus-card:hover .card-art img,
.nexus-card.expanded .card-art img,
.nexus-card.ordering .card-art img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 20px rgba(63, 230, 255, 0.28));
}

.card-art-tall {
  height: 132px;
  flex-basis: 132px;
}

.card-art-circle {
  height: 132px;
  flex-basis: 132px;
  padding: 10px;
}

.card-art-wide {
  height: 126px;
  flex-basis: 126px;
  padding: 0;
}

.rb-icon,
.schedule-icon,
.media-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.rb-back,
.rb-front {
  position: absolute;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3.1rem;
  line-height: 1;
}

.rb-back {
  transform: translateX(-16px);
  color: #6f9dff;
}

.rb-front {
  transform: translateX(16px);
  color: #ff67de;
}

.schedule-icon {
  grid-template-columns: repeat(3, 18px);
  grid-template-rows: repeat(3, 18px);
  gap: 8px;
}

.schedule-icon span {
  width: 18px;
  height: 18px;
  border: 2px solid #cb7cff;
  background: rgba(203, 124, 255, 0.12);
  box-shadow: 0 0 10px rgba(203, 124, 255, 0.15);
}

.media-icon {
  min-height: 100px;
}

.media-ring {
  width: 76px;
  height: 76px;
  border: 6px solid #2cebbb;
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(44, 235, 187, 0.16);
}

.media-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 6px solid #2cebbb;
  border-right: 6px solid #2cebbb;
}

.media-arrow-a {
  top: 16px;
  right: 18px;
  transform: rotate(22deg);
}

.media-arrow-b {
  bottom: 16px;
  left: 18px;
  transform: rotate(202deg);
}

.colecuts-icon {
  position: relative;
}

.colecuts-screen {
  position: relative;
  width: 100%;
  max-width: 112px;
  aspect-ratio: 1.08;
  border: 1px solid rgba(255, 178, 74, 0.3);
  background:
    linear-gradient(180deg, rgba(14, 20, 36, 0.98), rgba(7, 10, 19, 0.99)),
    radial-gradient(circle at top right, rgba(255, 172, 84, 0.16), transparent 34%);
  box-shadow: 0 0 18px rgba(255, 178, 74, 0.08);
}

.colecuts-toolbar {
  position: absolute;
  inset: 8px 8px auto;
  height: 10px;
  border-bottom: 1px solid rgba(255, 178, 74, 0.16);
}

.colecuts-toolbar::before,
.colecuts-toolbar::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 193, 112, 0.8);
}

.colecuts-toolbar::before {
  left: 0;
}

.colecuts-toolbar::after {
  left: 8px;
}

.colecuts-play {
  position: absolute;
  left: 16px;
  top: 28px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffb24a;
  filter: drop-shadow(0 0 10px rgba(255, 178, 74, 0.22));
}

.colecuts-track {
  position: absolute;
  left: 50px;
  right: 12px;
  height: 8px;
  border: 1px solid rgba(255, 178, 74, 0.18);
  background: rgba(255, 178, 74, 0.08);
}

.colecuts-track-a {
  top: 38px;
}

.colecuts-track-b {
  top: 56px;
}

.colecuts-cut {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 28px;
  height: 28px;
}

.colecuts-cut::before,
.colecuts-cut::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid #ffb24a;
  border-right: 3px solid #ffb24a;
  transform-origin: center;
}

.colecuts-cut::before {
  transform: rotate(35deg);
}

.colecuts-cut::after {
  transform: rotate(125deg);
}

.product-card h3 {
  margin: 0;
  flex-shrink: 0;
  min-height: 64px;
  padding-top: 2px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.98rem;
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a6dbff;
}

.product-card.blue .card-art img,
.product-card.cyan .card-art img {
  height: 92%;
}

.product-card.blue .card-art-circle img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.product-card h3 small {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
}

.product-card.magenta h3,
.product-card.purple h3 {
  color: #e18fff;
}

.product-card.red h3,
.product-card.doom h3 {
  color: #ff7b93;
}

.product-card.amber h3 {
  color: #ffc977;
}

.product-card.green h3 {
  color: #3cefc6;
  font-size: 0.82rem;
  letter-spacing: 0.045em;
  line-height: 1.02;
  word-break: normal;
}

.product-card.green h3 span {
  display: block;
}

.chip {
  align-self: flex-start;
  margin-top: 8px;
  padding: 4px 10px;
  border: 1px solid currentColor;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
}

.cyan .chip { color: var(--cyan); }
.blue .chip { color: #7db8ff; }
.magenta .chip { color: #ff6df2; }
.purple .chip { color: #b58aff; }
.red .chip,
.doom .chip { color: #ff7f8f; }
.green .chip { color: #59f2cf; }

.product-card p {
  margin: 12px 0 0;
  color: #afc1d8;
  font-size: 0.92rem;
  line-height: 1.32;
  flex: 1;
}

.card-actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.card-action,
.card-download,
.product-card a,
.wide-link,
.download-link {
  align-self: stretch;
  text-align: center;
}

.card-action,
.card-download {
  text-decoration: none;
  color: #effbff;
  border: 1px solid rgba(83, 201, 255, 0.32);
  background: linear-gradient(180deg, rgba(18, 86, 165, 0.65), rgba(10, 27, 60, 0.95));
  padding: 9px 12px;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.card-download {
  background: linear-gradient(180deg, rgba(22, 50, 90, 0.72), rgba(8, 20, 42, 0.95));
}

.nexus-order,
.nexus-demo {
  border-color: rgba(84, 225, 255, 0.38);
}

.product-details {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(95, 163, 255, 0.16);
}

.product-details p {
  margin: 0 0 10px;
}

.product-details ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #b6c8de;
}

.product-details li + li {
  margin-top: 6px;
}

.product-card.expanded {
  box-shadow: 0 0 28px rgba(44, 121, 255, 0.18), inset 0 0 16px rgba(73, 123, 255, 0.08);
}

.product-card.expanded .product-details {
  display: block;
}

.release-feature {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(260px, 0.7fr);
  gap: 14px;
  align-items: center;
}

.release-art {
  padding: 10px;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.release-art img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: transparent;
}

.release-slide,
.release-copy-slide {
  opacity: 0;
  transition: opacity 500ms ease;
}

.release-slide {
  position: absolute;
  inset: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.release-slide.active,
.release-copy-slide.active {
  opacity: 1;
}

.release-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(6, 9, 18, 0.38);
}

.release-slide-ice img,
.ice-banner {
  background: transparent;
}

.release-copy p {
  color: #b2c3d8;
  line-height: 1.4;
}

.release-copy {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.release-copy-slide {
  position: absolute;
  inset: 0 0 44px 0;
}

.release-controls {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.release-control {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(93, 188, 255, 0.36);
  background: rgba(9, 19, 40, 0.9);
  cursor: pointer;
}

.release-control.active {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(63, 230, 255, 0.32);
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(0, 0.76fr) minmax(0, 0.98fr);
  gap: 10px;
}

.studio-stack {
  display: grid;
  gap: 10px;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.release-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.release-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(93, 158, 255, 0.18);
  background: linear-gradient(180deg, rgba(35, 22, 15, 0.72), rgba(12, 9, 10, 0.94));
}

.release-card.sand {
  background:
    linear-gradient(180deg, rgba(88, 60, 32, 0.16), rgba(14, 10, 10, 0.86)),
    linear-gradient(180deg, #4a3626, #130f12);
}

.release-card.gend {
  background:
    linear-gradient(180deg, rgba(75, 82, 96, 0.14), rgba(14, 15, 18, 0.88)),
    linear-gradient(180deg, #262c33, #111316);
}

.release-title,
.release-badge,
.release-mark,
.release-footer,
.release-bottom-copy,
.release-link {
  position: relative;
  z-index: 1;
}

.release-title,
.release-badge,
.release-footer,
.release-bottom-copy {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}

.release-title {
  padding: 18px 16px 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #e1d9c7;
}

.release-badge {
  display: inline-block;
  margin: 10px 0 0 16px;
  padding: 4px 8px;
  color: #eed28e;
  border: 1px solid rgba(238, 210, 142, 0.38);
  font-size: 0.7rem;
}

.release-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 6rem;
  font-family: "Orbitron", sans-serif;
}

.release-footer {
  position: absolute;
  left: 16px;
  bottom: 54px;
  color: #ddd2bc;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.doom-release {
  display: grid;
  grid-template-rows: 1fr auto;
  background: linear-gradient(180deg, rgba(57, 9, 9, 0.54), rgba(16, 5, 6, 0.96));
}

.doom-release img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.release-bottom-copy {
  padding: 8px 10px 42px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #f0d8de;
}

.release-actions {
  display: grid;
  gap: 8px;
}

.release-actions-double {
  gap: 8px;
}

.release-link {
  display: block;
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  color: #effbff;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  border: 1px solid rgba(83, 201, 255, 0.32);
  background: linear-gradient(180deg, rgba(18, 86, 165, 0.65), rgba(10, 27, 60, 0.95));
}

.release-link:hover {
  filter: brightness(1.12);
  border-color: rgba(83, 201, 255, 0.52);
}

.release-toggle {
  cursor: pointer;
}

.release-link-secondary {
  background: linear-gradient(180deg, rgba(24, 50, 92, 0.76), rgba(9, 22, 44, 0.96));
}

.release-details {
  display: none;
  padding: 12px;
  border: 1px solid rgba(94, 170, 255, 0.16);
  background: rgba(7, 12, 24, 0.82);
  color: #b7c9dd;
  line-height: 1.36;
}

.release-details.open {
  display: block;
}

.release-details-wide {
  grid-column: 1 / -1;
  padding: 16px;
}

.release-details-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: start;
}

.release-info-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.release-info-stack p {
  margin: 0;
  overflow-wrap: anywhere;
}

.release-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  align-items: start;
}

.release-preview {
  margin: 0;
  overflow: hidden;
}

.release-preview-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.release-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.release-preview figcaption {
  padding: 10px 12px 12px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: #f0d8de;
}

.release-shot-grid {
  display: grid;
  gap: 10px;
}

.release-shot {
  margin: 0;
  overflow: hidden;
  padding: 12px 10px;
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-align: left;
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.98), rgba(5, 9, 19, 0.98));
  min-height: 0;
}

.release-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.release-shot span {
  display: block;
  padding: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  color: #f0d8de;
}

.release-shot.active {
  border-color: rgba(83, 201, 255, 0.48);
  box-shadow: 0 0 18px rgba(83, 201, 255, 0.14), inset 0 0 0 1px rgba(83, 201, 255, 0.14);
}

.image-modal {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 16px;
}

.image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.image-modal-figure {
  margin: 0;
}

.image-modal-figure img {
  display: block;
  width: 100%;
  max-height: min(76vh, 920px);
  object-fit: contain;
  background: rgba(2, 6, 14, 0.94);
}

.image-modal-figure figcaption {
  margin-top: 10px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #d3dfed;
}

.release-downloads {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.release-note {
  margin: 0;
  overflow-wrap: anywhere;
}

.dev-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.dev-list li {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(67, 155, 255, 0.15);
  background: linear-gradient(180deg, rgba(6, 14, 28, 0.9), rgba(4, 8, 18, 0.98));
}

.dev-list strong {
  font-family: "Orbitron", sans-serif;
  color: #49cfff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dev-list span {
  color: #a9bdd4;
  font-size: 0.92rem;
}

.dev-list em {
  text-align: right;
  color: #3cecb9;
  font-style: normal;
  font-size: 0.84rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: center;
}

.doom-levels {
  padding: 12px;
}

.doom-levels p {
  color: #b5c6dd;
  line-height: 1.36;
}

.chrome-divider {
  height: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(156, 180, 210, 0.34);
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.88), rgba(138, 154, 184, 0.48) 45%, rgba(22, 30, 50, 0.6));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.support {
  padding: 12px;
}

.music {
  padding: 12px;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 14px;
}

.music-copy,
.music-card {
  padding: 18px;
}

.music-copy {
  background:
    linear-gradient(180deg, rgba(13, 18, 36, 0.98), rgba(6, 10, 20, 0.99)),
    radial-gradient(circle at top right, rgba(255, 86, 225, 0.1), transparent 38%);
}

.music-card {
  display: grid;
  gap: 12px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(8, 14, 31, 0.98), rgba(4, 8, 18, 0.99)),
    radial-gradient(circle at top center, rgba(63, 230, 255, 0.1), transparent 42%);
}

.music-art {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 4px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(114, 196, 255, 0.22);
  box-shadow: 0 0 22px rgba(83, 201, 255, 0.12);
}

.music-copy h3,
.music-card h3 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #eef8ff;
}

.music-copy p,
.music-card p {
  margin: 0 0 12px;
  color: #b8cadf;
  line-height: 1.38;
}

.music-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 14px;
}

.music-meta span,
.music-badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(255, 111, 231, 0.34);
  color: #ff86ef;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  background: rgba(255, 92, 221, 0.08);
}

.music-badge {
  border-color: rgba(83, 201, 255, 0.34);
  color: #6ce3ff;
  background: rgba(63, 230, 255, 0.08);
}

.music-actions {
  margin-top: 4px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: center;
}

.support-copy h3 {
  margin: 0 0 12px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-copy p {
  color: #b5c6dd;
  line-height: 1.36;
}

.support-qr {
  padding: 16px;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.support-qr img {
  width: 220px;
  height: 220px;
  background: #fff;
  padding: 10px;
}

.support-qr span {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  font-size: 0.72rem;
}

.about-copy p {
  margin: 0 0 10px;
  color: #b5c6dd;
  line-height: 1.34;
}

.manifesto {
  margin-top: 18px;
  color: #ff61dd;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto span {
  display: block;
}

.about-badge {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
}

.about-badge img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.approval-seal {
  max-width: 156px;
  margin-top: 4px;
  filter: drop-shadow(0 0 14px rgba(97, 212, 255, 0.14));
}

.approval-signoff {
  display: grid;
  gap: 2px;
}

.approval-signoff strong {
  font-family: "Orbitron", sans-serif;
  color: #64d4ff;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.approval-signoff span {
  color: #839ab6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.modal-shell {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-shell.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.76);
  backdrop-filter: blur(6px);
}

.order-modal {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 18px;
}

.order-copy {
  color: #b8c9dc;
  line-height: 1.36;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-form label {
  display: grid;
  gap: 6px;
}

.order-form label span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(91, 168, 255, 0.22);
  background: rgba(8, 14, 27, 0.92);
  color: #eef7ff;
  padding: 10px 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
}

.order-form textarea,
.order-form label:nth-of-type(5),
.order-form label:nth-of-type(6),
.order-actions {
  grid-column: 1 / -1;
}

.order-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.meta-sections {
  display: none;
}

.demo-page {
  width: min(1320px, calc(100% - 20px));
  margin: 10px auto;
  display: grid;
  gap: 12px;
}

.demo-hero,
.demo-section {
  padding: 14px;
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.demo-copy {
  padding: 22px;
}

.demo-copy h1 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.02;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: #eef7ff;
}

.demo-copy p {
  margin: 0 0 14px;
  max-width: 62ch;
  color: #c0d0e2;
  line-height: 1.42;
  font-size: 1rem;
}

.demo-art {
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.demo-art img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(63, 230, 255, 0.16));
}

.demo-video {
  padding: 14px;
  width: min(100%, 720px);
  margin: 0 auto;
}

.demo-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(3, 7, 16, 0.98), rgba(0, 0, 0, 0.98));
  overflow: hidden;
}

.demo-video-shell iframe,
.demo-video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.demo-list {
  margin: 0;
  padding-left: 20px;
  color: #b5c6dd;
  line-height: 1.42;
}

.demo-list li + li {
  margin-top: 8px;
}

.demo-outro {
  color: #b5c6dd;
  line-height: 1.4;
}

.inline-link {
  color: var(--cyan);
  text-decoration: none;
}

.demo-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-intro {
  padding: 18px;
  margin-bottom: 14px;
}

.pricing-intro h3 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.08;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #eef7ff;
}

.pricing-intro p:last-child {
  margin: 0;
  color: #b8cadf;
  line-height: 1.42;
}

.pricing-compare {
  padding: 12px 0 0;
  margin-bottom: 12px;
  overflow: hidden;
}

.pricing-compare-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.6fr 0.7fr;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid rgba(95, 171, 255, 0.12);
  color: #c2d4e8;
  line-height: 1.38;
}

.pricing-compare-grid > div:first-child {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #eef8ff;
}

.pricing-compare-head {
  background: rgba(8, 14, 28, 0.72);
}

.pricing-compare-head > div {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  color: var(--cyan);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.pricing-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.offer-card {
  padding: 16px;
  display: grid;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(10, 18, 35, 0.98), rgba(5, 9, 18, 0.99)),
    radial-gradient(circle at top right, rgba(63, 230, 255, 0.1), transparent 40%);
}

.offer-card h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: #eff8ff;
}

.offer-card p:last-of-type {
  margin: 0;
  color: #c0d0e4;
  line-height: 1.4;
}

.pricing-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(10, 18, 35, 0.98), rgba(5, 9, 18, 0.99)),
    radial-gradient(circle at top right, rgba(63, 230, 255, 0.08), transparent 42%);
}

.pricing-card-cyan {
  border-color: rgba(76, 225, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(2, 66, 76, 0.98), rgba(2, 28, 36, 0.99)),
    radial-gradient(circle at top right, rgba(88, 245, 255, 0.2), transparent 42%);
}

.pricing-card-blue {
  border-color: rgba(90, 174, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(24, 108, 255, 0.99), rgba(8, 34, 108, 1)),
    radial-gradient(circle at top right, rgba(162, 220, 255, 0.28), transparent 40%);
}

.pricing-card-magenta {
  border-color: rgba(255, 102, 214, 0.26);
  background:
    linear-gradient(180deg, rgba(111, 18, 28, 0.99), rgba(49, 8, 14, 1)),
    radial-gradient(circle at top right, rgba(255, 124, 138, 0.16), transparent 42%);
}

.pricing-card-amber {
  border-color: rgba(255, 188, 84, 0.28);
  background:
    linear-gradient(180deg, rgba(5, 86, 34, 0.99), rgba(3, 36, 14, 1)),
    radial-gradient(circle at top right, rgba(92, 255, 142, 0.2), transparent 42%);
}

.pricing-card-featured {
  border-color: rgba(124, 214, 255, 0.68);
  box-shadow: 0 0 38px rgba(72, 164, 255, 0.28), inset 0 0 22px rgba(132, 214, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(28, 118, 255, 1), rgba(9, 42, 136, 1)),
    radial-gradient(circle at top center, rgba(180, 229, 255, 0.28), transparent 48%);
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #eef8ff;
  background: rgba(11, 20, 39, 0.88);
}

.pricing-card-cyan .pricing-icon,
.pricing-card-cyan .pricing-kicker,
.pricing-card-cyan .pricing-chip {
  color: #68ecff;
}

.pricing-card-blue .pricing-icon,
.pricing-card-blue .pricing-kicker,
.pricing-card-blue .pricing-chip {
  color: #d9f3ff;
}

.pricing-card-blue .pricing-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(235, 248, 255, 0.3);
  box-shadow: 0 0 16px rgba(182, 228, 255, 0.16);
}

.pricing-card-blue .pricing-chip,
.pricing-card-blue .pricing-chip-featured {
  background: rgba(235, 248, 255, 0.12);
}

.pricing-card-magenta .pricing-icon,
.pricing-card-magenta .pricing-kicker,
.pricing-card-magenta .pricing-chip {
  color: #ff88e7;
}

.pricing-card-amber .pricing-icon,
.pricing-card-amber .pricing-kicker,
.pricing-card-amber .pricing-chip {
  color: #ffc977;
}

.pricing-kicker {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
}

.pricing-chip {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid currentColor;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
}

.pricing-chip-featured {
  background: rgba(90, 174, 255, 0.12);
}

.pricing-card h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  color: #eef8ff;
}

.pricing-blurb {
  margin: 0;
  color: #c0d0e4;
  line-height: 1.4;
  font-size: 0.98rem;
}

.pricing-amount {
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.24rem;
  line-height: 1.05;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 18px rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
}

.pricing-value {
  margin: -2px 0 0;
  color: #fff1a8;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  line-height: 1.34;
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  color: #b7c8dc;
  line-height: 1.42;
}

.pricing-list li + li {
  margin-top: 6px;
}

.pricing-detail-block {
  display: grid;
  gap: 8px;
}

.pricing-detail-label {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  color: #fff0a4;
}

.pricing-inline-copy {
  margin: 0;
  color: #d8e6f4;
  line-height: 1.42;
}

.pricing-panel {
  display: none;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(86, 172, 255, 0.12);
}

.pricing-panel.open {
  display: grid;
}

.pricing-panel label {
  display: grid;
  gap: 6px;
}

.pricing-panel span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
}

.pricing-panel input,
.pricing-panel textarea {
  width: 100%;
  border: 1px solid rgba(91, 168, 255, 0.22);
  background: rgba(8, 14, 27, 0.92);
  color: #eef7ff;
  padding: 10px 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
}

.demo-console {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(74, 205, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(9, 16, 31, 0.98), rgba(4, 8, 18, 0.99));
}

.demo-console-sidebar {
  display: grid;
  gap: 16px;
}

.demo-console-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.demo-console-brand strong,
.demo-surface h3,
.demo-window-title {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-console-brand span,
.demo-console-copy,
.demo-console-notes {
  color: #a9c0d8;
}

.demo-console-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(98, 193, 255, 0.3);
  background: linear-gradient(180deg, rgba(26, 89, 142, 0.9), rgba(5, 18, 39, 0.96));
  color: #f0f8ff;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.12em;
}

.demo-console-buttons {
  display: grid;
  gap: 8px;
}

.demo-tab {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid rgba(91, 168, 255, 0.18);
  background: rgba(7, 13, 24, 0.86);
  color: #d9ecff;
  font: inherit;
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease, background-color 140ms ease;
}

.demo-tab:hover,
.demo-tab.active {
  border-color: rgba(97, 220, 255, 0.46);
  background: linear-gradient(180deg, rgba(20, 62, 96, 0.94), rgba(8, 19, 37, 0.98));
  transform: translateY(-1px);
}

.demo-console-notes {
  margin: 0;
  padding-left: 18px;
  line-height: 1.42;
}

.demo-window {
  min-height: 100%;
  border: 1px solid rgba(93, 168, 255, 0.18);
  background: linear-gradient(180deg, rgba(6, 11, 23, 0.96), rgba(3, 7, 15, 0.99));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 24px rgba(36, 124, 214, 0.12);
}

.demo-window-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(98, 168, 255, 0.14);
  background: rgba(8, 13, 25, 0.9);
}

.demo-window-lights {
  display: flex;
  gap: 6px;
}

.demo-window-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(177, 208, 237, 0.3);
}

.demo-window-title {
  color: #eff8ff;
  font-size: 0.82rem;
}

.demo-screen {
  display: none;
  padding: 18px;
}

.demo-screen.active {
  display: block;
}

.demo-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.demo-metric-card,
.demo-surface {
  padding: 16px;
  border: 1px solid rgba(91, 168, 255, 0.14);
  background: linear-gradient(180deg, rgba(11, 20, 37, 0.95), rgba(7, 12, 23, 0.98));
}

.demo-metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
}

.demo-metric-card strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.demo-metric-card small,
.demo-panel-copy {
  color: #b5c8dd;
  line-height: 1.42;
}

.demo-surface-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.demo-surface-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-surface h3 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: #eef8ff;
}

.demo-surface-list {
  margin: 0;
  padding-left: 18px;
  color: #bfd2e6;
  line-height: 1.44;
}

.demo-surface-list li + li {
  margin-top: 8px;
}

.demo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-chip-row span {
  padding: 7px 10px;
  border: 1px solid rgba(101, 188, 255, 0.18);
  background: rgba(6, 18, 34, 0.88);
  color: #dcefff;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
}

.demo-mini-table {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr) 0.8fr;
  gap: 8px;
  color: #d6e6f6;
}

.demo-mini-table > div {
  padding: 8px 10px;
  border: 1px solid rgba(98, 168, 255, 0.1);
  background: rgba(4, 11, 21, 0.8);
}

.demo-mini-table > div:nth-child(-n + 5) {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
}

.demo-roster-list,
.demo-feed,
.demo-form-stack {
  display: grid;
  gap: 10px;
}

.demo-roster-list div,
.demo-feed div,
.demo-form-stack div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(97, 168, 255, 0.1);
  background: rgba(5, 11, 22, 0.82);
}

.demo-roster-list span,
.demo-feed span,
.demo-form-stack span {
  color: #b5cae0;
}

.demo-browser-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
}

.demo-browser-sidebar {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.demo-browser-sidebar h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #eef8ff;
}

.demo-browser-sidebar p {
  margin: 0;
  color: #b7c9de;
  line-height: 1.45;
}

.demo-access-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(97, 176, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.98), rgba(5, 9, 18, 0.99));
}

.demo-access-card strong {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #fff0a4;
}

.demo-access-line {
  display: grid;
  gap: 6px;
}

.demo-access-line span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.58rem;
}

.demo-access-line code {
  white-space: normal;
  word-break: break-word;
  padding: 8px 10px;
  background: rgba(5, 11, 22, 0.88);
  border: 1px solid rgba(97, 176, 255, 0.14);
  color: #eef8ff;
}

.demo-browser-shell {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.98), rgba(2, 5, 12, 0.99)),
    radial-gradient(circle at top left, rgba(74, 205, 255, 0.08), transparent 34%);
}

.demo-browser-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(94, 170, 255, 0.16);
  background: rgba(6, 11, 22, 0.96);
}

.demo-browser-url {
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(93, 173, 255, 0.18);
  background: rgba(2, 7, 15, 0.86);
  color: #dceeff;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.demo-browser-disclaimer {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(94, 170, 255, 0.12);
  background: rgba(17, 39, 72, 0.52);
  color: #b8d8f8;
  line-height: 1.42;
  font-size: 0.98rem;
}

.demo-browser-frame {
  display: block;
  width: 100%;
  min-height: 1120px;
  border: none;
  background: #dfe1e5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #8498b3;
  font-size: 0.86rem;
}

.footer strong {
  color: #29c9ff;
  letter-spacing: 0.22em;
  font-size: 0.96rem;
}

@media (max-width: 1420px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: 180px 180px 1fr 250px 240px;
    align-items: start;
  }

  .hero-grid,
  .release-feature,
  .lower-grid,
  .music-grid,
  .support-grid,
  .demo-hero-grid,
  .demo-cards,
  .demo-browser-layout,
  .demo-console,
  .demo-screen-grid,
  .demo-surface-grid,
  .demo-surface-grid-wide,
  .pricing-grid,
  .pricing-offers,
  .pricing-compare-grid {
    grid-template-columns: 1fr;
  }

  .release-gallery {
    grid-template-columns: 1fr;
  }

  .release-details-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .creation-snippets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(100%, calc(100% - 10px));
  }

  .access-input-row {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .hero-topbar,
  .footer,
  .about-grid,
  .order-form,
  .order-actions,
  .demo-browser-topbar,
  .demo-roster-list div,
  .demo-feed div,
  .demo-form-stack div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .product-grid,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .hire-button,
  .wide-link,
  .download-link {
    width: 100%;
    text-align: center;
  }

  .creation-snippets {
    grid-template-columns: 1fr;
  }

  .demo-cta-row {
    width: 100%;
    flex-direction: column;
  }
}
