*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #111216;
  --night: #08090d;
  --paper: #fbf8f1;
  --paper-2: #f2ede1;
  --white: #ffffff;
  --text: #f8f4ec;
  --muted: #9c9a9f;
  --muted-dark: #5f6068;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 18, 22, 0.14);
  --felt: #a36bff;
  --felt-2: #6bd9ff;
  --blue: #70a7ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --max: 1180px;
  --nav-h: 76px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -8%, rgba(163, 107, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 92% 12%, rgba(37, 213, 233, 0.16), transparent 34rem),
    linear-gradient(180deg, #07080d 0%, #121219 52%, #08090d 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body.legal-page { background: var(--paper); color: var(--ink); }

h1, h2, h3, .brand {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

a { color: inherit; text-underline-offset: 0.2em; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0.75rem;
  z-index: 200;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.16s ease;
}

.skip-link:focus { transform: translateY(0); }
.page { overflow: clip; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-page .site-nav {
  border-bottom-color: var(--line-dark);
  background: rgba(251, 248, 241, 0.86);
}

.nav-inner, .site-nav .container {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font-size: 1.08rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(118, 76, 255, 0.42));
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-brand-lockup .brand-mark {
  width: clamp(3rem, 6vw, 4.3rem);
  height: clamp(3rem, 6vw, 4.3rem);
  filter: drop-shadow(0 0 24px rgba(118, 76, 255, 0.46));
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(248, 244, 236, 0.68);
  text-decoration: none;
}

.legal-page .nav-links a { color: rgba(17, 18, 22, 0.68); }
.nav-links a:hover { color: inherit; }

.nav-cta {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: var(--white) !important;
  background: rgba(255,255,255,0.09);
}

.legal-page .nav-cta {
  color: var(--white) !important;
  background: var(--ink);
}

main:focus { outline: none; }
section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
section + section { border-top: 1px solid rgba(255,255,255,0.1); }
.legal-page section + section { border-top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: color-mix(in srgb, var(--product, var(--blue)) 70%, #fff);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.product-hero-grid > * { min-width: 0; }

.hero-copy { max-width: 780px; }
.product-hero h1 {
  max-width: min(100%, 13ch);
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 6.8vw, 5.85rem);
  overflow-wrap: break-word;
}

.product-hero h1 { font-size: clamp(2.85rem, 6.3vw, 5.35rem); }

.hero-lead {
  max-width: 55rem;
  color: rgba(248, 244, 236, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.btn {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--white); box-shadow: 0 20px 60px rgba(255,255,255,0.13); }
.btn-primary:hover { background: var(--paper); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,0.075); border-color: rgba(255,255,255,0.16); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.legal-page .btn-primary { color: var(--paper); background: var(--ink); }
.legal-page .btn-secondary { color: var(--ink); border-color: var(--line-dark); background: rgba(17,18,22,0.045); }

.section-head {
  max-width: 800px;
  margin-bottom: 2rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 5.2vw, 5rem);
}

.section-head p {
  max-width: 62ch;
  color: rgba(248, 244, 236, 0.68);
  font-size: 1.05rem;
}

.centered p { margin-inline: auto; }

.split-section {
  background: rgba(255,255,255,0.035);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.stacked-panels {
  display: grid;
  gap: 1rem;
}

.feature-panel, .card {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
}

.feature-panel { min-height: 10rem; }
.feature-panel h3, .card strong { display: block; margin-bottom: 0.45rem; font-size: 1.08rem; }
.feature-panel p, .card p { color: rgba(248,244,236,0.66); font-size: 0.97rem; }
.panel-number { display: inline-flex; margin-bottom: 0.9rem; color: color-mix(in srgb, var(--product, var(--blue)) 72%, #fff); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.product-hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.theme-felt { --product: var(--felt); }

.phone-scene {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-xl);
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 340px);
  aspect-ratio: 0.49;
  transform: translate(-50%, -50%) rotate(2deg);
  border: 12px solid #07080d;
  border-radius: 46px;
  background: #090b10;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 50%;
  width: 6.8rem;
  height: 1.55rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030407;
  z-index: 4;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 3.7rem 1.2rem 1.15rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  overflow: hidden;
}

.felt-screen {
  background:
    radial-gradient(circle at 50% 35%, rgba(163,107,255,0.34), transparent 10rem),
    linear-gradient(180deg, #11111b, #06070c);
}

.screen-signature {
  position: absolute;
  top: 4rem;
  left: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(248,244,236,0.7);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.screen-signature img {
  width: 1.15rem;
  height: 1.15rem;
  filter: drop-shadow(0 0 8px rgba(118, 76, 255, 0.45));
}

.screen-orb {
  width: 12rem;
  height: 12rem;
  margin: 4.2rem auto 0;
  border-radius: 44% 56% 58% 42%;
  background: radial-gradient(circle at 33% 25%, #fff, #aee9ff 17%, var(--felt) 45%, #171127 78%);
  box-shadow: 0 0 68px rgba(163,107,255,0.48);
}

.coordinate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.coordinate-grid span {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(248,244,236,0.82);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
  font-weight: 850;
}

.device-callout {
  position: absolute;
  width: min(42vw, 15rem);
  z-index: 6;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(8,9,13,0.72);
  box-shadow: 0 18px 50px rgba(0,0,0,0.26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.device-callout strong { display: block; margin-bottom: 0.25rem; }
.device-callout span { color: rgba(248,244,236,0.64); font-size: 0.9rem; }
.callout-left { left: 0; top: 17%; }
.callout-right { right: 0; bottom: 15%; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.72rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(248,244,236,0.72);
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem;
  font-weight: 850;
}

.showcase-band {
  background: var(--paper);
  color: var(--ink);
}

.showcase-band .section-head p { color: var(--muted-dark); }
.showcase-band .card {
  color: var(--ink);
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.62);
}
.showcase-band .card p { color: var(--muted-dark); }

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-panel {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.06);
}

.comparison-panel h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.comparison-panel ul { list-style: none; display: grid; gap: 0.7rem; color: rgba(248,244,236,0.68); }

.closing-cta {
  padding: clamp(1.5rem, 5vw, 3.2rem);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--product, var(--blue)) 24%, transparent), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.closing-cta h2 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
}

.closing-cta p { max-width: 58ch; color: rgba(248,244,236,0.72); }

.site-footer {
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(248,244,236,0.58);
  font-size: 0.88rem;
}

.legal-page .site-footer {
  color: var(--muted-dark);
  border-top-color: var(--line-dark);
}

.footer-inner, .site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; }
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }
.legal-page .footer-links a:hover { color: var(--ink); }

.legal-page main { padding: 3.6rem 0 5rem; }
.legal-page h1 { margin-bottom: 0.45rem; font-size: clamp(2.4rem, 5vw, 4rem); }
.updated { margin-bottom: 1.8rem; color: var(--muted-dark); font-size: 0.92rem; }
.legal-page h2 { margin: 2rem 0 0.65rem; font-size: 1.32rem; }
.legal-page h3 { margin: 1.35rem 0 0.55rem; font-size: 1.06rem; line-height: 1.25; }
.legal-page p, .legal-page li { max-width: 72ch; color: var(--muted-dark); }
.legal-page ul { margin: 0.55rem 0 1rem 1.25rem; }
.legal-page li + li { margin-top: 0.35rem; }

@media (max-width: 1020px) {
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-hero-grid, .split-grid { grid-template-columns: 1fr; }
  .phone-scene { min-height: 560px; }
  .sticky-copy { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.2rem, var(--max)); }
  .site-nav { position: relative; }
  .nav-inner, .site-nav .container {
    min-height: auto;
    padding: 0.9rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-links { justify-content: flex-start; font-size: 0.84rem; }



  .product-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.2rem, 9.2vw, 2.85rem);
  }
  .hero-lead {
    width: min(88vw, 22rem);
    max-width: min(88vw, 22rem);
    font-size: 1.03rem;
  }
  .comparison, .card-grid { grid-template-columns: 1fr; }








  .phone-scene {
    min-height: 610px;
    margin-top: 0.75rem;
    overflow: hidden;
  }
  .phone { width: min(76vw, 286px); }
  .device-callout { display: none; }
}
