/* ============================================================
   SKEYE TECH — Vehicle Tracking & Recovery
   Premium dark "always watching" system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color */
  --bg:        #06090F;
  --bg-2:      #090E18;
  --panel:     #0C1320;
  --panel-2:   #0F1726;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  --cyan:      #1FC8DE;
  --cyan-br:   #3DE3F5;
  --cyan-dim:  #0E7C8C;
  --green:     #3CE89B;   /* live / recovered */
  --amber:     #FFC24B;

  --text:      #EAF1F8;
  --muted:     #93A1B4;
  --muted-2:   #5E6C7E;

  --glow-cyan: 0 0 60px rgba(31,200,222,0.35);

  /* Type */
  --display: 'Space Grotesk', sans-serif;
  --body:    'Manrope', sans-serif;
  --mono:    'JetBrains Mono', monospace;

  /* Layout */
  --maxw: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background field — kept very subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(31,200,222,0.10), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.03em; }
h2.section-title { font-size: clamp(34px, 4.4vw, 56px); }
.lead { color: var(--muted); font-size: clamp(16px, 1.4vw, 19px); max-width: 56ch; }
.text-cyan { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(180deg, var(--cyan-br), var(--cyan));
  color: #03252B;
  box-shadow: 0 10px 30px -8px rgba(31,200,222,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(31,200,222,0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,9,15,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 30px; width: auto; flex: none; }
.brand-divider { width: 1px; height: 26px; background: var(--line-2); flex: none; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: 0.06em; line-height: 1; }
.brand-name b { color: var(--cyan); font-weight: 700; }
.brand-sub { display:block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.30em; color: var(--muted-2); text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 15px; font-weight: 600; color: var(--text); }
.nav-login:hover { color: var(--cyan); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px; width:42px; height:42px; cursor:pointer; color: var(--text); }
.nav-toggle svg { width: 20px; height: 20px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 99;
  background: rgba(6,9,15,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: none; flex-direction: column; padding: 18px 28px 30px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 4px; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ---------- HERO (photographic) ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 130px 0 80px; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(6,9,15,0.92) 32%, rgba(6,9,15,0.45) 62%, rgba(6,9,15,0.12) 100%),
    linear-gradient(0deg, var(--bg) 1%, rgba(6,9,15,0.2) 22%, transparent 46%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(46px, 6.6vw, 90px); margin: 24px 0 0; letter-spacing: -0.035em; }
.hero h1 .accent { position: relative; color: var(--cyan); white-space: nowrap; }
.hero-copy .lead { margin-top: 26px; font-size: clamp(17px, 1.5vw, 20px); max-width: 50ch; color: #B4C0CE; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); font-weight: 600; }
.hero-trust .ht svg { width: 19px; height: 19px; color: var(--cyan); flex: none; }

/* single restrained live marker pinned on the vehicle */
.hero-pin { position: absolute; z-index: 3; top: 30%; right: 15%; }
.hero-pin-ring {
  position: absolute; left: -30px; top: 36px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 0 rgba(31,200,222,0.5);
  animation: ping 2.8s ease-out infinite;
}
.hero-pin-ring::after { content: ""; position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); }
.hero-pin-card {
  display: flex; align-items: center; gap: 11px;
  background: rgba(7,11,18,0.94);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 11px 16px 11px 14px;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.7);
}
.hero-pin-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; flex: none; }
.hpc-name { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hpc-loc { font-family: var(--display); font-weight: 600; font-size: 15px; margin-top: 2px; }

/* Radar / live-map visual */
.radar {
  position: relative; aspect-ratio: 1/1; width: 100%; max-width: 520px; margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(31,200,222,0.10), transparent 70%),
    var(--panel);
  border: 1px solid var(--line-2);
  box-shadow: var(--glow-cyan), inset 0 0 80px rgba(0,0,0,0.6);
  overflow: hidden;
}
.radar-rings { position: absolute; inset: 0; }
.radar-rings i {
  position: absolute; border: 1px solid rgba(31,200,222,0.18); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.radar-rings i:nth-child(1){ width: 26%; height: 26%; }
.radar-rings i:nth-child(2){ width: 52%; height: 52%; }
.radar-rings i:nth-child(3){ width: 78%; height: 78%; }
.radar-rings i:nth-child(4){ width: 100%; height: 100%; }
.radar-cross { position: absolute; inset: 0; }
.radar-cross::before, .radar-cross::after {
  content: ""; position: absolute; background: rgba(31,200,222,0.12);
}
.radar-cross::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.radar-cross::after  { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(31,200,222,0.45), rgba(31,200,222,0.0) 70deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle, #000 0 70%, transparent 70%);
  animation: sweep 4.2s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.ping {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--cyan); transform: translate(-50%,-50%);
  box-shadow: 0 0 0 0 rgba(31,200,222,0.55);
  animation: ping 2.6s ease-out infinite;
}
.ping.green { background: var(--green); box-shadow: 0 0 0 0 rgba(60,232,155,0.5); animation-name: pinggreen; }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(31,200,222,0.5); }
  70%,100% { box-shadow: 0 0 0 22px rgba(31,200,222,0); }
}
@keyframes pinggreen {
  0% { box-shadow: 0 0 0 0 rgba(60,232,155,0.5); }
  70%,100% { box-shadow: 0 0 0 22px rgba(60,232,155,0); }
}
.radar-route { position: absolute; inset: 0; }
.route-flow { animation: dashflow 1.4s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -8; } }

