:root {
  --bg: #09090c;
  --bg-soft: #0d0e12;
  --surface: #131419;
  --surface-2: #181920;
  --line: rgba(255, 255, 255, .085);
  --line-strong: rgba(255, 255, 255, .16);
  --text: #f3f3f6;
  --text-soft: #b7b8c1;
  --text-muted: #777985;
  --red: #f23d4e;
  --red-dark: #9d2332;
  --cyan: #45cceb;
  --green: #52c8a6;
  --max: 1180px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure, h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 0;
  left: -999px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--red);
}
.skip-link:focus { left: 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(9, 9, 12, .62);
  backdrop-filter: blur(16px) saturate(145%);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 9, 12, .92);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -.02em;
}
.brand img,
.footer-brand img {
  box-shadow: 0 0 22px rgba(69, 204, 235, .18);
}
.brand-plus { color: var(--red); }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-soft);
  font-size: 14px;
}
.main-nav a,
.footer-links a {
  transition: color .2s ease;
}
.main-nav a:hover,
.footer-links a:hover { color: #fff; }
.header-cta {
  padding: 9px 16px;
  border: 1px solid rgba(242,61,78,.42);
  background: rgba(242,61,78,.1);
  color: #ffdce0;
  font-size: 13px;
  font-weight: 650;
}
.nav-toggle {
  display: none;
  width: 34px;
  padding: 4px;
  border: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 146px 0 96px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .23;
  pointer-events: none;
}
.hero-glow--red {
  left: -330px;
  top: -170px;
  background: var(--red);
}
.hero-glow--cyan {
  right: -390px;
  top: 260px;
  background: var(--cyan);
  opacity: .11;
}
.hero-inner {
  position: relative;
  width: min(1420px, calc(100% - 64px));
}
.hero-copy {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d5d5db;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-size: 11px;
  font-weight: 720;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  display: inline-block;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.hero-copy .eyebrow {
  justify-content: center;
}
.hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(52px, 7.2vw, 102px);
  line-height: .95;
  letter-spacing: -.058em;
  font-weight: 720;
}
.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255,255,255,.72);
  text-shadow: 0 0 40px rgba(255,255,255,.08);
}
.hero-sub {
  margin-inline: auto;
  max-width: 68ch;
  color: var(--text-soft);
  font-size: 18px;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.button {
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 650;
  transition: transform .2s, border-color .2s, background .2s;
}
.button--primary {
  border-color: #ff5665;
  background: linear-gradient(180deg,#f94a5b,#c52739);
  box-shadow: 0 15px 36px -18px rgba(242,61,78,.85);
}
.button--quiet {
  background: rgba(255,255,255,.035);
  color: var(--text-soft);
}
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.35);
}
.hero-facts {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--text-muted);
  font-size: 12px;
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-facts span {
  width: 5px;
  height: 5px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.hero-visual {
  width: 100%;
  max-width: 1166px;
  margin-inline: auto;
}
.hero-visual figcaption,
.compact-stage figcaption {
  margin-top: 12px;
  color: var(--text-muted);
  text-align: right;
  font-size: 11px;
  letter-spacing: .025em;
}
.app-window {
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: 0 38px 90px -45px #000, 0 0 54px rgba(242,61,78,.08);
}
.app-window img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: #0c0d10;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid > div {
  padding: 27px 26px;
  border-left: 1px solid var(--line);
}
.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong {
  margin-bottom: 2px;
  display: block;
  font-size: 16px;
}
.proof-grid span {
  color: var(--text-muted);
  font-size: 12px;
}

.app-capture,
.features {
  padding: 126px 0 70px;
}
.section-head {
  max-width: 840px;
  margin-bottom: 62px;
}
.section-head h2,
.formats h2,
.faq h2,
.availability h2,
.compact-copy h2 {
  margin: 17px 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-head > p:last-child,
.formats-copy > p:last-child,
.faq-intro > p:last-child,
.compact-copy > p {
  max-width: 64ch;
  color: var(--text-soft);
}
.product-shot {
  width: 100%;
  max-width: 1166px;
  margin-inline: auto;
}
.product-shot figcaption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: #0d0e12;
}
.product-shot figcaption span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
}
.product-shot figcaption span:last-child { border-right: 0; }

