:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --surface: #111;
  --surface-2: #151515;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --text: #f5f5f2;
  --muted: #a7a7a1;
  --muted-2: #777;
  --white: #fff;
  --black: #000;
  --radius: 26px;
  --shadow: 0 30px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 75% 8%, rgba(255,255,255,.04), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' 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%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(8,8,8,.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: -.02em;
  font-weight: 650;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand strong {
  font-size: .72em;
  font-weight: 800;
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  vertical-align: 2px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--white); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--black); }
.button-primary:hover { background: #dcdcd7; }
.button-outline { border-color: var(--line-strong); color: var(--white); background: rgba(255,255,255,.03); }
.button-outline:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); }
.button-ghost { color: var(--muted); }
.button-ghost:hover { color: var(--white); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.button-full { width: 100%; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 128px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: #cfcfca;
}
.status-dot, .trial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 720;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.5);
}
.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.hero-proof div {
  display: grid;
  gap: 3px;
  flex: 1;
  padding: 20px 20px 0 0;
}
.hero-proof strong { font-size: 14px; }
.hero-proof span { color: var(--muted-2); font-size: 12px; }

.hero-visual {
  position: relative;
  width: min(480px, 42vw);
  aspect-ratio: 1;
  justify-self: end;
}
.logo-shell {
  position: absolute;
  inset: 9%;
  z-index: 2;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(145deg, rgba(255,255,255,.25), rgba(255,255,255,.02) 45%, rgba(255,255,255,.08));
  box-shadow: 0 45px 100px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.18);
}
.logo-shell img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  animation: orbit 24s linear infinite;
}
.orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  top: 50%;
  left: -4px;
  box-shadow: 0 0 24px rgba(255,255,255,.8);
}
.orbit-one { inset: 0; }
.orbit-two { inset: 17%; animation-direction: reverse; animation-duration: 18s; opacity: .6; }
.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(18,18,18,.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.chip-top { right: -6%; top: 19%; }
.chip-bottom { left: -8%; bottom: 15%; }
.chip-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-one { width: 420px; height: 420px; right: 8%; top: 10%; background: rgba(255,255,255,.055); }
.hero-glow-two { width: 320px; height: 320px; left: -10%; bottom: -10%; background: rgba(255,255,255,.035); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 24px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 3px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll 1.8s ease infinite;
}

.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #0b0b0b;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
  padding: 17px 0;
  animation: ticker 28s linear infinite;
  color: #d5d5d1;
  font-size: 12px;
  letter-spacing: .17em;
  font-weight: 800;
}
.ticker-track i { color: #545454; font-style: normal; }

.section { padding: 120px 0; position: relative; }
.section-heading { margin-bottom: 54px; }
.section-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
}
.section-heading > p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}
.section-heading.centered { text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading.centered h2,
.section-heading.centered > p { margin-inline: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 45%),
    var(--surface);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.24);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 50%),
    var(--surface);
}
.feature-number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #525252;
  font-size: 12px;
  letter-spacing: .14em;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: 21px;
}
.feature-card h3 {
  margin: 72px 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.feature-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.pricing-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0a0a0a;
}
.pricing-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  filter: blur(110px);
}
.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  gap: 18px;
}
.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(15,15,15,.88);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-10px);
}
.popular-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.price-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.featured .price-label { color: #666; }
.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 22px 0 10px;
  font-weight: 800;
}
.price span {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.06em;
}
.price-card > p { color: var(--muted); min-height: 48px; }
.featured > p { color: #555; }
.price-card ul {
  list-style: none;
  padding: 22px 0;
  margin: 24px 0 28px;
  border-block: 1px solid var(--line);
}
.featured ul { border-color: rgba(0,0,0,.12); }
.price-card li {
  position: relative;
  padding: 8px 0 8px 27px;
  font-size: 14px;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 900;
}
.featured .button-primary { background: #000; color: #fff; }
.trial-banner {
  position: relative;
  max-width: 878px;
  margin: 18px auto 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
}
.trial-banner > div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.trial-banner strong { display: block; }
.trial-banner p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.trial-banner > a {
  text-decoration: none;
  font-weight: 750;
  white-space: nowrap;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.step-index {
  color: #666;
  font-size: 13px;
  letter-spacing: .14em;
}
.step h3 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.03em; }
.step p { max-width: 650px; margin: 0; color: var(--muted); }
.devices {
  margin-top: 54px;
  padding: 25px 0 0;
}
.devices > p { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .13em; }
.devices > div { display: flex; flex-wrap: wrap; gap: 10px; }
.devices span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.faq-section { background: #0a0a0a; border-block: 1px solid var(--line); }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.faq-grid .section-heading { position: sticky; top: 120px; }
.faq-grid .section-heading a { color: var(--white); }
.accordion details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.accordion summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 27px 44px 27px 0;
  font-size: 18px;
  font-weight: 650;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #bdbdb7;
  transition: transform .2s ease;
}
.accordion summary::after { transform: rotate(90deg); }
.accordion details[open] summary::after { transform: rotate(0); }
.accordion details p {
  margin: -8px 0 26px;
  max-width: 650px;
  color: var(--muted);
}

.cta-section { padding-block: 90px; }
.cta-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 30%, rgba(255,255,255,.08), transparent 22rem),
    var(--surface);
  overflow: hidden;
}
.cta-logo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.cta-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
}
.cta-card p:not(.section-kicker) { margin: 14px 0 0; color: var(--muted); }

.site-footer { padding: 70px 0 110px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}
.footer-brand { margin-bottom: 16px; }
.footer-grid > div:first-child > p { max-width: 360px; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links p {
  margin: 0 0 9px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #626262;
  font-size: 12px;
}
.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead, .hero-proof { margin-inline: auto; }
  .hero-visual { width: min(470px, 78vw); justify-self: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid .section-heading { position: static; }
  .cta-card { grid-template-columns: auto 1fr; }
  .cta-card > .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .header-inner > .button { display: none; }
  .hero { min-height: auto; padding: 112px 0 75px; }
  .hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { padding-right: 8px; }
  .hero-visual { width: min(420px, 90vw); }
  .chip-top { right: -2%; }
  .chip-bottom { left: -2%; }
  .scroll-cue { display: none; }

  .section { padding: 86px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 42px; }
  .feature-card { min-height: 270px; padding: 24px; }
  .feature-card h3 { margin-top: 62px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; order: -1; }
  .price span { font-size: 62px; }
  .trial-banner { align-items: flex-start; flex-direction: column; }
  .trial-banner > a { padding-left: 26px; }

  .step { grid-template-columns: 58px 1fr; }
  .step h3 { font-size: 21px; }

  .cta-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
  .cta-card h2 { font-size: 42px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 125px; }
  .mobile-cta {
    position: fixed;
    z-index: 45;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(0,0,0,.6);
  }
}

@media (max-width: 430px) {
  .brand span { font-size: 14px; }
  .hero-proof { gap: 7px; }
  .hero-proof strong { font-size: 12px; }
  .hero-proof span { font-size: 10px; }
  .floating-chip { font-size: 10px; padding: 9px 11px; }
  .chip-icon { width: 20px; height: 20px; }
  .price-card { padding: 27px 22px; }
  .popular-badge { position: static; display: inline-block; margin-bottom: 18px; }
}

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