/* floating telemetry chips on the visual */
.telemetry {
  position: absolute; z-index: 3;
  background: rgba(8,13,22,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 14px;
  padding: 12px 15px; min-width: 170px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.8);
}
.telemetry .tl-row { display: flex; align-items: center; gap: 8px; }
.telemetry .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: 0.35; } }
.telemetry .tl-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.telemetry .tl-main { font-family: var(--display); font-weight: 600; font-size: 18px; margin-top: 4px; }
.telemetry .tl-sub { font-family: var(--mono); font-size: 11px; color: var(--cyan); margin-top: 2px; }
.hero-visual { position: relative; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.telemetry.t1 { top: 10%; left: 0; }
.telemetry.t2 { bottom: 10%; right: 0; }
.float { animation: float 6s ease-in-out infinite; }
.float.d { animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-12px); } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015); overflow: hidden; padding: 20px 0;
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--mono); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "◆"; color: var(--cyan); font-size: 9px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section frame ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-top: 16px; }
.section-head .lead { margin-top: 18px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--panel); padding: 38px 30px; }
.stat .num { font-family: var(--display); font-weight: 600; font-size: clamp(38px, 4vw, 54px); letter-spacing: -0.04em; line-height: 1; }
.stat .num .u { color: var(--cyan); }
.stat .lab { color: var(--muted); font-size: 14px; margin-top: 12px; font-weight: 600; }

