:root {
  --ink: #070b12;
  --ink-2: #0c1420;
  --panel: rgba(15, 25, 39, 0.86);
  --panel-solid: #101a29;
  --line: rgba(160, 190, 216, 0.16);
  --text: #f3f7fb;
  --muted: #a8b7c7;
  --orange: #ff8a3d;
  --orange-soft: #ffc29c;
  --cyan: #55d7ff;
  --mint: #74f0be;
  --danger: #ff7a82;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 215, 255, 0.11), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(255, 138, 61, 0.12), transparent 28rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 12px;
  font-weight: 800;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(128px, 12vw, 158px);
  height: auto;
  object-fit: contain;
}

.brand-context {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 202, 70, .28);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-brand { align-items: center; }
.footer-brand .brand-logo { width: 168px; }

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  padding: .58rem .72rem;
  color: var(--muted);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .055);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: var(--panel-solid);
  font: inherit;
  cursor: pointer;
}

main { overflow: hidden; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  padding: 88px 0 64px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85, 215, 255, .4), rgba(255, 138, 61, .42), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: 54px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 7vw, 5.65rem);
  font-weight: 900;
}

.hero h1 span { color: var(--orange); }

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  font-weight: 870;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 820;
  letter-spacing: -.015em;
}

p { margin: 0 0 1rem; }

.lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: #c8d4e0;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: .8rem 1.15rem;
  border: 1px solid rgba(255, 138, 61, .55);
  border-radius: 14px;
  color: #1a0f08;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(255, 138, 61, .17);
  font-weight: 850;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }

.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
  box-shadow: none;
}

.microcopy { color: var(--muted); font-size: .84rem; }

.signal-board {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(19, 31, 48, .96), rgba(9, 16, 27, .94));
  box-shadow: var(--shadow);
}

.signal-board::before {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px dashed rgba(160, 190, 216, .12);
  border-radius: 21px;
}

.board-head,
.board-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.board-head {
  padding: 11px 12px 18px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.board-row {
  margin-top: 8px;
  padding: 15px;
  border: 1px solid rgba(160, 190, 216, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
}

.board-row strong { display: block; font-size: .97rem; }
.board-row span { display: block; color: var(--muted); font-size: .8rem; }

.status {
  flex: 0 0 auto;
  padding: .28rem .58rem;
  border: 1px solid rgba(116, 240, 190, .3);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(116, 240, 190, .08);
  font-size: .7rem !important;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status.pending { color: var(--orange-soft); border-color: rgba(255, 138, 61, .28); background: rgba(255, 138, 61, .07); }
.status.neutral { color: var(--cyan); border-color: rgba(85, 215, 255, .26); background: rgba(85, 215, 255, .07); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.trust-item { padding: 16px 18px; background: var(--ink-2); }
.trust-item b { display: block; color: var(--text); font-size: .92rem; }
.trust-item span { color: var(--muted); font-size: .78rem; }

.breadcrumb {
  padding: 24px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #506276; }

.section { padding: 76px 0; }
.section.compact { padding: 52px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, .55fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p { color: var(--muted); }

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

.card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .15);
}

.card { padding: 24px; }
.card p:last-child { margin-bottom: 0; }
.card .num { color: var(--orange); font-size: .77rem; font-weight: 900; letter-spacing: .1em; }

.content-card {
  max-width: 900px;
  padding: clamp(24px, 5vw, 50px);
}

.content-card h2 { margin-top: 2.8rem; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.content-card h2:first-child { margin-top: 0; }
.content-card h3 { margin-top: 2rem; }
.content-card p,
.content-card li { color: #c4d0dc; }
.content-card strong { color: var(--text); }

.content-card a:not(.btn),
.text-link { color: var(--cyan); text-underline-offset: 3px; }

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 15px 13px 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 13px;
  color: var(--mint);
  font-weight: 900;
}

.callout {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--orange);
  border-radius: 0 15px 15px 0;
  color: #d6e0e9;
  background: rgba(255, 138, 61, .075);
}

.callout.cyan { border-color: var(--cyan); background: rgba(85, 215, 255, .065); }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.meta-chip {
  padding: .32rem .62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 740;
}

.visual-showcase {
  position: relative;
}

.visual-intro,
.screen-grid {
  display: grid;
  gap: 20px;
}

.visual-intro {
  grid-template-columns: minmax(260px, .72fr) minmax(340px, 1.28fr);
  align-items: stretch;
}

.screen-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.screen-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.screen-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.screen-card {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(18, 29, 45, .96), rgba(8, 14, 23, .96));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
}

.screen-stage {
  min-height: 320px;
  padding: 20px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 202, 70, .11), transparent 42%),
    #080d16;
}

.screen-stage img {
  display: block;
  width: 100%;
  max-width: 290px;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.logo-card .screen-stage img {
  max-width: 340px;
  border-radius: 0;
  box-shadow: none;
}

.dashboard-card .screen-stage img { max-width: 310px; }

.screen-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 21px;
}

.screen-card figcaption strong {
  color: var(--text);
  font-size: .98rem;
}

.screen-card figcaption span {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.55;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(255, 138, 61, .34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 138, 61, .15), transparent 22rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.final-cta h2 { margin-bottom: 10px; }
.final-cta p:not(.kicker) { max-width: 700px; margin-bottom: 0; color: var(--muted); }
.final-cta .actions { margin: 0; }

.answer-panel {
  position: relative;
  padding: clamp(24px, 5vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(85, 215, 255, .32);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(85, 215, 255, .09), transparent 42%),
    var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.answer-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 138, 61, .2);
  border-radius: 50%;
}

.answer-panel h2 { max-width: 900px; margin-bottom: 14px; }
.answer-panel > p:last-child { position: relative; z-index: 1; max-width: 940px; margin: 0; color: #d5e0ea; font-size: 1.02rem; }

.intent-head { align-items: end; }
.intent-grid { margin-top: 1.5rem; }
.intent-card {
  display: flex;
  flex-direction: column;
  min-height: 14.5rem;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.intent-card:hover,
.intent-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 61, .58);
  background: linear-gradient(145deg, rgba(255, 138, 61, .08), rgba(16, 25, 42, .96));
}
.intent-card h3 { margin: .9rem 0 .65rem; color: var(--text); }
.intent-card p { flex: 1; margin: 0 0 1rem; color: var(--muted); }
.intent-card .text-link { color: var(--orange-soft); font-weight: 800; }

.account-intro {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 138, 61, .24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 138, 61, .09), rgba(85, 215, 255, .055));
}
.account-intro h2 { max-width: 25ch; margin: .25rem 0 1.4rem; }
.account-intro p { margin: 0; color: var(--muted); line-height: 1.8; }
.account-intro strong { color: var(--text); }