.features {
  padding-top: 98px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.capability {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.038), rgba(255,255,255,.012));
}
.capability-number {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font: 700 12px Consolas, monospace;
  letter-spacing: .13em;
}
.capability h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.capability p {
  color: var(--text-soft);
  font-size: 14px;
}

.compact-feature {
  margin-top: 110px;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
  border-top: 1px solid var(--line);
}
.feature-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  color: #d5d5da;
  font-size: 13.5px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.compact-stage {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
}
.compact-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(105px);
  opacity: .14;
}
.app-window--compact {
  width: 360px;
  max-width: 100%;
  border: 0;
  background: transparent;
  z-index: 1;
  box-shadow: 0 42px 90px -35px #000, 0 0 42px rgba(242,61,78,.13);
}
.compact-stage figcaption {
  z-index: 1;
  justify-self: center;
}

.formats {
  padding: 112px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg,#0d0e12,#09090c);
}
.formats-inner {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 76px;
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.format-card {
  min-height: 166px;
  margin: -1px 0 0 -1px;
  padding: 27px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg,rgba(255,255,255,.035),transparent);
}
.format-card strong {
  margin-bottom: 18px;
  display: block;
  color: var(--red);
  font: 700 29px Consolas, monospace;
}
.format-card span {
  color: var(--text-soft);
  font-size: 13px;
}

.principles {
  padding: 100px 0;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.principle {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.principle-tag {
  margin-bottom: 36px;
  display: inline-block;
  color: var(--red);
  font: 700 11px Consolas, monospace;
  letter-spacing: .14em;
}
.principle h3 {
  margin-bottom: 11px;
  font-size: 20px;
}
.principle p {
  color: var(--text-soft);
  font-size: 14px;
}

.faq {
  padding: 100px 0 130px;
}
.faq-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 17px;
  color: var(--red);
  font-size: 25px;
  font-weight: 300;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 52px 22px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.availability {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background: #0b0b0e;
  text-align: center;
}
.availability-glow {
  position: absolute;
  width: 600px;
  height: 350px;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse,rgba(242,61,78,.24),transparent 70%);
  filter: blur(35px);
}
.availability-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.availability img {
  margin-bottom: 24px;
  filter: drop-shadow(0 0 22px rgba(69,204,235,.3));
}
.availability h2 { max-width: 780px; }
.availability p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: 17px;
}
.release-pill {
  margin: 28px 0 18px;
  padding: 12px 17px;
  border: 1px solid rgba(242,61,78,.4);
  background: rgba(242,61,78,.08);
  color: #ffd9dd;
  font-size: 13px;
}
.release-pill span {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  display: inline-block;
  background: var(--red);
  box-shadow: 0 0 9px var(--red);
}
.availability small { color: var(--text-muted); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #08080a;
}
.footer-main {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand strong,
.footer-brand span { display: block; }
.footer-brand span {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 25px;
  color: var(--text-soft);
  font-size: 13px;
}
.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 11px;
}

@media (max-width: 1000px) {
  .hero-inner { width: min(var(--max), calc(100% - 48px)); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { border-bottom: 1px solid var(--line); }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: auto; }
  .capability-number { margin-bottom: 28px; }
  .compact-feature,
  .formats-inner,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .compact-feature { margin-top: 80px; }
}

@media (max-width: 760px) {
  .wrap,
  .hero-inner {
    width: min(var(--max), calc(100% - 32px));
  }
  .header-inner { min-height: 62px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 9px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(9,9,12,.98);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .header-cta { display: none; }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 112px 0 70px; }
  .hero-copy { margin-bottom: 40px; }
  .hero h1 { font-size: clamp(46px,14vw,68px); }
  .hero-sub { font-size: 16px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-right: 1px solid var(--line); }
  .app-capture,
  .features { padding-top: 86px; }
  .section-head { margin-bottom: 46px; }
  .product-shot figcaption { grid-template-columns: 1fr; }
  .product-shot figcaption span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-shot figcaption span:last-child { border-bottom: 0; }
  .compact-feature { padding-top: 64px; }
  .format-grid,
  .principle-grid { grid-template-columns: 1fr; }
  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 26px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button { width: 100%; }
  .hero-facts { gap: 10px 14px; }
  .compact-stage {
    min-height: 350px;
  }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