/* ---------- Services ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.card-ico {
  width: 48px; height: 48px; margin-bottom: 26px;
  display: grid; place-items: center;
  color: var(--cyan);
  border-bottom: 1px solid rgba(31,200,222,0.3);
  border-radius: 0; padding-bottom: 14px; width: 44px;
}
.card-ico svg { width: 30px; height: 30px; stroke-width: 1.4; }
.card h3 { font-size: 23px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .feat { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.card .feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.card .feat svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 3px; }
.card-glow { position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(31,200,222,0.18), transparent 70%); opacity: 0; transition: opacity .3s; }
.card:hover .card-glow { opacity: 1; }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 8px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step-n { font-family: var(--mono); font-size: 14px; color: var(--cyan); border: 1px solid rgba(31,200,222,0.3); border-radius: 50%; width: 42px; height: 42px; display: grid; place-items: center; flex: none; }
.step h3 { font-size: 21px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 15px; }
.how-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2);
  background: var(--panel); aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px #000;
}
.how-visual img { width: 100%; height: 100%; object-fit: cover; }
.how-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(6,9,15,0.5) 0%, transparent 35%, rgba(6,9,15,0.25) 100%); }

/* phone mock (app section) */
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.phone {
  position: relative; width: 300px; margin: 0 auto; aspect-ratio: 300/620;
  background: #0a0f1a; border-radius: 42px;
  border: 8px solid #11161f; box-shadow: 0 50px 90px -30px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.04), var(--glow-cyan);
  overflow: hidden;
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #05080e; border-radius: 100px; z-index: 5; }
.phone-screen { position: absolute; inset: 0; background:
  radial-gradient(120% 60% at 50% 0%, rgba(31,200,222,0.12), transparent 60%), #070b12; }
.app-stores { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 12px; padding: 11px 20px;
  border: 1px solid var(--line-2); border-radius: 14px; background: rgba(255,255,255,0.03);
  transition: border-color .25s, transform .25s;
}
.store:hover { border-color: var(--cyan); transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; flex: none; }
.store .s-sm { font-size: 11px; color: var(--muted); line-height: 1; }
.store .s-lg { font-family: var(--display); font-weight: 600; font-size: 17px; line-height: 1.25; }

/* mini map inside phone & how-visual */
.mini-map { position: absolute; inset: 0; }
.map-bg { position:absolute; inset:0; opacity:0.5;
  background-image:
    linear-gradient(rgba(31,200,222,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,200,222,0.10) 1px, transparent 1px);
  background-size: 30px 30px; }
.map-road { position:absolute; background: rgba(255,255,255,0.06); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.plan {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px;
  position: relative; display: flex; flex-direction: column;
}
.plan.featured { border-color: rgba(31,200,222,0.5); box-shadow: var(--glow-cyan); }
.plan.featured::before {
  content: "MOST POPULAR"; position: absolute; top: -12px; left: 38px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  background: linear-gradient(180deg, var(--cyan-br), var(--cyan)); color: #03252B;
  padding: 5px 13px; border-radius: 100px; font-weight: 600;
}
.plan-name { font-family: var(--display); font-size: 26px; font-weight: 600; }
.plan-desc { color: var(--muted); font-size: 15px; margin-top: 6px; min-height: 44px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 24px 0 4px; }
.plan-price .cur { font-size: 22px; color: var(--muted); font-weight: 700; }
.plan-price .amt { font-family: var(--display); font-size: 56px; font-weight: 600; letter-spacing: -0.04em; }
.plan-price .per { color: var(--muted); font-size: 14px; }
.plan-meta { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; }
.plan-feats { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plan-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.plan-feats svg { width: 19px; height: 19px; color: var(--cyan); flex: none; margin-top: 2px; }
.plan-feats li.off { color: var(--muted-2); }
.plan-feats li.off svg { color: var(--muted-2); }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- Recoveries ---------- */
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rec {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--panel); transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.rec:hover { transform: translateY(-4px); border-color: var(--line-2); }
.rec-img { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--panel-2); }
.rec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: saturate(0.9) brightness(0.85); }
.rec:hover .rec-img img { transform: scale(1.05); }
.rec-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(60,232,155,0.15); color: var(--green); border: 1px solid rgba(60,232,155,0.35);
  padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 7px;
}
.rec-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.rec-body { padding: 22px 24px 26px; }
.rec-date { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.06em; }
.rec-body h3 { font-size: 20px; margin: 8px 0 0; }
.rec-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 600; font-size: 14px; }
.rec-link svg { width: 15px; height: 15px; transition: transform .25s; }
.rec:hover .rec-link svg { transform: translateX(4px); }

