/* ============================================================
   Kuryemi Bul — landing.css
   Premium enterprise SaaS landing page.
   Pure-black glassmorphism · electric blue / cyan / purple glow.
   Self-contained (does not depend on styles.css).
   ============================================================ */

/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #050505;
  --bg-1:      #07080d;
  --bg-2:      #0a0c14;
  --panel:     rgba(255,255,255,0.035);
  --panel-2:   rgba(255,255,255,0.055);
  --stroke:    rgba(255,255,255,0.09);
  --stroke-2:  rgba(255,255,255,0.16);

  --text:      #f4f6fb;
  --muted:     rgba(233,238,250,0.62);
  --faint:     rgba(233,238,250,0.40);

  --blue:      #2f6bff;
  --blue-2:    #4f8bff;
  --cyan:      #22d3ee;
  --purple:    #8b5cf6;
  --violet:    #a855f7;

  --grad:      linear-gradient(120deg, #22d3ee 0%, #4f8bff 45%, #a855f7 100%);
  --grad-soft: linear-gradient(135deg, rgba(34,211,238,0.16), rgba(79,139,255,0.10) 50%, rgba(168,85,247,0.14));

  --radius:    22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --maxw:      1200px;

  --ease:      cubic-bezier(.22,.61,.36,1);
  --shadow:    0 30px 80px -30px rgba(0,0,0,0.9);
  --glow-cyan: 0 0 60px -12px rgba(34,211,238,0.45);
  --glow-blue: 0 0 60px -12px rgba(79,139,255,0.45);

  --font:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --display:   "Space Grotesk", var(--font);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(79,139,255,0.35); color: #fff; }

/* ---------- Ambient background ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-fx::before {           /* faint dot grid */
  content: ""; position: absolute; inset: -20%;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.orb--1 { width: 620px; height: 620px; top: -240px; left: -160px; background: radial-gradient(circle, rgba(47,107,255,0.55), transparent 70%); }
.orb--2 { width: 560px; height: 560px; top: 6%;  right: -200px; background: radial-gradient(circle, rgba(34,211,238,0.40), transparent 70%); }
.orb--3 { width: 680px; height: 680px; top: 130%; left: 30%;   background: radial-gradient(circle, rgba(139,92,246,0.38), transparent 70%); }
#net-canvas { position: fixed; inset: 0; z-index: -1; opacity: 0.9; pointer-events: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }
.sec-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head .eyebrow::before { display: none; }
.sec-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05; font-weight: 700; letter-spacing: -0.03em;
}
.sec-lead { margin-top: 18px; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 13px 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad); border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.96rem; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s;
}
.btn--primary { background: var(--grad); color: #04060e; box-shadow: 0 14px 40px -14px rgba(79,139,255,0.8); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 55px -14px rgba(79,139,255,0.95); }
.btn--ghost { background: var(--panel); color: var(--text); border-color: var(--stroke-2); backdrop-filter: blur(12px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.34); background: var(--panel-2); }
.btn--lg { --pad: 17px 32px; font-size: 1.04rem; }
.btn--sm { --pad: 10px 18px; font-size: 0.9rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7,8,13,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--stroke);
}
.nav__in { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad); color: #04060e; font-size: 1.05rem; box-shadow: var(--glow-blue);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.nav__links { display: flex; gap: 6px; margin-left: 18px; }
.nav__links a {
  padding: 8px 14px; border-radius: 10px; font-size: 0.92rem; color: var(--muted);
  transition: color .25s, background .25s;
}
.nav__links a:hover { color: var(--text); background: var(--panel); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__signin { font-size: 0.92rem; color: var(--muted); padding: 8px 6px; transition: color .25s; }
.nav__signin:hover { color: var(--text); }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--stroke); background: var(--panel); color: var(--text); font-size: 1.2rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(130px, 17vw, 190px) 0 clamp(60px, 8vw, 110px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 9px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--stroke); backdrop-filter: blur(10px);
  font-size: 0.84rem; color: var(--muted); margin-bottom: 26px;
}
.hero__badge b { color: var(--text); font-weight: 600; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,0.18); animation: pulse 2.2s infinite; }
.hero__pill { padding: 2px 9px; border-radius: 999px; background: var(--grad); color: #04060e; font-size: 0.74rem; font-weight: 700; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  line-height: 1.02; font-weight: 700; letter-spacing: -0.04em;
  max-width: 16ch;
}
.hero__sub { margin-top: 26px; max-width: 56ch; font-size: clamp(1.05rem, 1.5vw, 1.32rem); color: var(--muted); }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 26px; color: var(--faint); font-size: 0.88rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta i { color: var(--cyan); font-style: normal; }

