:root {
  --ink: #f5f6f8;
  --muted: #b4b8c0;
  --soft: #858b96;
  --canvas: #121315;
  --panel: #1b1d20;
  --panel-2: #23262a;
  --line: #35383d;
  --blue: #4b82ef;
  --blue-2: #83aaff;
  --cyan: #ffb000;
  --green: #39cf91;
  --amber: #ffc14f;
  --danger: #ff7d8d;
  --shadow: 0 28px 70px rgba(0, 0, 0, .28);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -10%, rgba(75, 130, 239, .16), transparent 34rem),
    radial-gradient(circle at 8% 35%, rgba(255, 176, 0, .07), transparent 28rem),
    var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: .75rem 1rem;
  border-radius: .6rem;
  color: #06101d;
  background: var(--cyan);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 860px); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-tight { padding: 3.25rem 0; }
.surface { background: rgba(27, 29, 32, .88); border-block: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(53, 56, 61, .9);
  background: rgba(18, 19, 21, .92);
  backdrop-filter: blur(18px);
}
.topline {
  border-bottom: 1px solid rgba(53, 56, 61, .65);
  color: var(--muted);
  font-size: .83rem;
}
.topline .container { display: flex; justify-content: space-between; gap: 1rem; padding-block: .55rem; }
.topline strong { color: var(--amber); }
.nav-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo { display: block; width: 235px; max-width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a { padding: .6rem .72rem; border-radius: .65rem; color: var(--muted); font-size: .92rem; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); background: rgba(255,255,255,.055); }
.nav-cta { color: #141414 !important; background: var(--cyan) !important; margin-left: .4rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: .75rem;
  color: var(--ink);
  background: var(--panel);
  cursor: pointer;
}

.eyebrow { margin: 0 0 .8rem; color: var(--cyan); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 900px; font-size: clamp(2.55rem, 7vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.18rem; }
.lead { max-width: 720px; margin: 1.25rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero { padding: clamp(4rem, 9vw, 7.5rem) 0 4.5rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 3rem; align-items: center; }
.hero h1 em { color: var(--blue-2); font-style: normal; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: .8rem;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #17130a; background: linear-gradient(135deg, #ffb000, #ffd269); }
.button-secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.035); }
.button-small { min-height: 42px; padding: .6rem .85rem; font-size: .9rem; }
.button-block { width: 100%; }

.command-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid #4a4438;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(37, 39, 43, .98), rgba(22, 23, 25, .98));
  box-shadow: var(--shadow);
}
.command-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,176,0,.08); }
.command-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.status { display: inline-flex; align-items: center; gap: .45rem; color: var(--muted); font-size: .82rem; font-weight: 700; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 4px rgba(68,221,162,.09); }
.path-list { display: grid; gap: .75rem; margin-top: 1rem; }
.path {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid transparent;
  border-radius: .8rem;
  background: rgba(255,255,255,.035);
}
.path:hover { border-color: var(--line); background: rgba(255,255,255,.055); }
.path-num { display: grid; place-items: center; width: 38px; height: 38px; border-radius: .65rem; color: var(--blue-2); background: rgba(79,140,255,.12); font-weight: 900; }
.path strong { display: block; font-size: .95rem; }
.path small { color: var(--soft); font-size: .78rem; }
.path-arrow { color: var(--cyan); }