/* ---------- Testimonials ---------- */
.rating-bar { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 48px; padding: 22px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.stars { display: flex; gap: 3px; color: var(--amber); }
.stars svg { width: 20px; height: 20px; }
.rating-bar .big { font-family: var(--display); font-size: 26px; font-weight: 600; }
.rating-bar .src { color: var(--muted); font-size: 14px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; }
.quote .stars { margin-bottom: 18px; }
.quote p { font-size: 16px; line-height: 1.6; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 17px; color: #03252B; background: linear-gradient(135deg, var(--cyan-br), var(--cyan-dim)); flex: none; }
.who .nm { font-weight: 700; font-size: 15px; }
.who .meta { color: var(--muted-2); font-size: 13px; }

/* ---------- CTA band ---------- */
.cta-band {
  border: 1px solid rgba(31,200,222,0.3); border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(31,200,222,0.18), transparent 65%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  padding: 64px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(32px, 4vw, 50px); }
.cta-band .lead { margin: 18px auto 32px; text-align: center; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-card { display: flex; gap: 16px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: border-color .25s; }
.ci-card:hover { border-color: var(--line-2); }
.ci-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(31,200,222,0.1); border: 1px solid rgba(31,200,222,0.25); display: grid; place-items: center; color: var(--cyan); flex: none; }
.ci-ico svg { width: 21px; height: 21px; }
.ci-card .ci-lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.ci-card .ci-val { font-weight: 700; font-size: 16px; margin-top: 2px; }
.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 14px 16px; color: var(--text); font-family: var(--body); font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(31,200,222,0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 70px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 18px; max-width: 32ch; }
.footer h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: var(--muted); font-size: 15px; transition: color .2s; }
.footer ul a:hover { color: var(--cyan); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: all .25s; }
.socials a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13px; }
.footer-bottom .mono { font-family: var(--mono); letter-spacing: 0.05em; }

/* ---------- Reveal animation ---------- */
/* Hidden state only applies once JS confirms it can animate (html.js-reveal).
   Without JS, content is fully visible. */
.reveal { transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
html.js-reveal .reveal { opacity: 0; transform: translateY(28px); }
html.js-reveal .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .how-grid, .app-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { min-height: 0; }
  .hero-photo img { object-position: 62% center; }
  .hero-pin { display: none; }
  .cards-3, .rec-grid, .t-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-login { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .section-pad { padding: 76px 0; }
  .hero { padding: 118px 0 64px; }
  .cards-3, .rec-grid, .t-grid, .pricing-grid, .field-row, .footer-grid, .stats { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; }
  .hero-cta .btn, .cta-band .btn { flex: 1; justify-content: center; }
  .telemetry.t1 { left: 0; } .telemetry.t2 { right: 0; bottom: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RECOVERIES PAGE
   ============================================================ */
.page-hero { position: relative; padding: 156px 0 64px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 22px; }
.page-hero .breadcrumb a { color: var(--muted-2); }
.page-hero .breadcrumb a:hover { color: var(--cyan); }
.page-hero h1 { font-size: clamp(40px, 5.6vw, 76px); margin-top: 16px; letter-spacing: -0.035em; }
.page-hero .lead { margin-top: 22px; max-width: 60ch; }
.live-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(60,232,155,0.3); background: rgba(60,232,155,0.08); border-radius: 100px; padding: 7px 14px; }
.live-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; }

/* Featured recovery */
.featured-rec { display: grid; grid-template-columns: 1.08fr 1fr; border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); box-shadow: 0 50px 90px -55px #000; }
.fr-img { position: relative; min-height: 440px; overflow: hidden; }
.fr-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) brightness(0.82); }
.fr-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, var(--panel) 100%), linear-gradient(0deg, rgba(6,9,15,0.5), transparent 40%); }
.fr-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.fr-kicker { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; }
.fr-kicker .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.featured-rec h2 { font-size: clamp(28px, 3.1vw, 42px); margin: 16px 0 16px; letter-spacing: -0.03em; }
.fr-excerpt { color: var(--muted); font-size: 16px; line-height: 1.65; }
.fr-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.role-chip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--text); border: 1px solid var(--line-2); border-radius: 100px; padding: 6px 13px; background: rgba(255,255,255,0.03); }
.fr-body .btn { align-self: flex-start; margin-top: 28px; }

