/* ============================================================
   InfinityLog — light, professional ISP-compliance identity.
   Navy→teal brand gradient (matches the pricing card) on a clean
   cool-white ground. Committed single light world.
   ============================================================ */

:root {
  --bg:        #F6F8FC;   /* cool-white ground */
  --bg-2:      #EEF2F9;   /* subtle alt band */
  --surface:   #FFFFFF;   /* cards */
  --ink:       #0E1B2E;   /* near-black, blue-biased */
  --ink-2:     #24344B;
  --muted:     #5B6B84;   /* body muted */
  --muted-2:   #8695AD;
  --line:      #E4EAF3;   /* hairlines */
  --line-2:    #D5DEEC;

  --brand:     #1E6BF1;   /* primary blue (CTAs) */
  --brand-dk:  #1553C4;
  --teal:      #14B8A6;   /* accent teal */
  --navy:      #0C1E3A;   /* deep navy (hero ground) */

  --grad:      linear-gradient(118deg, #0C1E3A 0%, #1553C4 46%, #14B8A6 118%);
  --grad-text: linear-gradient(100deg, #1E6BF1, #14B8A6);
  --grad-soft: linear-gradient(120deg, #EAF1FE, #E6F7F4);

  --ok:        #14B8A6;
  --warn:      #E8973A;

  --shadow-sm: 0 1px 2px rgba(14,27,46,.06), 0 2px 8px rgba(14,27,46,.05);
  --shadow-md: 0 8px 30px -12px rgba(14,27,46,.18);
  --shadow-lg: 0 40px 80px -30px rgba(12,30,58,.35);

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);

  --f-display: "Sora", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--f-body); color: var(--ink); background: var(--bg);
  line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
b { font-weight: 700; }
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.kicker { font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); display: inline-block; margin-bottom: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 7px 14px; border-radius: 100px; margin-bottom: 26px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(20,184,166,.6); animation: pulse 2.4s infinite; }

/* buttons */
.btn { --bg: var(--surface); --bd: var(--line-2); --fg: var(--ink); display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-body); font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 100px; border: 1px solid var(--bd); background: var(--bg); color: var(--fg); cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.btn--primary { --bg: var(--brand); --bd: transparent; --fg: #fff; box-shadow: 0 10px 26px -10px rgba(30,107,241,.6); }
.btn--primary:hover { --bg: var(--brand-dk); box-shadow: 0 16px 36px -10px rgba(30,107,241,.7); }
.btn--ghost { --bg: var(--surface); --bd: var(--line-2); --fg: var(--ink); }
.btn--ghost:hover { --bd: var(--brand); color: var(--brand); }
.btn--on-dark { --bg: rgba(255,255,255,.12); --bd: rgba(255,255,255,.28); --fg: #fff; }
.btn--on-dark:hover { --bg: rgba(255,255,255,.2); }
.btn--white { --bg: #fff; --bd: transparent; --fg: var(--navy); }
.btn--lg { padding: 16px 30px; font-size: 16px; }

.stat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); display: inline-block; }
.stat-dot.ok { background: var(--teal); box-shadow: 0 0 8px rgba(20,184,166,.6); }

/* ══ NAV ══ */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(246,248,252,.82); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.9); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: var(--ink); }
.brand__name span { color: var(--brand); }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color .18s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: 10px; }
.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ══ HERO ══ */
.hero { position: relative; background: var(--grad); color: #fff; padding: clamp(52px, 8vw, 92px) 0 clamp(90px, 12vw, 150px); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 340px at 85% 8%, rgba(20,184,166,.35), transparent 60%), radial-gradient(600px 360px at 8% 100%, rgba(30,107,241,.4), transparent 60%); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero h1 { color: #fff; font-size: clamp(36px, 5.6vw, 62px); font-weight: 800; margin-bottom: 20px; }
.hero h1 .grad { background: linear-gradient(100deg, #8FE3FF, #5EEAD4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lede { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.86); max-width: 36ch; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__proof { list-style: none; margin: 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.16); display: flex; gap: clamp(22px, 5vw, 46px); }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof b { font-family: var(--f-display); font-size: 25px; font-weight: 700; color: #fff; }
.hero__proof span { font-size: 12.5px; color: rgba(255,255,255,.7); font-family: var(--f-mono); }

/* live terminal (on hero) */
.term { background: #0A1526; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.term__bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); }
.term__dots { display: inline-flex; gap: 7px; }
.term__dots i { width: 11px; height: 11px; border-radius: 50%; background: #2b3a55; }
.term__dots i:first-child { background: #F76D6D; } .term__dots i:nth-child(2){ background: #F7B955; } .term__dots i:nth-child(3){ background: #35E0C1; }
.term__title { font-family: var(--f-mono); font-size: 12.5px; color: #7f92b0; }
.term__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: #35E0C1; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #35E0C1; animation: pulse 1.6s infinite; }
.term__body { font-family: var(--f-mono); font-size: 12px; line-height: 1.78; padding: 15px; height: 320px; overflow: hidden; position: relative; color: #cdd8ea; }
.term__body::after { content: ""; position: absolute; inset: auto 0 0 0; height: 50px; background: linear-gradient(transparent, #0A1526); pointer-events: none; }
.logline { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; animation: logIn .4s ease; }
.logline .t { color: #657ba0; } .logline .u { color: #35E0C1; } .logline .ip { color: #e7eefa; } .logline .d { color: #8FA6FF; } .logline .m { color: #F7B955; } .logline .p { color: #7f92b0; }
.term__foot { display: flex; flex-wrap: wrap; gap: 14px; padding: 11px 16px; border-top: 1px solid rgba(255,255,255,.08); font-family: var(--f-mono); font-size: 11.5px; color: #7f92b0; }
.term__foot b { color: #e7eefa; }
.term__foot-mono { margin-left: auto; }

/* ══ MARQUEE / TRUST ══ */
.marquee { padding: 30px 0; background: var(--surface); border-bottom: 1px solid var(--line); margin-top: -60px; position: relative; z-index: 2; border-radius: 20px 20px 0 0; }
.marquee .wrap { position: relative; }
.marquee__label { text-align: center; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.marquee__track { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__row { display: flex; gap: 46px; width: max-content; animation: scroll-x 42s linear infinite; }
.marquee__row span { font-family: var(--f-display); font-weight: 600; font-size: 17px; color: var(--muted); white-space: nowrap; }
.marquee:hover .marquee__row { animation-play-state: paused; }

/* ══ SECTIONS ══ */
.section { padding: clamp(60px, 8vw, 108px) 0; }
.section--alt { background: var(--bg-2); }
.section--tint { background: var(--surface); }
.section__head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 58px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: clamp(15px, 1.4vw, 17.5px); }

/* features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feat--wide { grid-column: span 2; }
.feat__ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); color: var(--brand); font-size: 22px; margin-bottom: 18px; }
.feat h3 { font-size: 19px; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: 14.5px; }

/* portal suite */
.portals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portal { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.portal:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portal::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--grad-text); }
.portal__badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.portal h3 { font-size: 17.5px; margin-bottom: 8px; }
.portal p { color: var(--muted); font-size: 14px; }
.portal__apps { margin-top: 14px; font-family: var(--f-mono); font-size: 11.5px; color: var(--muted-2); }

/* app screenshots */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.shot { grid-column: span 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.shot--wide { grid-column: span 2; }
.shot__bar { display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.shot__bar i { width: 10px; height: 10px; border-radius: 50%; background: #cdd6e5; display: inline-block; }
.shot__bar i:first-child { background: #F87171; } .shot__bar i:nth-child(2){ background: #FBBF24; } .shot__bar i:nth-child(3){ background: #34D399; }
.shot__url { margin-left: 8px; font-family: var(--f-mono); font-size: 12px; color: var(--muted-2); }
.shot__cap { padding: 16px 20px; border-top: 1px solid var(--line); }
.shot__cap h4 { font-size: 16px; margin-bottom: 5px; }
.shot__cap p { color: var(--muted); font-size: 13.5px; }
.shot__body { padding: 18px; }

/* mock: dashboard */
.mtiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mtile { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.mtile span { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); }
.mtile b { display: block; font-family: var(--f-display); font-size: 22px; font-weight: 700; margin-top: 6px; color: var(--ink); }
.mtile b em { font-style: normal; color: var(--teal); font-size: 13px; }
.mchart { margin-top: 14px; height: 120px; display: flex; align-items: flex-end; gap: 4px; padding: 12px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; }
.mbar { flex: 1; background: var(--grad-text); border-radius: 4px 4px 0 0; min-height: 6px; opacity: .85; }

/* mock: log table */
.mtable { width: 100%; border-collapse: collapse; font-family: var(--f-mono); font-size: 12px; }
.mtable th { text-align: left; color: var(--muted-2); font-weight: 500; font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.mtable td { padding: 8px 10px; border-bottom: 1px solid var(--line); color: var(--ink-2); white-space: nowrap; }
.mtable td .u { color: var(--brand); } .mtable td .d { color: var(--teal); }
.mtable tr:last-child td { border-bottom: 0; }
/* mock: search filters */
.mfilters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.mchip { font-family: var(--f-mono); font-size: 11.5px; padding: 6px 12px; border-radius: 8px; background: var(--grad-soft); color: var(--brand-dk); border: 1px solid var(--line); }
.mchip b { color: var(--ink); }

/* pipeline */
.pipe { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pipe__step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.pipe__step::before { content: ""; position: absolute; top: 46px; right: -18px; width: 18px; height: 2px; background: var(--line-2); z-index: 1; }
.pipe__step:last-child::before { display: none; }
.pipe__n { font-family: var(--f-mono); font-size: 13px; color: var(--brand); letter-spacing: .1em; font-weight: 700; }
.pipe__step h3 { font-size: 18px; margin: 14px 0 8px; }
.pipe__step p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.pipe__step code { display: block; font-family: var(--f-mono); font-size: 11.5px; color: var(--brand-dk); background: var(--grad-soft); border: 1px solid var(--line); border-radius: 8px; padding: 9px 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* perf band */
.perf { padding: clamp(60px, 8vw, 100px) 0; background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.perf::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 90%, rgba(20,184,166,.3), transparent 60%); pointer-events: none; }
.perf__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.perf__lead h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); margin: 14px 0 16px; }
.perf__lead .kicker { color: #7ee7dd; }
.perf__lead p { color: rgba(255,255,255,.82); margin-bottom: 26px; max-width: 44ch; }
.perf__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pstat { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 24px; backdrop-filter: blur(4px); }
.pstat b { font-family: var(--f-display); font-size: clamp(32px, 4vw, 44px); font-weight: 800; display: block; line-height: 1; color: #fff; letter-spacing: -.03em; }
.pstat b span { font-size: 15px; color: #7ee7dd; font-weight: 600; margin-left: 4px; }
.pstat p { color: rgba(255,255,255,.78); font-size: 13.5px; margin-top: 12px; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; position: relative; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pcard--feat { border: 0; box-shadow: var(--shadow-lg); }
.pcard--feat::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 2px; background: var(--grad-text); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.pcard__tag { position: absolute; top: -11px; left: 28px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; background: var(--grad-text); color: #fff; padding: 4px 11px; border-radius: 100px; font-weight: 700; }
.pcard__name { font-family: var(--f-display); font-weight: 700; font-size: 18px; }
.pcard__users { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.pcard__price { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.pcard__price b { font-family: var(--f-display); font-size: 34px; font-weight: 800; letter-spacing: -.03em; }
.pcard__price em { font-style: normal; color: var(--muted); font-size: 14px; font-family: var(--f-mono); }
.pcard__inst { font-size: 13px; color: var(--muted-2); font-family: var(--f-mono); }
.pcard__foot { margin-top: auto; padding-top: 22px; }
.pcard .btn { width: 100%; justify-content: center; }

/* per-package system requirements */
.pspec { margin-top: 18px; border-top: 1px solid var(--line); }
.pspec summary { list-style: none; cursor: pointer; padding: 14px 0 4px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; color: var(--brand); display: flex; align-items: center; gap: 8px; user-select: none; }
.pspec summary::-webkit-details-marker { display: none; }
.pspec summary::before { content: "＋"; font-family: var(--f-mono); color: var(--muted-2); transition: transform .2s; }
.pspec[open] summary::before { content: "－"; }
.pspec summary:hover { color: var(--brand-dk); }
.pspec__list { list-style: none; margin: 6px 0 4px; padding: 0; }
.pspec__list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.pspec__list li:last-child { border-bottom: 0; }
.pspec__list span { color: var(--muted-2); font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; padding-top: 2px; }
.pspec__list b { text-align: right; color: var(--ink-2); }

.spec-note { margin-top: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm); }
.spec-note__head { margin-bottom: 20px; }
.spec-note__head p { color: var(--muted); font-size: 14.5px; }
.spec-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; }
.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.spec-list li:last-child { border-bottom: 0; }
.spec-list span { color: var(--muted-2); font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding-top: 2px; }
.spec-list b { text-align: right; }
.spec-list em { color: var(--teal); font-style: normal; font-family: var(--f-mono); font-size: 12px; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__img { height: 150px; background: var(--grad); position: relative; overflow: hidden; }
.post__img::after { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 160px at 80% 20%, rgba(20,184,166,.5), transparent 60%); }
.post__img span { position: absolute; left: 18px; bottom: 16px; z-index: 1; font-family: var(--f-mono); font-size: 11px; color: rgba(255,255,255,.9); letter-spacing: .08em; text-transform: uppercase; }
.post__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-family: var(--f-mono); font-size: 11.5px; color: var(--muted-2); margin-bottom: 10px; }
.post h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.28; }
.post p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.post__more { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--brand); }

/* compliance */
.comp__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 58px); align-items: center; }
.comp__copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 14px 0 18px; }
.comp__copy > p { color: var(--muted); margin-bottom: 24px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--ink-2); font-size: 15px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 6px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.comp__card { background: #0A1526; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.comp__card-bar { font-family: var(--f-mono); font-size: 12.5px; color: #7f92b0; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.comp__card-body { font-family: var(--f-mono); font-size: 13px; line-height: 2; margin: 0; padding: 20px 18px; color: #e7eefa; overflow-x: auto; }
.c-mut { color: #657ba0; } .c-key { color: #7f92b0; } .c-sig { color: #35E0C1; } .c-ok { color: #35E0C1; }

/* stats band */
.stat-band { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.statb { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.statb b { font-family: var(--f-display); font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; display: block; letter-spacing: -.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statb span { color: var(--muted); font-size: 12.5px; font-family: var(--f-mono); }

/* CTA */
.cta { padding: clamp(56px, 8vw, 92px) 0; }
.cta__inner { position: relative; text-align: center; background: var(--grad); color: #fff; border-radius: 28px; padding: clamp(44px, 6vw, 74px) var(--pad); overflow: hidden; box-shadow: var(--shadow-lg); }
.cta__inner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 50% 0, rgba(20,184,166,.35), transparent 65%); pointer-events: none; }
.cta__inner h2 { position: relative; color: #fff; font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
.cta__inner > p { position: relative; color: rgba(255,255,255,.86); max-width: 52ch; margin: 0 auto 30px; font-size: clamp(15px, 1.5vw, 18px); }
.cta__actions { position: relative; display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* footer */
.foot { background: var(--navy); color: #fff; padding-top: clamp(48px, 6vw, 72px); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.foot .brand { color: #fff; }
.foot .brand__name span { color: #5EEAD4; }
.foot__tag { color: rgba(255,255,255,.66); font-size: 14px; margin-top: 16px; }
.foot__col h4 { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; font-weight: 500; }
.foot__col a { display: block; color: rgba(255,255,255,.78); font-size: 14.5px; padding: 5px 0; transition: color .18s; }
.foot__col a:hover { color: #5EEAD4; }
.foot__contact p { color: rgba(255,255,255,.6); font-size: 13.5px; margin-top: 12px; line-height: 1.7; }
.foot__base { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); font-family: var(--f-mono); font-size: 12.5px; color: rgba(255,255,255,.5); }
.foot__base-mono { display: inline-flex; align-items: center; gap: 7px; }

/* blog page header */
.pagehead { background: var(--grad); color: #fff; padding: clamp(52px, 8vw, 84px) 0 clamp(44px, 6vw, 64px); position: relative; overflow: hidden; }
.pagehead::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 85% 10%, rgba(20,184,166,.3), transparent 60%); pointer-events: none; }
.pagehead .wrap { position: relative; z-index: 1; }
.pagehead h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
.pagehead p { color: rgba(255,255,255,.82); max-width: 54ch; font-size: clamp(15px, 1.5vw, 18px); }
.pagehead .back { display: inline-block; margin-bottom: 22px; font-family: var(--f-mono); font-size: 13px; color: rgba(255,255,255,.8); }

/* article */
.article { max-width: 760px; margin-inline: auto; padding: clamp(40px, 6vw, 68px) 0; }
.article h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 34px 0 14px; }
.article p { color: var(--ink-2); font-size: 16.5px; margin-bottom: 18px; }
.article ul { color: var(--ink-2); font-size: 16px; padding-left: 22px; margin-bottom: 18px; }
.article li { margin-bottom: 8px; }
.article .lede { font-size: 19px; color: var(--muted); }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal]{opacity:1;transform:none;transition:none;} .marquee__row,.pulse,.eyebrow .dot{animation:none!important;} }

@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(20,184,166,.5);} 70%{box-shadow:0 0 0 8px rgba(20,184,166,0);} 100%{box-shadow:0 0 0 0 rgba(20,184,166,0);} }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@keyframes logIn { from{opacity:0;transform:translateY(4px);} to{opacity:1;transform:none;} }

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  .hero__grid, .perf__grid, .comp__grid { grid-template-columns: 1fr; }
  .term { order: -1; }
  .feat-grid, .price-grid, .pipe, .portals, .blog-grid { grid-template-columns: 1fr 1fr; }
  .feat--wide { grid-column: span 2; }
  .shots { grid-template-columns: 1fr; } .shot, .shot--wide { grid-column: span 1; }
  .pipe__step::before { display: none; }
  .stat-band { grid-template-columns: repeat(3, 1fr); }
  .mtiles { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 10px var(--pad) 18px; box-shadow: var(--shadow-md); }
  .nav__links.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .feat-grid, .price-grid, .pipe, .portals, .blog-grid, .spec-cols, .perf__stats { grid-template-columns: 1fr; }
  .feat--wide { grid-column: span 1; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .hero__proof { flex-wrap: wrap; gap: 18px 30px; }
}
@media (max-width: 460px) { .stat-band, .foot__grid, .mtiles { grid-template-columns: 1fr; } .foot__base { justify-content: center; text-align: center; } }
