:root {
  color-scheme: dark;
  --bg: #050711;
  --panel: rgba(13, 19, 34, 0.74);
  --panel-solid: #0e1525;
  --line: rgba(181, 207, 255, 0.14);
  --text: #f6f8ff;
  --muted: rgba(214, 222, 237, 0.74);
  --green: #5cf2bd;
  --peach: #ff9b7b;
  --gold: #f3cf78;
  --blue: #8eb2ff;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 20% 20%, rgba(92, 242, 189, 0.1), transparent 26%),
    radial-gradient(circle at 74% 24%, rgba(255, 155, 123, 0.1), transparent 22%),
    linear-gradient(180deg, #070912 0%, #050711 45%, #090d18 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
li,
span,
small {
  color: var(--muted);
}

.site-shell,
.shell {
  width: min(1720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 56px;
}

.topbar,
.nav-shell {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(5, 7, 17, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff;
}

.top-links,
.nav-links {
  display: flex;
  gap: 8px;
}

.top-links a,
.nav-links a,
.top-cta,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.top-links a,
.nav-links a,
.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.top-cta,
.chip.primary {
  color: #04110d;
  background: linear-gradient(135deg, var(--green), #84f7d0);
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 72px 12px 32px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-kicker,
.section-label,
.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

h1 {
  max-width: 780px;
  font-size: clamp(70px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  scroll-margin-top: 120px;
}

.store-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  min-height: 74px;
  padding: 0 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.store-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #171d2b, #0b0f18);
}

.store-light {
  color: #140e0b;
  background: linear-gradient(135deg, var(--peach), var(--gold));
}

.store-button small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-dark small {
  color: rgba(214, 222, 237, 0.74);
}

.store-light small {
  color: rgba(20, 14, 11, 0.72);
}

.store-button strong {
  color: inherit;
  margin-top: 4px;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-row div,
.main-device-card,
.side-note,
.feature-card,
.step-card,
.section-headline,
.card,
.panel,
.policy-card,
.store-note-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 20, 35, 0.78), rgba(10, 14, 24, 0.58));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.trust-row div {
  border-radius: 24px;
  padding: 24px;
}

.trust-row strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-row span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aura-circle {
  position: absolute;
  width: min(560px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(92, 242, 189, 0.2), transparent 34%),
    conic-gradient(
      from 210deg,
      rgba(142, 178, 255, 0.4),
      rgba(92, 242, 189, 0.5),
      rgba(255, 155, 123, 0.25),
      rgba(142, 178, 255, 0.4)
    );
  opacity: 0.9;
  filter: blur(0.3px);
}

.aura-circle::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  background: #0a0f1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.main-device-card {
  position: relative;
  z-index: 1;
  width: min(490px, 100%);
  margin-top: 140px;
  padding: 24px;
  border-radius: 34px;
}

.device-card-top,
.summary-head,
.device-list div,
.request-stack div,
.health-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.device-card-top span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.device-card-top em {
  color: var(--blue);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.summary-tile {
  margin: 20px 0;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 35%, rgba(92, 242, 189, 0.22), transparent 34%),
    radial-gradient(circle at 78% 45%, rgba(255, 155, 123, 0.14), transparent 30%),
    linear-gradient(135deg, #111a2e, #0a0f1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-head span,
.device-list span,
.request-stack span,
.health-lines span,
.side-note small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-head strong {
  color: var(--text);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bars {
  height: 120px;
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.bars i {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #cbffec, var(--green) 45%, rgba(92, 242, 189, 0.08));
}

.device-list {
  display: grid;
  gap: 14px;
}

.device-list div,
.request-stack div,
.health-lines div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.device-list strong,
.request-stack strong,
.side-note strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.side-note {
  position: absolute;
  z-index: 2;
  width: min(290px, 72%);
  padding: 22px 24px;
  border-radius: 26px;
}

.note-top {
  top: 110px;
  right: 20px;
}

.note-bottom {
  left: 14px;
  bottom: 160px;
}

.side-note strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
}

.feature-section,
.steps-section {
  margin-top: 48px;
}

.section-headline {
  max-width: 980px;
  border-radius: 36px;
  padding: 36px;
}

h2 {
  margin-top: 18px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.feature-card {
  grid-column: span 2;
  min-height: 290px;
  border-radius: 36px;
  padding: 32px;
}

.feature-large {
  grid-column: span 3;
}

.feature-card p {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h3 {
  margin-top: 18px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.request-stack,
.health-lines {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.code-pill {
  margin-top: 52px;
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  color: #07130f;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #f9f1d7, #f0ca76 45%, #86f4c8);
}

.soft-glow {
  background:
    radial-gradient(circle at top right, rgba(255, 155, 123, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(23, 20, 35, 0.86), rgba(10, 14, 24, 0.58));
}

.dark-panel {
  background:
    radial-gradient(circle at top left, rgba(92, 242, 189, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(8, 13, 24, 0.92), rgba(10, 14, 24, 0.58));
}

.health-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--peach));
}

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

.step-card {
  border-radius: 36px;
  padding: 32px;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  color: #05110d;
  background: linear-gradient(135deg, var(--green), #8ef6d3);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: rgba(246, 248, 255, 0.9);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.step-card p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding: 0 8px;
}

.site-footer p,
.site-footer a {
  font-size: 14px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.card,
.panel,
.policy-card,
.store-note-card,
.page-card {
  border-radius: 36px;
  padding: clamp(28px, 4vw, 42px);
}

.page-card {
  max-width: 1180px;
  margin: 24px auto 0;
}

.page-card h1 {
  max-width: none;
  font-size: clamp(48px, 6vw, 82px);
}

.page-lead {
  max-width: 760px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
}

.policy-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.policy-card h3 + h3 {
  margin-top: 26px;
}

.policy-card h3 + p,
.policy-card h3 + ul {
  margin-top: 14px;
}

.footer {
  margin-top: 32px;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 640px;
  }

  .main-device-card {
    margin-top: 100px;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .feature-large {
    grid-column: span 1;
  }
}

@media (max-width: 700px) {
  .site-shell,
  .shell {
    width: min(1720px, calc(100% - 20px));
    padding-top: 10px;
  }

  .topbar,
  .nav-shell {
    position: static;
    flex-wrap: wrap;
    padding: 12px;
    gap: 10px;
    border-radius: 22px;
  }

  .brand-lockup {
    font-size: 15px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .top-links,
  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .top-links::-webkit-scrollbar,
  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .top-links a,
  .nav-links a,
  .top-cta,
  .chip {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-wrap {
    gap: 34px;
    padding: 36px 4px 20px;
  }

  .hero-copy {
    gap: 18px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.68;
  }

  .trust-row,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 0 22px;
    border-radius: 20px;
  }

  .trust-row {
    display: grid;
    gap: 10px;
  }

  .trust-row div {
    padding: 18px 20px;
    border-radius: 20px;
  }

  .trust-row strong {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .aura-circle {
    width: 92%;
  }

  .main-device-card {
    width: 100%;
    margin-top: 84px;
    padding: 18px;
    border-radius: 28px;
  }

  .summary-tile {
    margin: 16px 0;
    padding: 18px;
    border-radius: 22px;
  }

  .summary-head strong {
    font-size: 32px;
  }

  .bars {
    height: 92px;
    gap: 10px;
  }

  .device-list div {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .device-list span,
  .side-note small {
    font-size: 10px;
  }

  .device-list strong {
    font-size: 13px;
    text-align: right;
  }

  .side-note {
    width: min(220px, 70%);
    padding: 16px 18px;
    border-radius: 20px;
  }

  .note-top {
    top: 16px;
    right: 0;
  }

  .note-bottom {
    left: 0;
    bottom: 98px;
  }

  .side-note strong {
    font-size: 16px;
    margin-top: 8px;
  }

  .feature-section,
  .steps-section {
    margin-top: 24px;
  }

  .section-headline,
  .feature-card,
  .step-card {
    border-radius: 26px;
    padding: 24px;
  }

  h2 {
    margin-top: 14px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.96;
  }

  .feature-card {
    min-height: 0;
  }

  h3 {
    font-size: 28px;
    line-height: 1.02;
  }

  .request-stack,
  .health-lines {
    margin-top: 24px;
  }

  .request-stack div,
  .health-lines div {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .request-stack strong {
    font-size: 13px;
  }

  .code-pill {
    margin-top: 32px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .step-card span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    margin-top: 40px;
    padding: 0 4px;
  }

  .site-footer div {
    justify-content: flex-start;
    gap: 14px;
  }

  .card,
  .panel,
  .policy-card,
  .store-note-card,
  .page-card {
    border-radius: 26px;
    padding: 24px;
  }

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