/* Filter bar */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.chip { font-family: var(--body); font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line-2); background: transparent; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.chip:hover { color: var(--text); border-color: var(--line-2); }
.chip.active { background: var(--cyan); color: #03252B; border-color: var(--cyan); }
.chip .c-count { opacity: 0.6; margin-left: 6px; font-variant-numeric: tabular-nums; }

/* recovery card extras */
.rec.hide { display: none; }
.rec-meta-row { display: flex; align-items: center; gap: 10px; }
.rec-time { font-family: var(--mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.04em; }
.rec-ex { color: var(--muted); font-size: 14.5px; margin-top: 11px; line-height: 1.55; }
.rec-tag.amber { background: rgba(255,194,75,0.13); color: var(--amber); border-color: rgba(255,194,75,0.32); }
.rec-tag.amber .dot { background: var(--amber); }

/* How recovery works timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tl-step { position: relative; padding-top: 30px; }
.tl-step::before { content: ""; position: absolute; top: 4px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(31,200,222,0.14); }
.tl-step::after { content: ""; position: absolute; top: 11px; left: 22px; right: -24px; height: 1px; background: var(--line-2); }
.tl-step:last-child::after { display: none; }
.tl-step .tl-n { font-family: var(--mono); font-size: 12px; color: var(--cyan); letter-spacing: 0.1em; }
.tl-step h3 { font-size: 19px; margin: 8px 0 8px; }
.tl-step p { color: var(--muted); font-size: 14.5px; }

/* Report modal */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,5,9,0.82); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; max-width: 740px; width: 100%; max-height: 88vh; overflow: auto; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: 0 50px 100px -30px #000; }
.modal-img { height: 240px; position: relative; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) brightness(0.78); }
.modal-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--panel-2), transparent 60%); }
.modal-body { padding: 34px 40px 42px; }
.modal-kicker { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; }
.modal-body h2 { font-size: clamp(26px, 3vw, 36px); margin: 14px 0 6px; letter-spacing: -0.03em; }
.modal-author { font-size: 13px; color: var(--muted-2); margin-bottom: 18px; }
.report-pre { white-space: pre-line; color: var(--text); font-size: 15.5px; line-height: 1.75; }
.report-pre .label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--cyan); text-transform: uppercase; display: block; margin: 22px 0 6px; }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-2); background: rgba(8,12,20,0.7); backdrop-filter: blur(8px); color: var(--text); cursor: pointer; display: grid; place-items: center; transition: border-color .2s, color .2s; }
.modal-close:hover { border-color: var(--cyan); color: var(--cyan); }
.modal-close svg { width: 18px; height: 18px; }

@media (max-width: 1000px) {
  .featured-rec { grid-template-columns: 1fr; }
  .fr-img { min-height: 300px; }
  .fr-img::after { background: linear-gradient(0deg, var(--panel) 2%, transparent 45%); }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px; }
  .tl-step::after { display: none; }
}
@media (max-width: 640px) {
  .page-hero { padding: 130px 0 52px; }
  .fr-body { padding: 32px 26px; }
  .timeline { grid-template-columns: 1fr; }
  .modal-body { padding: 28px 24px 34px; }
}