/* Hero dashboard mockup */
.hero__stage { position: relative; margin-top: clamp(56px, 8vw, 92px); }
.dash {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18,22,34,0.85), rgba(8,10,16,0.85));
  border: 1px solid var(--stroke); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(20px); overflow: hidden;
}
.dash::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .8; }
.dash__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--stroke); }
.dash__bar .tl { display: flex; gap: 7px; }
.dash__bar .tl i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.dash__bar .tl i:nth-child(1){ background:#ff5f57;} .dash__bar .tl i:nth-child(2){background:#febc2e;} .dash__bar .tl i:nth-child(3){background:#28c840;}
.dash__title { margin-left: 8px; font-size: 0.84rem; color: var(--muted); font-weight: 500; }
.dash__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; color: #34d399; }
.dash__live .dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: pulse 1.8s infinite; }

.dash__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1px; background: var(--stroke); }
.dash__main, .dash__side { background: rgba(7,9,15,0.6); padding: 22px; }
.dash__side { display: flex; flex-direction: column; gap: 14px; }

.kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.kpi { padding: 16px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--stroke); }
.kpi__l { font-size: 0.74rem; color: var(--faint); display: flex; align-items: center; gap: 7px; }
.kpi__v { margin-top: 6px; font-family: var(--display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.kpi__d { font-size: 0.74rem; color: #34d399; margin-top: 2px; }
.kpi__ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: var(--grad-soft); font-size: 0.8rem; }

/* mini live map inside dashboard */
.minimap { position: relative; height: 260px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--stroke); background:
  radial-gradient(120% 120% at 20% 10%, rgba(47,107,255,0.16), transparent 55%),
  radial-gradient(120% 120% at 90% 90%, rgba(139,92,246,0.16), transparent 55%),
  #06080e; }
.minimap__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 32px 32px; }
.minimap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.node { fill: var(--cyan); }
.node--biz { fill: var(--blue-2); }
.route { fill: none; stroke: url(#routeg); stroke-width: 1.6; stroke-linecap: round; opacity: .5; }
.courier-dot { fill: #fff; filter: drop-shadow(0 0 6px rgba(34,211,238,0.9)); }
.pulse-ring { fill: none; stroke: var(--cyan); stroke-width: 1.4; opacity: 0; transform-box: fill-box; transform-origin: center; }

.feed { font-size: 0.82rem; }
.feed__row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--stroke); }
.feed__row:last-child { border-bottom: 0; }
.feed__av { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--grad-soft); font-size: 0.78rem; flex: none; }
.feed__t { color: var(--text); } .feed__s { color: var(--faint); font-size: 0.74rem; }
.feed__tag { margin-left: auto; font-size: 0.68rem; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--stroke); color: var(--cyan); flex: none; }

.gauge { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--stroke); }
.gauge__ring { --p: 92; width: 56px; height: 56px; border-radius: 50%; flex: none; background: conic-gradient(var(--cyan) calc(var(--p)*1%), rgba(255,255,255,0.08) 0); display: grid; place-items: center; }
.gauge__ring i { width: 42px; height: 42px; border-radius: 50%; background: #07090f; display: grid; place-items: center; font-style: normal; font-weight: 700; font-size: 0.92rem; }
.gauge__t b { display: block; font-size: 0.95rem; } .gauge__t span { font-size: 0.78rem; color: var(--faint); }

/* floating analytics cards over the hero stage */
.floaty { position: absolute; z-index: 3; padding: 14px 16px; border-radius: 16px; background: rgba(12,15,24,0.82); border: 1px solid var(--stroke-2); backdrop-filter: blur(16px); box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.floaty__ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-soft); font-size: 1.05rem; }
.floaty__l { font-size: 0.72rem; color: var(--faint); } .floaty__v { font-family: var(--display); font-weight: 700; font-size: 1.12rem; }
.floaty--a { top: -26px; right: 30px; animation: float 6s var(--ease) infinite; }
.floaty--b { bottom: 40px; left: -22px; animation: float 7s var(--ease) infinite .6s; }
.floaty--c { bottom: -22px; right: 14%; animation: float 6.6s var(--ease) infinite 1.1s; }

