@import url('/assets/fonts/fonts.css');

/* ===========================================================================
   Octulus — modern SaaS treatment, matching the visual language the client
   specified (saskiai.com): indigo/violet brand, light slate ground, centred
   hero, rounded soft-shadow cards, pill buttons.

   Layout conventions are shared industry patterns; all copy, assets and code
   here are Octulus's own.
   =========================================================================== */

:root {
  color-scheme: light;

  --paper:        #F6F8FC;
  --surface:      #FFFFFF;
  --surface-sunk: #EEF2F9;

  --ink:          #0F1A2A;
  --body:         #4A5568;
  --muted:        #7A889C;

  --line:         #E3E9F2;
  --line-strong:  #CBD5E3;

  --brand:        #5243E9;
  --brand-dark:   #4335CC;
  --brand-wash:   #EDEBFE;
  --violet:       #8B5CF6;
  --pink:         #EC4899;

  --accent:       #5243E9;
  --accent-wash:  #EDEBFE;

  --grad: linear-gradient(135deg, #5243E9 0%, #8B5CF6 55%, #A855F7 100%);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 42, .06);
  --shadow:    0 4px 16px rgba(15, 26, 42, .07), 0 1px 3px rgba(15, 26, 42, .05);
  --shadow-lg: 0 24px 56px -16px rgba(82, 67, 233, .26), 0 8px 24px -12px rgba(15, 26, 42, .10);

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --measure: 62ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  text-wrap: balance;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.35rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 760px; }
.measure { max-width: var(--measure); }

/* ---------- navigation ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, .85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 22px; }

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 18.5px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink);
}
.logo:hover { text-decoration: none; color: var(--ink); }
.logo svg { display: block; }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 500; }
/* :not(.btn) matters — `.nav-links a` outranks `.btn-primary` on specificity and
   would otherwise repaint the CTA label grey-on-jade. */
.nav-links a:not(.btn) { color: var(--body); }
.nav-links a:not(.btn):hover { color: var(--ink); text-decoration: none; }
@media (max-width: 800px) { .hide-sm { display: none !important; } }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  padding: 13px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 20px -6px rgba(82,67,233,.55); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(82,67,233,.6); }

.btn-accent { background: var(--grad); color: #fff; box-shadow: 0 6px 20px -6px rgba(82,67,233,.55); }
.btn-accent:hover { color: #fff; transform: translateY(-2px); }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--surface-sunk); color: var(--ink); border-color: var(--muted); }

.btn-sm { padding: 9px 16px; font-size: 14.5px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- eyebrow / tags ---------- */

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-wash);
  padding: 6px 12px; border-radius: 100px;
}
.tag.accent { color: var(--accent); background: var(--accent-wash); }
.tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.kicker {
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}

/* ---------- sections ---------- */

section { padding: 82px 0; }
section.tight { padding: 56px 0; }
section.surface { background: var(--surface); border-block: 1px solid var(--line); }

.head { max-width: 660px; margin-bottom: 48px; }
.head.center { margin-inline: auto; text-align: center; }
.head p { font-size: 17.5px; color: var(--body); margin: 0; }

/* ---------- hero ---------- */

.hero { padding: 84px 0 0; text-align: center; }
.hero .lede {
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  color: var(--body); max-width: 620px; margin: 0 auto 30px;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 20px; font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  letter-spacing: .01em;
}

/* ---------- screenshot frames ---------- */

.shot {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-strong); background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.shot img { display: block; width: 100%; height: auto; }
.shot-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: var(--surface-sunk); border-bottom: 1px solid var(--line);
}
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); display: block; }
.shot-bar .url {
  flex: 1; text-align: center; font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); letter-spacing: .02em;
}
.hero-shot { margin-top: 52px; position: relative; }
.hero-shot::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 140px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.shot-caption {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  margin-top: 12px; text-align: center; letter-spacing: .02em;
}

/* ---------- stat band ---------- */