/* ---------- Legal / prose page ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal-meta { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 15px; margin-top: 6px; }
.legal-meta b { color: var(--cyan); font-weight: 600; }
.prose { color: #C2CDDA; font-size: 16px; line-height: 1.75; }
.prose .intro { font-size: 17px; color: var(--muted); margin-bottom: 8px; }
.prose h2 { font-family: var(--display); font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.02em; color: var(--text); margin: 52px 0 18px; padding-top: 26px; border-top: 1px solid var(--line); }
.prose h2:first-of-type { border-top: none; padding-top: 0; margin-top: 36px; }
.prose h3 { font-family: var(--display); font-size: 19px; color: var(--text); margin: 30px 0 10px; }
.prose h4 { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin: 24px 0 8px; }
.prose p { margin: 0 0 14px; }
.prose .clause { margin: 0 0 14px; }
.prose .clause b, .prose p b { color: var(--text); font-weight: 600; }
.prose ul { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.prose .defn { background: var(--panel); border: 1px solid var(--line); border-left: 2px solid var(--cyan); border-radius: 10px; padding: 14px 18px; margin: 0 0 10px; }
.prose .defn b { color: var(--text); }
.prose address { font-style: normal; color: var(--text); }
.legal-contact { margin-top: 48px; padding: 26px 28px; border: 1px solid var(--line-2); border-radius: var(--radius-lg); background: var(--panel); }
.legal-contact h3 { font-family: var(--display); font-size: 20px; margin-bottom: 8px; }
.legal-contact a { color: var(--cyan); font-weight: 600; }

/* ---------- Article / post detail ---------- */
.article-hero { position: relative; padding: 132px 0 0; }
.article-hero .breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 22px; flex-wrap: wrap; }
.article-hero .breadcrumb a { color: var(--muted-2); }
.article-hero .breadcrumb a:hover { color: var(--cyan); }
.article-wrap { max-width: 860px; margin: 0 auto; }
.article-kicker { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; }
.article-kicker .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.article-kicker .pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(31,200,222,0.3); background: rgba(31,200,222,0.08); border-radius: 100px; padding: 5px 12px; color: var(--cyan); }
.article-kicker .pill.amber { border-color: rgba(255,194,75,0.32); background: rgba(255,194,75,0.1); color: var(--amber); }
.article-kicker .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.article-title { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 5vw, 60px); letter-spacing: -0.035em; line-height: 1.05; margin: 18px 0 14px; }
.article-author { color: var(--muted); font-size: 15px; }
.article-cover { position: relative; margin: 36px 0 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 16/9; box-shadow: 0 50px 90px -55px #000; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.article-body { margin-top: 44px; }
.article-body p { color: #C2CDDA; font-size: 17.5px; line-height: 1.78; margin: 0 0 22px; }
.article-body h2 { font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.02em; color: var(--text); margin: 44px 0 16px; }
.article-body ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.article-body ul li { position: relative; padding-left: 26px; color: #C2CDDA; font-size: 17px; line-height: 1.6; }
.article-body ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(31,200,222,0.12); }
.article-fig { margin: 30px 0; }
.article-fig img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-2); }
.article-fig figcaption { font-family: var(--mono); font-size: 12px; color: var(--muted-2); margin-top: 10px; text-align: center; }
.article-share { display: flex; align-items: center; gap: 14px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.article-share span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.article-share a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: all .25s; }
.article-share a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.article-share svg { width: 18px; height: 18px; }
.article-back { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-weight: 600; font-size: 15px; }
.article-back svg { width: 17px; height: 17px; }

/* more-from rail */
.more-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.article-missing { text-align: center; padding: 80px 0; }
.article-missing h1 { font-family: var(--display); font-size: 40px; margin-bottom: 14px; }
.article-missing p { color: var(--muted); margin-bottom: 24px; }

@media (max-width: 640px) {
  .article-hero { padding: 112px 0 0; }
  .article-body p, .article-body ul li { font-size: 16.5px; }
}

/* ── Loading states & utility ──────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

.grid-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
}
.grid-loading svg {
  width: 18px; height: 18px;
  animation: spin 1s linear infinite;
  color: var(--cyan);
  flex-shrink: 0;
}

.feat-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 200px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
}
.feat-loading svg {
  width: 18px; height: 18px;
  animation: spin 1s linear infinite;
  color: var(--cyan);
}