.promo-console {
  overflow: hidden;
  border: 1px solid #4a4438;
  border-radius: 22px;
  background: #1a1b1e;
  box-shadow: var(--shadow);
}
.console-bar {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem .85rem;
  border-bottom: 1px solid var(--line);
  background: #24262a;
}
.console-name { display: inline-flex; align-items: center; gap: .5rem; color: #d8dbe1; font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.console-name::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(255,176,0,.1); }
.console-dots { display: flex; gap: .45rem; }
.console-dot { width: 28px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: #494c52; cursor: pointer; }
.console-dot.is-active { background: var(--amber); }
.promo-stage { min-height: 420px; position: relative; }
.promo-slide { display: none; min-height: 420px; padding: 1.4rem; }
.promo-slide.is-active { display: flex; flex-direction: column; justify-content: space-between; }
.promo-kicker { color: var(--amber); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.promo-slide h2 { max-width: 470px; margin-top: .65rem; font-size: clamp(1.8rem, 3.2vw, 2.65rem); }
.promo-slide p { max-width: 470px; margin: .85rem 0 0; color: var(--muted); }
.workbench-tabs { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.25rem 0; }
.workbench-tabs span { padding: .42rem .58rem; border: 1px solid var(--line); border-radius: .45rem; color: #c8ccd3; background: #222428; font-size: .72rem; font-weight: 800; }
.workbench-tabs span:first-child { color: #17130a; border-color: var(--amber); background: var(--amber); }
.promo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; margin-top: 1.3rem; }
.promo-metric { padding: .7rem; border: 1px solid var(--line); border-radius: .65rem; background: #202226; }
.promo-metric strong { display: block; color: var(--ink); font-size: .95rem; }
.promo-metric span { color: var(--soft); font-size: .68rem; }
.promo-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.promo-bottom small { color: var(--soft); }

.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.resource-tile { padding: 1rem; border: 1px solid var(--line); border-radius: .85rem; background: rgba(255,255,255,.025); }
.resource-tile:hover { border-color: #5b5140; background: rgba(255,176,0,.045); }
.resource-tile strong { display: block; margin-bottom: .25rem; color: var(--ink); }
.resource-tile span { color: var(--soft); font-size: .8rem; }
.resource-tile b { display: block; margin-bottom: .65rem; color: var(--amber); font-size: .72rem; letter-spacing: .09em; }

.support-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 50px;
  padding: .65rem .9rem;
  border: 1px solid rgba(57,207,145,.45);
  border-radius: 999px;
  color: #ecfff7;
  background: #163c30;
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  font-size: .88rem;
  font-weight: 850;
}
.support-dock::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(57,207,145,.14); }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.2rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { color: var(--muted); font-size: .83rem; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(17, 32, 52, .86), rgba(10, 20, 34, .86));
}
.card:hover { border-color: #36517a; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.2rem; border-radius: .75rem; color: var(--cyan); background: rgba(36,210,229,.09); font-weight: 900; }
.card h3 { margin-bottom: .55rem; }
.card p { margin: 0; color: var(--muted); }
.card-link { display: inline-flex; margin-top: 1rem; color: var(--blue-2); font-weight: 800; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.plan { position: relative; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.plan.featured { border-color: var(--blue); box-shadow: 0 18px 55px rgba(79,140,255,.12); }
.plan-badge { position: absolute; top: 1rem; right: 1rem; padding: .3rem .55rem; border-radius: 999px; color: #06101d; background: var(--cyan); font-size: .7rem; font-weight: 900; }
.plan-duration { margin-top: .65rem; font-size: 2.4rem; font-weight: 900; letter-spacing: -.05em; }
.plan-duration span { font-size: .9rem; color: var(--muted); letter-spacing: 0; }
.plan-list { padding: 0; margin: 1.25rem 0; list-style: none; }
.plan-list li { position: relative; padding: .42rem 0 .42rem 1.35rem; color: var(--muted); }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan-note { color: var(--soft); font-size: .82rem; }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step { counter-increment: step; display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.step::before { content: counter(step, decimal-leading-zero); width: 48px; height: 48px; display: grid; place-items: center; border-radius: .75rem; color: var(--cyan); background: rgba(36,210,229,.09); font-weight: 900; }
.step p { margin: .35rem 0 0; color: var(--muted); }

.notice { padding: 1rem 1.1rem; border: 1px solid rgba(255,191,105,.35); border-radius: var(--radius-sm); color: #ffe1b8; background: rgba(255,191,105,.07); }
.notice strong { color: var(--amber); }
.notice.info { border-color: rgba(79,140,255,.38); color: #cbdcff; background: rgba(79,140,255,.08); }

.page-hero { padding: 4.4rem 0 3.4rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 4.4rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; color: var(--soft); font-size: .82rem; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs span::before { content: "/"; margin-right: .45rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 2rem; align-items: start; }
.sticky-card { position: sticky; top: 110px; }
.checklist { padding: 0; margin: 1rem 0 0; list-style: none; }
.checklist li { position: relative; padding: .55rem 0 .55rem 1.5rem; color: var(--muted); border-bottom: 1px solid rgba(34,52,78,.65); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.form-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { color: #dce6f8; font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  outline: none;
  color: var(--ink);
  background: #091522;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,140,255,.12); }
.field .help { color: var(--soft); font-size: .78rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.result { display: none; margin-top: 1rem; padding: 1rem; border: 1px solid rgba(68,221,162,.34); border-radius: .8rem; background: rgba(68,221,162,.07); }
.result.is-visible { display: block; }
.result p { margin: 0 0 .8rem; color: #c9f7e6; }

.faq { display: grid; gap: .75rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.faq summary { cursor: pointer; padding: 1rem 1.1rem; font-weight: 850; }
.faq details p { margin: 0; padding: 0 1.1rem 1.1rem; color: var(--muted); }

.cta-band { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 2rem; border: 1px solid #34517c; border-radius: 24px; background: linear-gradient(120deg, rgba(79,140,255,.16), rgba(36,210,229,.08)); }
.cta-band p { margin: .5rem 0 0; color: var(--muted); }

.site-footer { padding: 3.5rem 0 1.5rem; border-top: 1px solid var(--line); background: #050c16; }
.site-footer .brand-logo { width: 220px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-about p { max-width: 410px; color: var(--muted); }
.footer-col h3 { margin-bottom: .85rem; font-size: .9rem; letter-spacing: .02em; }
.footer-col a { display: block; width: fit-content; margin: .45rem 0; color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--soft); font-size: .8rem; }

:focus-visible { outline: 3px solid rgba(36,210,229,.65); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .command-card { max-width: 680px; }
  .grid-3, .plans { grid-template-columns: repeat(2, 1fr); }
  .plan:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
  .sticky-card { position: static; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .topline .container { justify-content: center; text-align: center; }
  .topline span:last-child { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .55rem);
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #0a1625;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: .8rem; }
  .nav-cta { margin: .3rem 0 0; }
  .hero { padding-top: 3.5rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3, .grid-2, .plans, .field-grid { grid-template-columns: 1fr; }
  .plan:last-child { grid-column: auto; }
  .section-head, .cta-band { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .promo-stage, .promo-slide { min-height: 390px; }
}

@media (max-width: 520px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max)); }
  .section { padding: 4rem 0; }
  .hero h1 { font-size: 2.55rem; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .path { grid-template-columns: 38px 1fr; }
  .path-arrow { display: none; }
  .step { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about, .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .resource-grid, .promo-metrics { grid-template-columns: 1fr; }
  .promo-stage, .promo-slide { min-height: 480px; }
  .support-dock span { display: none; }
  .support-dock { width: 50px; justify-content: center; padding: 0; }
  .brand-logo { width: 185px; }
}

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