:root {
  --bg: #050b14;
  --bg-elevated: #08111f;
  --surface: #0b1524;
  --surface-strong: #0f1b2e;
  --surface-soft: rgba(12, 25, 43, .72);
  --border: rgba(148, 174, 213, .14);
  --border-strong: rgba(119, 148, 255, .32);
  --text: #f5f8ff;
  --text-soft: #c3cce0;
  --muted: #8793aa;
  --faint: #5d6980;
  --primary: #6f7cff;
  --primary-bright: #8b91ff;
  --cyan: #4fd8ff;
  --green: #4ee0a1;
  --warning: #ffc96b;
  --danger: #ff7e8d;
  --shadow: 0 30px 90px rgba(0, 0, 0, .32);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(79, 103, 255, .11), transparent 36%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
button, input { font: inherit; }
a { color: var(--primary-bright); text-decoration: none; }
a:hover { color: #aeb3ff; }
img, svg { display: block; }
code, pre { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.section-block { padding-block: 120px; }
.site-main { min-height: 64vh; overflow: hidden; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 174, 213, .1);
  background: rgba(5, 11, 20, .82);
  backdrop-filter: blur(20px);
}
.nav-shell {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { width: 32px; height: 32px; flex: 0 0 32px; }
.brand-mark img { width: 100%; height: 100%; }
.brand-copy { font-size: 19px; font-weight: 760; letter-spacing: -.5px; }
.brand-copy span { color: var(--cyan); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { color: #aeb8cb; font-size: 14px; font-weight: 560; white-space: nowrap; }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--text); }
.site-nav .nav-secondary, .site-nav .nav-primary {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-nav .nav-secondary { margin-left: 4px; border: 1px solid var(--border); color: var(--text); }
.site-nav .nav-primary {
  margin-left: -18px;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary), #5965e8);
  color: white;
  box-shadow: 0 8px 30px rgba(95, 105, 239, .22);
}
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--border); border-radius: 10px; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 1.5px; margin: 5px 0; background: var(--text); transition: transform .2s ease, opacity .2s ease; }

/* Shared */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9ea8ff;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow > span { width: 20px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--primary)); }
.button {
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  font-weight: 680;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { color: white; text-decoration: none; transform: translateY(-2px); }
.button:focus-visible, .nav-toggle:focus-visible, .code-tabs button:focus-visible { outline: 3px solid rgba(79, 216, 255, .3); outline-offset: 2px; }
.button-primary { background: linear-gradient(135deg, #7782ff, #5865df); box-shadow: 0 12px 32px rgba(83, 96, 224, .25); }
.button-primary:hover { box-shadow: 0 16px 42px rgba(83, 96, 224, .36); }
.button-secondary { border-color: var(--border); background: rgba(255, 255, 255, .025); }
.button-secondary:hover { border-color: rgba(148, 174, 213, .3); background: rgba(255, 255, 255, .06); }
.button svg { width: 19px; height: 19px; }
.full-button { width: 100%; }
.section-heading { max-width: 680px; margin-bottom: 52px; }
.section-heading h2, .workflow-copy h2, .final-cta h2 {
  margin: 14px 0 15px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .workflow-copy > p, .final-cta p { margin: 0; color: var(--muted); font-size: 17px; }
.center-heading { margin-inline: auto; text-align: center; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.split-heading h2 { max-width: 700px; }

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  padding-block: 112px 105px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(480px, .82fr);
  align-items: center;
  gap: 75px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 -100vw;
  z-index: -2;
  background-image: linear-gradient(rgba(122, 147, 193, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(122, 147, 193, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 480px; height: 480px; right: -90px; top: 45px; background: radial-gradient(circle, rgba(91, 75, 255, .18), transparent 68%); }
.hero-glow-two { width: 360px; height: 360px; left: -220px; top: 140px; background: radial-gradient(circle, rgba(38, 181, 224, .11), transparent 70%); }
.hero h1 {
  margin: 19px 0 27px;
  max-width: 680px;
  font-size: clamp(55px, 6.2vw, 82px);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 760;
}
.hero h1 span { background: linear-gradient(100deg, #91e9ff, #a2a8ff 62%, #d9c8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 610px; margin: 0; color: var(--text-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: 12px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--green); }
.hero-console {
  position: relative;
  border: 1px solid rgba(136, 161, 202, .2);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(15, 27, 46, .96), rgba(6, 14, 25, .96));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, .025);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}
.hero-console::after { content: ""; position: absolute; inset: 12% -12% -12% 20%; z-index: -1; background: rgba(79, 95, 255, .15); filter: blur(50px); }
.console-topbar { height: 52px; padding: 0 17px; display: flex; align-items: center; border-bottom: 1px solid var(--border); }
.console-dots { display: flex; gap: 6px; }
.console-dots span { width: 7px; height: 7px; border-radius: 50%; background: #455166; }
.console-dots span:first-child { background: #6d7691; }
.console-file { margin: auto; color: #7e899e; font: 11px "SFMono-Regular", Consolas, monospace; }
.console-live { display: flex; align-items: center; gap: 6px; color: #8ebba7; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.console-live span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.console-body { padding: 23px 14px 26px; min-height: 322px; overflow: hidden; color: #aab4c7; font: 12px/1.82 "SFMono-Regular", Consolas, monospace; }
.code-line { display: grid; grid-template-columns: 31px minmax(410px, 1fr); }
.line-number { color: #39465a; user-select: none; }
.code-line b { color: #af91ff; font-weight: 500; }
.code-line i { color: #86dcb9; font-style: normal; }
.code-line em { color: #7ac9ff; font-style: normal; }
.code-line strong { color: #ffb18e; font-weight: 500; }
.code-line .indent { padding-left: 20px; }
.route-card {
  position: absolute;
  width: calc(100% - 50px);
  left: 25px;
  bottom: -96px;
  padding: 18px;
  border: 1px solid rgba(119, 148, 255, .24);
  border-radius: 14px;
  background: rgba(10, 21, 37, .97);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .35);
}
.route-heading { display: flex; justify-content: space-between; color: var(--text-soft); font-size: 12px; font-weight: 650; }
.route-status { color: #72d7a8; font-size: 10px; font-weight: 550; }
.route-status i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--green); }
.route-flow { padding: 18px 2px; display: flex; align-items: center; }
.route-node { width: 54px; text-align: center; }
.route-node > span { width: 35px; height: 35px; margin: auto; border: 1px solid #33415a; border-radius: 9px; display: grid; place-items: center; color: #9aa7bd; background: #0d1929; font: 10px "SFMono-Regular", monospace; }
.route-node.active > span { border-color: var(--primary); color: white; background: rgba(111, 124, 255, .18); box-shadow: 0 0 18px rgba(111, 124, 255, .24); }
.route-node small { display: block; margin-top: 5px; color: #647087; font-size: 8px; }
.route-line { flex: 1; height: 1px; background: #25334b; }
.route-line span { display: block; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, var(--primary)); box-shadow: 0 0 7px var(--primary); }
.route-metrics { padding-top: 12px; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, 1fr); }
.route-metrics div { padding-left: 14px; border-left: 1px solid var(--border); }
.route-metrics div:first-child { padding-left: 0; border-left: 0; }
.route-metrics span, .route-metrics strong { display: block; }
.route-metrics span { color: #667289; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.route-metrics strong { margin-top: 2px; color: #b6c2d5; font-size: 10px; }

/* Signal */
.signal-bar { border-block: 1px solid var(--border); background: rgba(9, 19, 33, .55); }
.signal-grid { min-height: 82px; display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); align-items: center; gap: 20px; }
.signal-grid span { color: var(--faint); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.signal-grid strong { color: #7f8ba0; font-size: 13px; font-weight: 580; text-align: center; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 260px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(14, 27, 46, .76), rgba(8, 17, 30, .7));
  transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(121, 147, 211, .28); }
.feature-card-large { grid-column: span 2; min-height: 335px; position: relative; overflow: hidden; }
.feature-card-large::after { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; bottom: -150px; border-radius: 50%; background: rgba(85, 99, 232, .14); filter: blur(12px); }
.icon-box { width: 43px; height: 43px; padding: 10px; border: 1px solid rgba(119, 148, 255, .24); border-radius: 11px; color: #8d9aff; background: rgba(98, 111, 241, .08); }
.icon-box svg { width: 100%; height: 100%; }
.feature-card h3 { margin: 23px 0 10px; font-size: 19px; letter-spacing: -.02em; }
.feature-card p { max-width: 580px; margin: 0; color: var(--muted); font-size: 14px; }
.mini-stack { position: absolute; right: 28px; bottom: 28px; width: 47%; max-width: 330px; display: grid; gap: 8px; }
.mini-stack div { padding: 11px 13px; border: 1px solid var(--border); border-radius: 9px; display: grid; grid-template-columns: 12px 1fr auto; align-items: center; background: rgba(5, 13, 23, .65); }
.mini-stack code { color: #bdc7d8; font-size: 11px; }
.mini-stack small { color: var(--faint); font-size: 9px; }
.stack-dot { width: 5px; height: 5px; border-radius: 50%; }
.stack-dot.blue { background: var(--primary); box-shadow: 0 0 7px var(--primary); }
.stack-dot.violet { background: #bb7dff; box-shadow: 0 0 7px #bb7dff; }
.stack-dot.cyan { background: var(--cyan); box-shadow: 0 0 7px var(--cyan); }

/* Workflow */
.workflow-section { padding: 110px 60px; border: 1px solid var(--border); border-radius: var(--radius-lg); display: grid; grid-template-columns: .82fr 1.18fr; gap: 86px; background: linear-gradient(145deg, rgba(14, 28, 48, .75), rgba(7, 15, 27, .75)); }
.workflow-steps { margin-top: 40px; display: grid; gap: 26px; }
.workflow-steps > div { display: grid; grid-template-columns: 38px 1fr; gap: 15px; }
.workflow-steps > div > span { width: 34px; height: 34px; border: 1px solid var(--border-strong); border-radius: 9px; display: grid; place-items: center; color: #9fa7ff; font: 10px "SFMono-Regular", monospace; background: rgba(104, 117, 255, .08); }
.workflow-steps section { padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.workflow-steps > div:last-child section { padding-bottom: 0; border: 0; }
.workflow-steps h3 { margin: 1px 0 4px; font-size: 15px; }
.workflow-steps p { margin: 0; color: var(--muted); font-size: 13px; }
.developer-panel { align-self: center; min-width: 0; border: 1px solid rgba(131, 158, 203, .2); border-radius: 16px; overflow: hidden; background: #07111e; box-shadow: 0 24px 60px rgba(0, 0, 0, .24); }
.code-tabs { min-height: 50px; padding: 0 11px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 2px; background: rgba(14, 25, 42, .72); }
.code-tabs button { padding: 8px 10px; border: 0; border-radius: 7px; color: #6f7b90; background: transparent; font-size: 11px; cursor: pointer; }
.code-tabs button.active { color: var(--text); background: rgba(255, 255, 255, .05); }
.code-tabs .copy-button { margin-left: auto; color: #98a5bb; }
.developer-panel pre { min-height: 330px; margin: 0; padding: 28px 25px; overflow: auto; color: #aebbd0; font-size: 12px; line-height: 1.8; }
.code-result { min-height: 43px; padding: 0 17px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 18px; color: #657188; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.code-result span:first-child { color: #73cfa6; }
.code-result i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--green); }

/* Home pricing */
.home-plan-grid, .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.home-plan-card, .pricing-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(150deg, rgba(14, 27, 46, .76), rgba(8, 17, 30, .76)); }
.home-plan-card { min-height: 440px; padding: 29px; display: flex; flex-direction: column; }
.home-plan-card.featured, .pricing-card.featured { border-color: rgba(120, 132, 255, .5); box-shadow: 0 24px 70px rgba(53, 64, 168, .16), inset 0 1px rgba(255, 255, 255, .04); }
.plan-kicker { color: #98a4ff; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.home-plan-card h3 { margin: 9px 0 0; font-size: 19px; }
.compact-price { margin: 36px 0 30px; font-size: 40px; font-weight: 740; letter-spacing: -.04em; }
.compact-price sup { margin-right: 3px; font-size: 18px; vertical-align: 12px; }
.compact-price span { color: var(--faint); font-size: 11px; font-weight: 500; letter-spacing: 0; }
.custom-price { font-size: 34px; }
.check-list { margin: 0 0 28px; padding: 0; display: grid; gap: 11px; list-style: none; color: #aeb8cb; font-size: 13px; }
.check-list li { position: relative; padding-left: 23px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-size: 12px; }
.check-list code { color: #c9d2e5; font-size: .92em; }
.home-plan-card .button { margin-top: auto; }
.popular-tag { position: absolute; top: 0; right: 22px; padding: 7px 12px; border-radius: 0 0 8px 8px; color: #d9ddff; background: #5661cb; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

/* CTA */
.final-cta { position: relative; margin-bottom: 120px; padding: 65px; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 60px; background: linear-gradient(125deg, rgba(37, 46, 108, .65), rgba(10, 22, 39, .94) 65%); }
.final-cta > div:not(.cta-glow) { position: relative; z-index: 1; }
.final-cta h2 { max-width: 700px; font-size: clamp(32px, 4vw, 48px); }
.final-cta p { max-width: 630px; }
.final-cta .hero-actions { flex-shrink: 0; margin-top: 0; }
.cta-glow { position: absolute; width: 400px; height: 400px; left: -130px; top: -230px; border-radius: 50%; background: rgba(79, 216, 255, .12); filter: blur(8px); }

/* Pricing */
.page-hero { padding-block: 112px 70px; text-align: center; }
.page-hero h1 { margin: 17px 0 20px; font-size: clamp(48px, 6vw, 72px); line-height: 1; letter-spacing: -.055em; }
.page-hero > p { max-width: 690px; margin: 0 auto; color: var(--text-soft); font-size: 18px; }
.pricing-assurances { margin-top: 26px; display: flex; justify-content: center; flex-wrap: wrap; gap: 13px 25px; color: var(--muted); font-size: 12px; }
.pricing-assurances span::first-letter { color: var(--green); }
.notice { max-width: 760px; margin: -50px auto 55px; padding: 14px 18px; border: 1px solid; border-radius: 12px; display: flex; gap: 13px; text-align: left; }
.notice > span { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; font-weight: 750; }
.notice strong { display: block; font-size: 13px; }
.notice p { margin: 2px 0 0; font-size: 12px; }
.notice-warning { border-color: rgba(255, 201, 107, .26); color: #e8c889; background: rgba(94, 65, 18, .18); }
.notice-warning > span { background: rgba(255, 201, 107, .12); }
.pricing-section { padding-block: 25px 100px; }
.pricing-card { min-height: 590px; padding: 34px 30px 30px; display: flex; flex-direction: column; }
.pricing-card-head h2 { margin: 10px 0 9px; font-size: 24px; letter-spacing: -.03em; }
.pricing-card-head p { min-height: 70px; margin: 0; color: var(--muted); font-size: 13px; }
.price { min-height: 78px; margin-top: 29px; display: grid; grid-template-columns: auto auto 1fr; align-items: start; }
.price sup { margin-top: 10px; font-size: 17px; }
.price strong { font-size: 44px; line-height: 1; letter-spacing: -.05em; }
.price > span { align-self: end; margin: 0 0 5px 10px; color: var(--faint); font-size: 10px; }
.price.custom { grid-template-columns: auto 1fr; }
.price.custom strong { font-size: 35px; }
.price-divider { height: 1px; margin: 5px 0 27px; background: var(--border); }
.pricing-card .check-list { margin-bottom: 30px; }
.pricing-card form, .pricing-card > .button { margin-top: auto; }
.payment-strip { margin-top: 18px; padding: 21px 24px; border: 1px solid var(--border); border-radius: 13px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 21px; background: rgba(10, 21, 36, .65); }
.stripe-wordmark { padding-right: 21px; border-right: 1px solid var(--border); color: #8e92ff; font-size: 22px; font-weight: 780; letter-spacing: -.06em; }
.payment-strip strong, .payment-strip span { display: block; }
.payment-strip strong { font-size: 12px; }
.payment-strip > div > span { margin-top: 2px; color: var(--faint); font-size: 10px; }
.payment-pills { display: flex; gap: 7px; }
.payment-pills span { padding: 5px 8px; border: 1px solid var(--border); border-radius: 5px; color: #7e899d; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.comparison-section { padding-block: 40px 110px; }
.table-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow-x: auto; background: rgba(9, 19, 33, .6); }
.comparison-table, .doc-tbl, .status-tbl { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { min-width: 170px; padding: 18px 24px; border-bottom: 1px solid var(--border); color: #aeb8ca; text-align: center; font-size: 12px; }
.comparison-table th:first-child, .comparison-table td:first-child { min-width: 220px; color: var(--text-soft); text-align: left; }
.comparison-table th { color: var(--text); background: rgba(255, 255, 255, .018); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.recommended-column { background: rgba(96, 106, 227, .055); }
.table-check { color: var(--green); }
.faq-section { padding-block: 20px 120px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-grid { border-top: 1px solid var(--border); }
.faq-grid details { border-bottom: 1px solid var(--border); }
.faq-grid summary { padding: 22px 4px; display: flex; justify-content: space-between; gap: 20px; color: var(--text-soft); font-size: 14px; font-weight: 620; cursor: pointer; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary span { color: var(--primary-bright); font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.faq-grid details[open] summary span { transform: rotate(45deg); }
.faq-grid p { margin: -8px 40px 22px 4px; color: var(--muted); font-size: 13px; }

/* Payment results */
.result-page { padding-block: 90px 120px; }
.result-card { max-width: 760px; margin: 0 auto; padding: 52px; border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; background: linear-gradient(145deg, rgba(14, 28, 47, .9), rgba(7, 15, 27, .94)); box-shadow: var(--shadow); }
.result-icon { width: 66px; height: 66px; margin: 0 auto 25px; padding: 15px; border-radius: 50%; }
.result-icon svg { width: 100%; height: 100%; }
.result-icon.success { border: 1px solid rgba(78, 224, 161, .3); color: var(--green); background: rgba(78, 224, 161, .09); box-shadow: 0 0 35px rgba(78, 224, 161, .1); }
.result-icon.error { border: 1px solid rgba(255, 126, 141, .3); color: var(--danger); background: rgba(255, 126, 141, .08); }
.result-card h1 { margin: 13px 0 14px; font-size: clamp(35px, 5vw, 49px); line-height: 1.08; letter-spacing: -.045em; }
.result-lead { max-width: 590px; margin: 0 auto; color: var(--text-soft); }
.progress-track { margin: 43px 0 36px; display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr; align-items: start; }
.progress-item { display: flex; gap: 10px; text-align: left; }
.progress-item > span { width: 30px; height: 30px; flex: 0 0 30px; border: 1px solid #324059; border-radius: 50%; display: grid; place-items: center; color: #657188; font-size: 10px; }
.progress-item strong, .progress-item small { display: block; }
.progress-item strong { color: #8793a8; font-size: 11px; }
.progress-item small { margin-top: 2px; color: #576379; font-size: 8px; }
.progress-item.complete > span { border-color: rgba(78, 224, 161, .45); color: #071a12; background: var(--green); }
.progress-item.complete strong { color: #95dbbd; }
.progress-item.active > span { border-color: var(--primary); color: white; background: rgba(111, 124, 255, .15); box-shadow: 0 0 16px rgba(111, 124, 255, .25); }
.progress-item.active strong { color: #b6bcff; }
.progress-line { height: 1px; margin-top: 15px; background: #28354a; }
.progress-line.active { background: linear-gradient(90deg, var(--green), var(--primary)); }
.receipt-card { border: 1px solid var(--border); border-radius: 13px; overflow: hidden; text-align: left; background: rgba(5, 13, 23, .55); }
.receipt-title { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; color: var(--text-soft); font-size: 11px; font-weight: 680; text-transform: uppercase; letter-spacing: .08em; }
.payment-status { color: var(--green); }
.receipt-card dl { margin: 0; padding: 8px 18px; }
.receipt-card dl > div { padding: 11px 0; border-bottom: 1px solid rgba(148, 174, 213, .08); display: grid; grid-template-columns: 125px 1fr; gap: 15px; }
.receipt-card dl > div:last-child { border-bottom: 0; }
.receipt-card dt { color: var(--faint); font-size: 11px; }
.receipt-card dd { margin: 0; color: #bdc7d8; font-size: 11px; text-align: right; overflow-wrap: anywhere; }
.receipt-card code { color: #9faaff; font-size: 10px; }
.result-note { margin-top: 20px; padding: 16px; border: 1px solid rgba(79, 216, 255, .16); border-radius: 11px; display: flex; gap: 12px; color: #8796ad; text-align: left; background: rgba(27, 86, 111, .08); }
.result-note svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--cyan); }
.result-note p { margin: 0; font-size: 11px; }
.result-note strong { color: #b7c5d9; }
.result-actions { margin-top: 28px; display: flex; justify-content: center; gap: 11px; }
.secure-footer { margin-top: 27px; color: #59657a; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

/* Existing utility pages */
.docs, .legal, .status-page { width: min(calc(100% - 48px), 1040px); margin: 0 auto; padding-block: 90px 110px; }
.docs { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 55px; }
.doc-toc { position: sticky; top: 100px; align-self: start; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-soft); }
.doc-toc .toc-title, .contact-grid .label { margin-bottom: 9px; color: #9da7ff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.doc-toc a { display: block; padding: 6px 0; color: var(--muted); font-size: 13px; }
.doc-body h1, .legal h1, .status-page h1 { margin: 0 0 20px; font-size: clamp(36px, 5vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.doc-body h2, .legal h2 { margin: 40px 0 13px; padding-bottom: 9px; border-bottom: 1px solid var(--border); font-size: 20px; }
.doc-body p, .legal p, .legal li { color: var(--text-soft); }
.doc-body pre, .code-block { padding: 19px; border: 1px solid var(--border); border-radius: 11px; overflow-x: auto; color: #afbbcf; background: #07111e; font-size: 12px; }
.doc-tbl, .status-tbl { margin: 20px 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.doc-tbl th, .doc-tbl td, .status-tbl th, .status-tbl td { padding: 13px 15px; border-bottom: 1px solid var(--border); color: var(--text-soft); text-align: left; font-size: 12px; }
.doc-tbl th, .status-tbl th { color: var(--text); background: rgba(255,255,255,.02); }
.contact-grid { margin: 35px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-grid > div { padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-soft); }
.muted { color: var(--muted); }
.status-pill { margin: 8px 0 25px; padding: 8px 13px; border: 1px solid rgba(78, 224, 161, .28); border-radius: 999px; display: inline-flex; color: var(--green); background: rgba(78, 224, 161, .08); font-size: 12px; }
.dot, .status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(78, 224, 161, .45); }
.dot { margin-right: 7px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #040911; }
.footer-shell { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; padding-block: 67px 55px; display: grid; grid-template-columns: 2.1fr repeat(3, 1fr); gap: 65px; }
.footer-brand { margin-bottom: 17px; }
.footer-lead p { max-width: 330px; margin: 0 0 21px; color: var(--muted); font-size: 13px; }
.company-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.footer-title { margin-bottom: 15px; color: var(--text-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.footer-column a, .footer-column > span { display: block; padding: 4px 0; color: var(--faint); font-size: 12px; }
.footer-column a:hover { color: var(--text-soft); }
.footer-bottom { width: min(calc(100% - 48px), var(--max-width)); min-height: 65px; margin-inline: auto; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #455167; font-size: 10px; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav .nav-secondary { display: none; }
  .site-nav .nav-primary { margin-left: 0; }
  .hero { grid-template-columns: 1fr 440px; gap: 42px; }
  .hero h1 { font-size: 62px; }
  .workflow-section { padding: 75px 40px; gap: 45px; }
  .footer-shell { gap: 38px; }
}

@media (max-width: 900px) {
  .section-block { padding-block: 90px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 73px 0 auto; height: calc(100vh - 73px); padding: 28px 24px; display: none; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(5, 11, 20, .98); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 13px 10px; font-size: 16px; }
  .site-nav .nav-secondary, .site-nav .nav-primary { display: flex; margin: 8px 0 0; min-height: 48px; }
  .hero { padding-block: 88px 150px; grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 710px; }
  .hero-console { width: min(100%, 610px); margin-inline: auto; transform: none; }
  .signal-grid { padding-block: 22px; grid-template-columns: repeat(3, 1fr); }
  .signal-grid span { grid-column: 1 / -1; text-align: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }
  .workflow-section { grid-template-columns: 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .home-plan-grid, .pricing-grid { grid-template-columns: 1fr; max-width: 610px; margin-inline: auto; }
  .home-plan-card { min-height: 390px; }
  .pricing-card { min-height: 540px; }
  .final-cta { padding: 52px 40px; display: block; }
  .final-cta .hero-actions { margin-top: 28px; }
  .faq-section { grid-template-columns: 1fr; gap: 15px; }
  .docs { grid-template-columns: 1fr; }
  .doc-toc { position: static; }
  .footer-shell { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-lead { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section-shell, .nav-shell, .footer-shell, .footer-bottom, .docs, .legal, .status-page { width: min(calc(100% - 32px), var(--max-width)); }
  .nav-shell { min-height: 66px; }
  .site-nav { top: 67px; height: calc(100vh - 67px); }
  .hero { min-height: auto; padding-block: 72px 135px; }
  .hero h1 { font-size: clamp(47px, 15vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; gap: 10px; }
  .hero-console { border-radius: 15px; }
  .console-file { display: none; }
  .console-body { padding-inline: 8px; font-size: 10px; overflow-x: auto; }
  .code-line { grid-template-columns: 24px minmax(370px, 1fr); }
  .route-card { width: calc(100% - 24px); left: 12px; bottom: -95px; padding: 14px; }
  .route-metrics div { padding-left: 8px; }
  .route-metrics strong { font-size: 8px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .section-block { padding-block: 75px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .workflow-copy h2, .final-cta h2 { font-size: 36px; }
  .section-heading p, .workflow-copy > p, .final-cta p { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; min-height: 440px; }
  .mini-stack { width: auto; left: 26px; right: 26px; }
  .workflow-section { width: calc(100% - 16px); padding: 60px 22px; border-radius: 19px; }
  .developer-panel pre { min-height: 360px; padding: 22px 17px; font-size: 10px; }
  .code-tabs { overflow-x: auto; }
  .home-plan-card, .pricing-card { padding: 27px 23px; }
  .final-cta { margin-bottom: 80px; padding: 42px 24px; }
  .page-hero { padding-block: 78px 50px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero > p { font-size: 16px; }
  .pricing-section { padding-bottom: 75px; }
  .payment-strip { grid-template-columns: 1fr; }
  .stripe-wordmark { padding: 0 0 14px; border-right: 0; border-bottom: 1px solid var(--border); }
  .payment-pills { flex-wrap: wrap; }
  .comparison-section { padding-bottom: 80px; }
  .faq-section { padding-bottom: 85px; }
  .result-page { padding-block: 55px 80px; }
  .result-card { padding: 38px 20px; }
  .progress-track { grid-template-columns: 1fr; gap: 10px; }
  .progress-line { width: 1px; height: 15px; margin: -5px 0 -5px 14px; }
  .receipt-card dl > div { grid-template-columns: 1fr; gap: 4px; }
  .receipt-card dd { text-align: left; }
  .result-actions { display: grid; }
  .result-actions .button { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-shell { padding-block: 50px 42px; grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-lead { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 20px; display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