.band { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.band > div { background: var(--paper); padding: 26px 22px; text-align: center; }
.band b { display: block; font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.035em; line-height: 1.1; }
.band span { font-size: 14px; color: var(--muted); }

/* ---------- alternating feature rows ---------- */

.row {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center;
  margin-bottom: 92px;
}
.row:last-child { margin-bottom: 0; }
.row.flip .row-text { order: 2; }
@media (max-width: 900px) {
  .row { grid-template-columns: 1fr; gap: 34px; margin-bottom: 64px; }
  .row.flip .row-text { order: 0; }
}
.row-text h2 { font-size: clamp(1.5rem, 3vw, 1.95rem); }
.row-text p { font-size: 16.5px; }
.row-list { list-style: none; padding: 0; margin: 22px 0 0; }
.row-list li {
  position: relative; padding: 7px 0 7px 30px; font-size: 15.5px; color: var(--body);
}
.row-list li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--brand);
}

/* ---------- cards ---------- */

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px; box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card p { font-size: 15px; margin: 0; }
.card .num {
  font-family: var(--mono); font-size: 12.5px; font-weight: 500; color: var(--brand);
  letter-spacing: .08em; display: block; margin-bottom: 12px;
}

/* ---------- code ---------- */

pre, code { font-family: var(--mono); }
pre {
  background: var(--ink); color: #DCE5E1; border-radius: var(--r);
  padding: 18px 20px; overflow-x: auto; font-size: 13px; line-height: 1.65;
  margin: 0; border: 1px solid var(--ink);
}
pre .c { color: #8AA79C; }
pre .s { color: #A8D8B9; }
pre .k { color: #F0A882; }
code.inline {
  background: var(--surface-sunk); color: var(--ink); border: 1px solid var(--line);
  padding: 1px 6px; border-radius: 5px; font-size: .875em;
}

/* ---------- pricing ---------- */

.plans { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: start; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.plan.featured { border-color: var(--brand); border-width: 1.5px; position: relative; }
.plan .plan-tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 10px; display: block;
}
.plan .price { font-size: 2.4rem; font-weight: 700; color: var(--ink); letter-spacing: -0.04em; line-height: 1.1; margin: 8px 0 4px; }
.plan .price span { font-size: .9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan .note { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; min-height: 44px; }
.plan .btn { width: 100%; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 0; }
.plan li { position: relative; padding: 6px 0 6px 26px; font-size: 14.8px; }
.plan li::before {
  content: ""; position: absolute; left: 2px; top: 13px; width: 11px; height: 6px;
  border-left: 1.8px solid var(--brand); border-bottom: 1.8px solid var(--brand);
  transform: rotate(-45deg);
}

/* ---------- tables ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 540px; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
th {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); background: var(--surface-sunk);
}
td { color: var(--body); }
tr:last-child td { border-bottom: 0; }

/* ---------- faq ---------- */

details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  gap: 20px; font-weight: 600; color: var(--ink); font-size: 16.5px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; margin-top: 7px;
  border-right: 1.8px solid var(--muted); border-bottom: 1.8px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(-135deg); margin-top: 11px; }
details p { margin: 12px 0 0; font-size: 15.5px; }

/* ---------- forms ---------- */

input[type="text"], input[type="url"], input[type="email"], textarea, select {
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 12px 15px; width: 100%; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-wash); }
label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }

/* ---------- prose ---------- */

.prose h2 { margin-top: 44px; font-size: 1.55rem; }
.prose h3 { margin-top: 30px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose pre { margin: 16px 0; }

/* ---------- footer ---------- */

.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 30px; }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1.7fr repeat(3, 1fr); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted); margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.foot-grid a { color: var(--body); font-size: 15px; }
.foot-grid a:hover { color: var(--brand); }
.foot-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 14px; color: var(--muted);
}

/* ---------- utility ---------- */

.center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }
.badge {
  display: inline-block; font-family: var(--mono); font-size: 11.5px;
  padding: 2px 8px; border-radius: 5px; background: var(--surface-sunk); color: var(--muted);
}
.badge.ok { background: var(--brand-wash); color: var(--brand); }

/* ---------- scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

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

/* ===========================================================================
   Homepage — product-led layout.
   Deliberately avoids the SaaS template: no centred hero, no eyebrow pill,
   no stat band, no card triptych, no FAQ accordion. The agent itself is the
   hero, and evidence is rendered as real text rather than screenshots.
   =========================================================================== */