.intent-reinforcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.65rem 1.8rem;
  border: 1px solid rgba(85, 215, 255, .26);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(85, 215, 255, .09), rgba(16, 25, 42, .96));
}
.intent-reinforcement h2 { margin: .25rem 0 .55rem; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.intent-reinforcement p { max-width: 70ch; margin: 0; color: var(--muted); }
.intent-reinforcement .btn { flex: 0 0 auto; }

.route-grid a {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  text-decoration: none;
}

.route-grid a::after {
  content: "↗";
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: var(--orange);
  font-size: 1.45rem;
}

.route-grid a:hover { border-color: rgba(85, 215, 255, .35); transform: translateY(-2px); }
.route-grid p { color: var(--muted); }
.route-grid .tag { color: var(--cyan); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }

.timeline {
  display: grid;
  gap: 0;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 25px 34px;
  border-left: 1px solid rgba(85, 215, 255, .24);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(85, 215, 255, .55);
}

.timeline time { color: var(--orange-soft); font-size: .8rem; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.faq-list summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 14px; color: var(--orange); font-size: 1.6rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 20px 20px; color: var(--muted); }

.legal-note {
  padding: 18px;
  border: 1px solid rgba(255, 122, 130, .23);
  border-radius: 16px;
  color: #ffd6d9;
  background: rgba(255, 122, 130, .06);
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: #060a10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, .65fr));
  gap: 36px;
  padding: 58px 0 38px;
}

.footer-grid p { max-width: 450px; color: var(--muted); font-size: .9rem; }
.footer-grid h3 { font-size: .9rem; letter-spacing: .04em; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--muted); font-size: .87rem; text-decoration: none; }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: #75879a;
  font-size: .78rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b121d;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .75rem .8rem; }
  .hero-grid,
  .section-head { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .actions { margin-top: 8px; }
  .hero-grid { gap: 36px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .screen-grid.four,
  .screen-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 30px), var(--max)); }
  .header-inner { padding: 0 15px; }
  .brand-context { display: none; }
  .brand-logo { width: 142px; }
  .hero { padding: 56px 0 44px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .signal-board { padding: 12px; }
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .visual-intro,
  .screen-grid.two,
  .screen-grid.three,
  .screen-grid.four { grid-template-columns: 1fr; }
  .screen-stage { min-height: 0; padding: 16px; }
  .trust-strip { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .card { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .intent-reinforcement { align-items: flex-start; flex-direction: column; }
  .intent-reinforcement .btn { width: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
  .btn,
  .route-grid a { transition: transform .18s ease, border-color .18s ease, filter .18s ease; }
}

@media print {
  .site-header,
  .site-footer,
  .actions { display: none; }
  body { color: #111; background: #fff; }
  .card,
  .content-card,
  .faq-list details { color: #111; background: #fff; border-color: #bbb; box-shadow: none; }
}
