:root {
  color-scheme: dark;
  --ink: #070b10;
  --ink-soft: #0b1119;
  --surface: rgba(14, 23, 36, .72);
  --surface-strong: rgba(18, 29, 45, .92);
  --line: rgba(174, 205, 233, .18);
  --line-strong: rgba(174, 205, 233, .32);
  --text: #f6f8fb;
  --muted: #a9b7c6;
  --cyan: #59e0ca;
  --blue: #5b93ee;
  --coral: #ff806e;
  --gold: #f3c969;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(circle, rgba(154, 186, 216, .12) 1px, transparent 1px);
  background-size: 5px 5px;
  color: var(--text);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 16, .88);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 12px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(24px) saturate(125%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
}
.wordmark img { width: 38px; height: 38px; object-fit: contain; }
.wordmark small {
  padding: 4px 7px;
  border: 1px solid rgba(130, 165, 197, .55);
  border-radius: 5px;
  color: #dce7f2;
  font-size: 9px;
}
.header-nav, footer nav { display: flex; align-items: center; gap: 8px; }
.header-nav a {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 20px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.header-nav a:first-child, .header-nav a:hover {
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
  color: var(--text);
}
.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 21px;
  background: rgba(17, 28, 43, .72);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), 0 8px 24px rgba(0, 0, 0, .2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.header-action span { color: var(--gold); font-size: 19px; }

.hero {
  position: relative;
  height: calc(100svh - 112px);
  min-height: 520px;
  max-height: 780px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0a1017;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(.94) contrast(1.04);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 13, .52);
  box-shadow: inset 0 -170px 150px rgba(5, 9, 14, .62), inset 520px 0 260px rgba(5, 9, 14, .68);
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(87, 229, 208, .5);
  content: "";
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1380px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding: 92px 0 56px;
  flex-direction: column;
  justify-content: flex-end;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 78px;
  line-height: .98;
  letter-spacing: 0;
}
.hero h1 span { color: #dbe6f1; font-weight: 500; }
.hero-lede {
  max-width: 660px;
  margin: 25px 0 0;
  color: #dce5ed;
  font-size: 22px;
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 29px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}
.button.primary {
  border-color: #73a7f2;
  background: var(--blue);
  box-shadow: inset 0 1px rgba(255, 255, 255, .28), 0 12px 30px rgba(48, 102, 197, .27);
  color: #07111c;
}
.button.secondary {
  border-color: var(--line-strong);
  background: rgba(9, 15, 23, .72);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
  color: var(--text);
  backdrop-filter: blur(14px);
}
.button.disabled { pointer-events: none; background: #27323e; color: #83909e; }
.hero-modes {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 32px;
  padding: 4px;
  border: 1px solid rgba(183, 213, 239, .24);
  border-radius: 25px;
  background: rgba(8, 14, 22, .64);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}
.hero-modes span {
  min-height: 34px;
  padding: 0 15px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  color: #b8c5d2;
  font-size: 12px;
  font-weight: 750;
}
.hero-modes .active { background: rgba(91, 147, 238, .28); color: #fff; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  color: #a9b7c5;
  font-size: 12px;
}
.hero-note span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 20, .94);
}
.signal-band div { min-height: 148px; padding: 28px 30px; border-right: 1px solid var(--line); }
.signal-band div:last-child { border-right: 0; }
.signal-band span, .price-card > span { display: block; margin-bottom: 10px; color: var(--cyan); font-size: 10px; font-weight: 900; }
.signal-band div:nth-child(2) span { color: var(--coral); }
.signal-band div:nth-child(3) span { color: var(--gold); }
.signal-band div:nth-child(4) span { color: #8fb1ff; }
.signal-band strong { display: block; font-size: 16px; line-height: 1.35; }
.signal-band p { margin: 8px 0 0; color: #93a4b5; font-size: 13px; line-height: 1.5; }

.product-band {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(560px, 1.28fr);
  gap: 66px;
  align-items: center;
  padding: 104px max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background-color: rgba(7, 12, 18, .95);
}
.studio-band { min-height: 760px; }
.voice-band, .create-band {
  grid-template-columns: minmax(560px, 1.28fr) minmax(290px, .72fr);
  background-color: rgba(11, 18, 27, .96);
}
.create-band { background-color: rgba(8, 14, 21, .96); }
.section-copy h2, .section-heading h2, .clone-copy h2, .download-band h2 {
  margin: 0;
  font-size: 47px;
  line-height: 1.08;
  letter-spacing: 0;
}
.section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow), .clone-copy > p:not(.eyebrow), .download-band > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.product-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 212, 238, .24);
  border-radius: 24px;
  background: rgba(14, 23, 36, .58);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), inset 0 -12px 30px rgba(0, 0, 0, .18), 0 28px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(22px) saturate(120%);
}
.product-visual:not(.composite-visual)::before {
  display: block;
  height: 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  content: "";
}
.product-visual:not(.composite-visual)::after {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 13px 0 rgba(255, 128, 110, .85), 26px 0 rgba(243, 201, 105, .85);
  content: "";
}
.product-visual > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.product-visual figcaption {
  min-height: 48px;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #8fa1b2;
  font-size: 11px;
}
.product-visual figcaption strong { color: #d7e1ea; font-size: 11px; }
.studio-composite { position: relative; aspect-ratio: 1900 / 1030; overflow: hidden; background: #07101a; }
.studio-shell { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: contain; }
.studio-stage-demo {
  position: absolute;
  z-index: 1;
  top: 16.5%;
  left: 29.6%;
  width: 62.3%;
  height: 64.6%;
  border-radius: 2.3%;
  object-fit: cover;
  object-position: center;
}
.studio-live-indicator {
  position: absolute;
  z-index: 2;
  top: 18.2%;
  left: 31.1%;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(89, 224, 202, .75);
  border-radius: 12px;
  background: rgba(7, 20, 24, .78);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dffbf5;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.studio-live-indicator i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.fact-list { margin: 32px 0 0; }
.fact-list div { display: grid; grid-template-columns: 90px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.fact-list dt { color: var(--cyan); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.fact-list dd { margin: 0; color: #bfccd8; font-size: 14px; line-height: 1.55; }

.clone-band {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  gap: 66px;
  align-items: center;
  padding: 96px max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background-color: rgba(12, 15, 22, .97);
}
.clone-band img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 26px 60px rgba(0, 0, 0, .28);
}

.pricing-band, .safety-band {
  padding: 104px max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background-color: rgba(7, 12, 18, .96);
}
.section-heading { max-width: 780px; margin-bottom: 42px; }
.pricing-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: -15px 0 28px; }
.pricing-controls > p { margin: 0; color: var(--muted); font-size: 12px; }
.pricing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 286px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(11, 18, 27, .9);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}
.pricing-toggle button {
  min-height: 39px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}
.pricing-toggle button.active { background: rgba(91, 147, 238, .22); box-shadow: inset 0 0 0 1px rgba(113, 164, 240, .58); color: var(--text); }
.pricing-toggle button span { margin-left: 5px; color: var(--cyan); font-size: 9px; }
.pricing-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.price-card {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 24, 37, .78);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}
.price-card.featured { border-color: rgba(91, 147, 238, .78); background: rgba(18, 32, 51, .88); box-shadow: inset 0 2px var(--blue), 0 20px 40px rgba(15, 47, 98, .18); }
.price-card.create-price { border-color: rgba(243, 201, 105, .5); }
.price-card strong { display: block; margin: 24px 0; font-size: 34px; }
.price-card strong small { color: var(--muted); font-size: 12px; }
.price-card .plan-price-value { display: inline; margin: 0; color: var(--text); font-size: inherit; }
.price-card .plan-charge { min-height: 0; margin: -14px 0 22px; color: var(--gold); font-size: 11px; font-weight: 850; }
.price-card p { min-height: 102px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.price-card a { display: inline-flex; min-height: 38px; align-items: center; margin-top: 16px; color: var(--cyan); text-decoration: none; font-size: 12px; font-weight: 850; }

.safety-band { background-color: rgba(12, 19, 28, .97); }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.safety-grid div { min-height: 190px; padding: 27px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.safety-grid div:first-child { border-left: 1px solid var(--line); }
.safety-grid strong { font-size: 17px; }
.safety-grid p { color: var(--muted); font-size: 13px; line-height: 1.62; }

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  padding: 96px max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 14, 21, .98);
}
.download-copy { max-width: 850px; }
.beta-notice, .release-highlights {
  margin: 24px 0;
  padding: 19px;
  border: 1px solid rgba(243, 201, 105, .42);
  border-radius: 8px;
  background: rgba(34, 27, 14, .54);
}
.beta-notice strong { color: var(--gold); font-size: 13px; }
.beta-notice p { margin: 8px 0 0; color: #cbd4de; line-height: 1.55; }
.release-highlights { border-color: rgba(89, 224, 202, .3); background: rgba(10, 28, 29, .44); }
.release-highlights strong { color: var(--cyan); font-size: 13px; }
.release-highlights ul { margin: 10px 0 0; padding-left: 20px; color: #cbd4de; line-height: 1.65; }
.release-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 28px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.release-facts div { min-width: 0; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.release-facts dt { margin-bottom: 7px; color: var(--cyan); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.release-facts dd { margin: 0; color: #c5d0db; font-size: 12px; line-height: 1.45; }
.checksum { max-width: 760px; overflow-wrap: anywhere; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px !important; }
.release-size { color: var(--muted); font-size: 12px !important; }
.access-link { display: inline-block; margin-top: 14px; color: var(--cyan); font-size: 13px; font-weight: 800; }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 40px;
  align-items: center;
  padding: 46px max(32px, calc((100vw - 1320px) / 2));
  background: rgba(6, 10, 15, .98);
  color: var(--muted);
}
.footer-mark { color: var(--text); }
footer p { margin: 0; }
footer nav { gap: 24px; }
footer nav a { color: var(--muted); text-decoration: none; font-size: 13px; }
footer nav a:hover { color: var(--text); }
footer small { grid-column: 1 / -1; }

.legal-header { grid-template-columns: 1fr auto; }
.legal-main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 96px; }
.legal-main h1 { margin: 0; font-size: 58px; letter-spacing: 0; }
.legal-main h2 { margin: 44px 0 12px; font-size: 23px; letter-spacing: 0; }
.legal-main p { color: #c2ced9; font-size: 16px; line-height: 1.75; }
.legal-main a { color: var(--cyan); }
.legal-date { color: #7f91a3 !important; font-size: 13px !important; }
.legal-footer { grid-template-columns: 1fr auto; border-top: 1px solid var(--line); }
.legal-footer small { grid-column: auto; }

@media (max-width: 1120px) {
  .product-band, .voice-band, .create-band, .clone-band { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .product-visual { order: 2; }
  .voice-band .product-visual, .create-band .product-visual { order: 2; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card p { min-height: 72px; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; padding: 0 18px; }
  .site-header .header-nav { display: none; }
  .hero { height: calc(100svh - 106px); min-height: 600px; max-height: 730px; }
  .hero-copy { width: calc(100% - 36px); padding: 76px 0 38px; }
  .hero h1 { font-size: 58px; }
  .hero-lede { max-width: 560px; font-size: 19px; }
  .hero-shade { background: rgba(4, 8, 13, .62); box-shadow: inset 0 -180px 160px rgba(5, 9, 14, .72); }
  .signal-band { grid-template-columns: repeat(2, 1fr); }
  .signal-band div { border-bottom: 1px solid var(--line); }
  .signal-band div:nth-child(2) { border-right: 0; }
  .product-band, .voice-band, .create-band, .clone-band { padding: 72px 20px; }
  .studio-band { min-height: 0; }
  .section-copy h2, .section-heading h2, .clone-copy h2, .download-band h2 { font-size: 38px; }
  .product-visual, .clone-band img { border-radius: 16px; }
  .pricing-band, .safety-band { padding: 72px 20px; }
  .pricing-controls { align-items: flex-start; flex-direction: column; }
  .pricing-toggle { width: min(100%, 320px); }
  .download-band { grid-template-columns: 1fr; align-items: flex-start; padding: 72px 20px; }
  .release-facts { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 40px 20px; }
  footer nav { flex-wrap: wrap; gap: 18px; }
  footer small { grid-column: auto; }
}

@media (max-width: 560px) {
  .wordmark { font-size: 20px; }
  .wordmark img { width: 32px; height: 32px; }
  .site-header .header-action { min-height: 38px; padding: 0 13px; font-size: 11px; }
  .hero { min-height: 620px; }
  .hero-media { object-position: 58% center; }
  .hero-copy { padding-bottom: 30px; }
  .hero h1 { max-width: 340px; font-size: 48px; }
  .hero-lede { max-width: 340px; font-size: 17px; line-height: 1.55; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-modes { width: 100%; overflow: hidden; }
  .hero-modes span { min-width: 0; padding: 0 10px; flex: 1 1 auto; justify-content: center; font-size: 10px; }
  .hero-note { max-width: 340px; line-height: 1.45; }
  .signal-band { grid-template-columns: 1fr; }
  .signal-band div { min-height: 0; border-right: 0; }
  .section-copy h2, .section-heading h2, .clone-copy h2, .download-band h2 { font-size: 33px; }
  .fact-list div { grid-template-columns: 1fr; gap: 5px; }
  .product-visual figcaption { align-items: flex-start; padding: 11px 13px; flex-direction: column; gap: 4px; }
  .studio-live-indicator { display: none; }
  .pricing-grid, .safety-grid { grid-template-columns: 1fr; }
  .price-card p { min-height: 0; }
  .safety-grid div { min-height: 0; border-left: 1px solid var(--line); }
  .legal-main h1 { font-size: 44px; }
}