.topbar { border-bottom: 1px solid var(--line); background: var(--paper); }
.topbar-in { display: flex; align-items: baseline; justify-content: space-between;
             gap: 24px; padding: 22px 0; }
.topbar-links { display: flex; gap: 22px; font-family: var(--mono); font-size: 13px;
                letter-spacing: .02em; }
.topbar-links a { color: var(--muted); }
.topbar-links a:hover { color: var(--ink); text-decoration: none; }

/* Split hero: narrow text column, agent runs to the right viewport edge. */
.hero-split {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 76px 0 88px;
  padding-left: max(26px, calc((100vw - var(--maxw)) / 2 + 26px));
}
@media (max-width: 1000px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 52px 26px 60px; }
}

.hero-split h1 {
  font-size: clamp(1.95rem, 3.5vw, 2.85rem);
  letter-spacing: -0.035em; line-height: 1.12; margin-bottom: 22px;
}
.hero-split .say { font-size: 17px; color: var(--body); margin-bottom: 26px; }
.hero-split .say + .say { margin-top: -8px; }

.agent-slot {
  border: 1px solid var(--line-strong); border-right: 0;
  border-radius: var(--r) 0 0 var(--r);
  background: var(--surface); overflow: hidden; min-height: 520px;
}
@media (max-width: 1000px) {
  .agent-slot { border-right: 1px solid var(--line-strong); border-radius: var(--r); }
}
.agent-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--surface-sunk);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted);
}
.agent-head b { color: var(--brand); font-weight: 500; }

.try-own { margin-top: 20px; }
.try-own label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .07em;
                 text-transform: uppercase; color: var(--muted); font-weight: 400; }
.try-own .field { display: flex; gap: 9px; margin-top: 9px; }
.try-own input { flex: 1; min-width: 0; font-size: 14.5px; padding: 10px 13px; }
.try-own .st { font-family: var(--mono); font-size: 12px; color: var(--muted);
               margin: 10px 0 0; min-height: 18px; }
.try-own .st.err { color: var(--accent); }

/* Real transcript, rendered as selectable text. */
.transcript { border-top: 1px solid var(--line); padding-top: 26px; }