/* ---------- Logo strip ---------- */
.strip { border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); padding: 30px 0; }
.strip__lead { text-align: center; color: var(--faint); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(26px, 5vw, 64px); opacity: 0.8; }
.strip__row span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--muted); font-size: 1rem; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stroke); background: var(--stroke); }
.statband__c { background: linear-gradient(180deg, rgba(14,17,27,0.9), rgba(8,10,16,0.9)); padding: 30px 26px; text-align: center; }
.statband__v { font-family: var(--display); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; letter-spacing: -0.03em; }
.statband__l { margin-top: 6px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Ecosystem cards ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.eco {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--stroke); overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
}
.eco::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120% 90% at 50% -10%, var(--c, rgba(34,211,238,0.16)), transparent 60%); opacity: 0; transition: opacity .5s; }
.eco:hover { transform: translateY(-6px); border-color: var(--stroke-2); }
.eco:hover::after { opacity: 1; }
.eco__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: var(--grad-soft); border: 1px solid var(--stroke); margin-bottom: 20px; }
.eco__t { font-family: var(--display); font-size: 1.45rem; font-weight: 700; }
.eco__d { margin-top: 8px; color: var(--muted); font-size: 0.96rem; }
.eco__list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.eco__list li { list-style: none; display: flex; align-items: flex-start; gap: 11px; font-size: 0.94rem; color: var(--text); }
.eco__list .ck { width: 20px; height: 20px; border-radius: 6px; flex: none; display: grid; place-items: center; font-size: 0.7rem; background: rgba(34,211,238,0.14); color: var(--cyan); margin-top: 2px; }
.eco__link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--cyan); position: relative; z-index: 1; }
.eco__link:hover { gap: 12px; }