.t-turn + .t-turn { margin-top: 26px; }
.t-role { font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
          text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.t-turn.ask p { font-size: 17.5px; color: var(--ink); font-weight: 500; margin: 0; }
.t-turn.say p { font-size: 16px; color: var(--body); margin: 0 0 .7em; }
.t-turn.say p:last-child { margin-bottom: 0; }
.t-cite { font-family: var(--mono); font-size: 11px; color: var(--brand);
          background: var(--brand-wash); border-radius: 4px; padding: 1px 5px;
          vertical-align: baseline; }
.t-note { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 20px; }

/* Datasheet — replaces the usual three feature cards. */
.spec { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.spec th, .spec td { text-align: left; padding: 15px 0; border-bottom: 1px solid var(--line);
                     vertical-align: top; }
.spec th { font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: .05em;
           text-transform: uppercase; color: var(--muted); width: 210px; background: none; }
.spec td { color: var(--body); }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
@media (max-width: 620px) {
  .spec th, .spec td { display: block; width: auto; padding: 4px 0; border: 0; }
  .spec tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
}

.flow { font-family: var(--mono); font-size: 13.5px; color: var(--body);
        background: var(--surface-sunk); border: 1px solid var(--line);
        border-radius: var(--r-sm); padding: 15px 18px; overflow-x: auto; white-space: nowrap; }
.flow b { color: var(--brand); font-weight: 500; }

.install-line { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 20px; }

.asks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.asks button {
  font-family: var(--mono); font-size: 12px; color: var(--body);
  background: none; border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 6px 13px; cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.asks button:hover { border-color: var(--brand); color: var(--brand); }

/* ===========================================================================
   Annotated document
   Superscript marks bind claims on this page to real, checkable sources, the
   same contract the product makes to visitors. The apparatus at the foot is
   the payoff — it is not decoration, every mark resolves to something you can
   open and verify.
   =========================================================================== */

.doc { max-width: var(--measure); }
.doc p { font-size: 17.5px; line-height: 1.7; }

.ref {
  font-family: var(--mono); font-size: .62em; font-weight: 500;
  vertical-align: super; line-height: 0;
  color: var(--accent); text-decoration: none;
  padding: 0 .12em;
}
.ref:hover { color: var(--paper); background: var(--accent); text-decoration: none; }
.ref:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.sources { border-top: 1px solid var(--line-strong); margin-top: 8px; padding-top: 22px; }
.sources h2 {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.sources ol { list-style: none; counter-reset: src; padding: 0; margin: 0; }
.sources li {
  counter-increment: src; position: relative; padding: 9px 0 9px 38px;
  font-size: 15px; border-bottom: 1px solid var(--line);
}
.sources li:last-child { border-bottom: 0; }
.sources li::before {
  content: counter(src); position: absolute; left: 0; top: 11px;
  font-family: var(--mono); font-size: 11.5px; color: var(--accent);
}
.sources li:target { background: var(--accent-wash); }

/* Right-hand margin rail, in the manner of a critical edition. */
.ruled { display: grid; grid-template-columns: minmax(0, var(--measure)) 1fr; gap: 46px; }
@media (max-width: 900px) { .ruled { grid-template-columns: 1fr; gap: 22px; } }
.rail {
  font-family: var(--mono); font-size: 12px; line-height: 1.75; color: var(--muted);
  border-left: 1px solid var(--line); padding-left: 20px; align-self: start;
}
@media (max-width: 900px) { .rail { border-left: 0; border-top: 1px solid var(--line);
                                    padding-left: 0; padding-top: 14px; } }
.rail b { display: block; color: var(--ink); font-family: var(--sans); font-size: 14.5px;
          font-weight: 500; margin-bottom: 3px; }
.rail p + b { margin-top: 16px; }

.lede-doc { font-size: 20px; line-height: 1.6; color: var(--body); }

.figure { margin: 0; }
.figcap {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-top: 12px;
}

.logo svg { color: var(--ink); }
.logo .mk { fill: var(--accent); }

/* ---------- reference-style components ---------- */

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-wash); color: var(--brand);
  font-size: 13.5px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
}
.hero-c { text-align: center; padding: 78px 0 66px; }
.hero-c h1 { max-width: 16ch; margin-inline: auto; }
.hero-c .sub { font-size: 19px; color: var(--body); max-width: 640px; margin: 20px auto 32px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.glow { position: relative; }
.glow::before {
  content: ""; position: absolute; inset: -12% 12% 55% 12%; z-index: -1;
  background: radial-gradient(60% 60% at 50% 40%, rgba(139,92,246,.22), transparent 70%);
  filter: blur(42px); pointer-events: none;
}

.ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-wash); color: var(--brand); margin-bottom: 16px;
}
.ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9;
           stroke-linecap: round; stroke-linejoin: round; }

.band-cta {
  background: var(--grad); border-radius: var(--r-lg); padding: 54px 40px; text-align: center;
  color: #fff; box-shadow: var(--shadow-lg);
}
.band-cta h2 { color: #fff; }
.band-cta p { color: rgba(255,255,255,.9); font-size: 17.5px; max-width: 560px; margin: 12px auto 26px; }
.band-cta .btn-ghost { background: #fff; color: var(--brand); border-color: #fff; }
.band-cta .btn-ghost:hover { background: rgba(255,255,255,.9); color: var(--brand); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.flip .split-text { order: 2; }
@media (max-width: 900px) { .split.flip .split-text { order: 0; } }
.checks { list-style: none; padding: 0; margin: 22px 0 0; }
.checks li { position: relative; padding: 8px 0 8px 32px; font-size: 16px; color: var(--body); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 15px; width: 11px; height: 6px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.hero-figure { margin: 50px auto 0; max-width: 880px; }
.hero-figure img { display: block; width: 100%; height: auto; border-radius: var(--r-lg); }
.shot img { display: block; width: 100%; height: auto; }