/* ---------- Rating tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: end; }
.tier {
  position: relative; padding: 30px 28px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--stroke); text-align: center;
  transition: transform .5s var(--ease), border-color .4s;
}
.tier:hover { transform: translateY(-6px); }
.tier--feat { background: linear-gradient(180deg, rgba(34,211,238,0.07), rgba(139,92,246,0.06)); border-color: var(--stroke-2); padding-top: 42px; box-shadow: var(--glow-cyan); }
.tier__crown { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 5px 14px; border-radius: 999px; background: var(--grad); color: #04060e; font-size: 0.74rem; font-weight: 700; }
.tier__badge { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 22px; display: grid; place-items: center; font-size: 2rem; background: var(--grad-soft); border: 1px solid var(--stroke-2); position: relative; }
.tier__badge.is-pro { box-shadow: var(--glow-blue); }
.tier__badge.is-prem { box-shadow: 0 0 50px -10px rgba(168,85,247,0.6); }
.tier__name { font-family: var(--display); font-size: 1.35rem; font-weight: 700; }
.tier__d { margin-top: 6px; color: var(--muted); font-size: 0.9rem; }
.tier__bar { margin: 20px 0 16px; height: 7px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.tier__bar i { display: block; height: 100%; border-radius: inherit; background: var(--grad); width: 0; transition: width 1.4s var(--ease); }
.tier__feats { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.tier__feats li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.tier__feats .ck { color: var(--cyan); }

/* ---------- Bento grid ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 18px; }
.bcard {
  position: relative; padding: 24px; border-radius: var(--radius); overflow: hidden;
  background: var(--panel); border: 1px solid var(--stroke);
  transition: transform .5s var(--ease), border-color .4s, background .4s;
  display: flex; flex-direction: column;
}
.bcard:hover { border-color: var(--stroke-2); background: var(--panel-2); }
.bcard__spot { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(79,139,255,0.18), transparent 65%); transform: translate(-50%,-50%); left: var(--mx,50%); top: var(--my,50%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.bcard:hover .bcard__spot { opacity: 1; }
.bcard__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.1rem; background: var(--grad-soft); border: 1px solid var(--stroke); margin-bottom: auto; }
.bcard__t { font-family: var(--display); font-weight: 700; font-size: 1.12rem; margin-top: 16px; }
.bcard__d { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }
.bcard--w2 { grid-column: span 2; }
.bcard--h2 { grid-row: span 2; }
.bcard__viz { position: absolute; inset: 0; z-index: 0; opacity: 0.9; pointer-events: none; }
.bcard > * { position: relative; z-index: 1; }
.spark { display: flex; align-items: flex-end; gap: 5px; height: 46px; margin-top: 14px; }
.spark i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--cyan), rgba(79,139,255,0.25)); animation: grow 2.4s var(--ease) infinite alternate; }

/* ---------- Feature split ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.feat + .feat { margin-top: clamp(70px, 10vw, 130px); }
.feat--rev .feat__media { order: -1; }
.feat__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em; }
.feat__t { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; margin-top: 14px; line-height: 1.1; }
.feat__d { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.feat__list { margin-top: 22px; display: grid; gap: 12px; }
.feat__list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; color: var(--text); }
.feat__list .ck { width: 22px; height: 22px; border-radius: 7px; flex: none; display: grid; place-items: center; font-size: 0.72rem; background: rgba(79,139,255,0.16); color: var(--blue-2); }
.feat__media { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--stroke); background: linear-gradient(180deg, rgba(14,17,27,0.8), rgba(8,10,16,0.8)); box-shadow: var(--shadow); overflow: hidden; min-height: 320px; padding: 22px; }
.feat__media::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .35; }

/* generic glass mini-panel used inside feature media */
.glass { position: relative; border-radius: var(--radius-sm); border: 1px solid var(--stroke); background: var(--panel); backdrop-filter: blur(8px); }
.matchrow { display: flex; align-items: center; gap: 12px; padding: 14px; }
.matchrow + .matchrow { margin-top: 12px; }
.matchrow__av { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); border: 1px solid var(--stroke); display: grid; place-items: center; font-size: 1rem; flex: none; }
.matchrow__t b { display: block; font-size: 0.94rem; } .matchrow__t span { font-size: 0.78rem; color: var(--faint); }
.matchrow__score { margin-left: auto; font-family: var(--display); font-weight: 700; color: var(--cyan); }
.matchrow--match { border-color: rgba(34,211,238,0.4); box-shadow: var(--glow-cyan); }

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trustc { padding: 26px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--stroke); transition: border-color .4s, transform .5s var(--ease); }
.trustc:hover { transform: translateY(-4px); border-color: var(--stroke-2); }
.trustc__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 1.2rem; background: var(--grad-soft); border: 1px solid var(--stroke); margin-bottom: 16px; }
.trustc__t { font-weight: 700; font-size: 1.08rem; }
.trustc__d { margin-top: 7px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Big CTA ---------- */
.cta {
  position: relative; text-align: center; padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 80px);
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, rgba(20,26,44,0.85), rgba(8,10,18,0.9));
  border: 1px solid var(--stroke-2);
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(79,139,255,0.28), transparent 60%); }
.cta > * { position: relative; }
.cta__t { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.cta__d { margin: 18px auto 0; max-width: 52ch; color: var(--muted); font-size: 1.1rem; }
.cta__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--stroke); padding: 64px 0 40px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.foot__brand .brand { margin-bottom: 14px; }
.foot__brand p { color: var(--muted); font-size: 0.94rem; max-width: 34ch; }
.foot__col h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.foot__col a { display: block; padding: 6px 0; color: var(--muted); font-size: 0.94rem; transition: color .25s; }
.foot__col a:hover { color: var(--text); }
.foot__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--stroke); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; color: var(--faint); font-size: 0.86rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s;} .reveal[data-d="2"]{transition-delay:.16s;} .reveal[data-d="3"]{transition-delay:.24s;} .reveal[data-d="4"]{transition-delay:.32s;}

/* ---------- Keyframes ---------- */
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(52,211,153,0.4);} 50%{ box-shadow: 0 0 0 6px rgba(52,211,153,0);} }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
@keyframes grow { from{ transform: scaleY(.35);} to{ transform: scaleY(1);} }
@keyframes dash-move { to { stroke-dashoffset: -1000; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; margin: 0;
    padding: 14px 24px 20px;
    background: rgba(7,8,13,0.96); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
  }
  .nav__links.is-open a { padding: 12px 14px; font-size: 1rem; }
  .nav__burger { display: grid; place-items: center; }
  .dash__grid { grid-template-columns: 1fr; }
  .eco-grid, .tiers { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { gap: 18px; }
  .feat, .feat--rev .feat__media { grid-template-columns: 1fr; order: 0; }
  .feat__media { order: -1; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .bcard--w2 { grid-column: span 2; }
  .bcard--h2 { grid-row: span 1; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .floaty--b { left: 0; } .floaty--a { right: 0; }
}
@media (max-width: 620px) {
  .nav__signin { display: none; }
  .nav__in { gap: 10px; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bcard--w2 { grid-column: span 1; }
  .foot__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 16px; }
  .floaty { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
