/* ============================================================
   DomainDossier — Landing page (domaindossier.io)
   Modern SaaS · crisp white · navy + teal accents
   ============================================================ */

:root {
  --ink:        #0d2540;
  --ink2:       #36506e;
  --muted:      #67798f;
  --faint:      #9aabbd;
  --line:       #e7edf3;
  --line2:      #eff3f8;
  --paper:      #ffffff;
  --wash:       #f7f9fc;
  --wash2:      #f2f6fb;
  --teal:       #0fb6a8;
  --teal-text:  #0a8276;
  --teal-soft:  #e6faf7;
  --teal-line:  #c7f0eb;
  --teal-bright:#5fe0d2;
  --navy:       #0d2540;
  --navy-2:     #143a63;
  --navy-grad:  linear-gradient(158deg, #0d2540 0%, #102f52 55%, #0c3b54 100%);
  --amber:      #b3791a;

  --serif: 'Schibsted Grotesk', sans-serif;
  --sans:  'Hanken Grotesk', sans-serif;
  --mono:  'IBM Plex Mono', monospace;

  --shadow-sm: 0 1px 2px rgba(13,37,64,.06), 0 1px 1px rgba(13,37,64,.04);
  --shadow-md: 0 10px 30px rgba(13,37,64,.10), 0 2px 8px rgba(13,37,64,.05);
  --shadow-lg: 0 40px 90px rgba(13,37,64,.18), 0 12px 30px rgba(13,37,64,.10);
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--teal-bright); color: var(--navy); }

.wrap { width: var(--maxw); max-width: calc(100vw - 48px); margin: 0 auto; }

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-text);
}
.eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: var(--teal); border-radius: 2px;
}
.eyebrow.center::before { display: none; }
h2.section-title {
  font-family: var(--serif); font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.05; margin: 16px 0 0; color: var(--ink);
}
.section-lede {
  font-size: 19px; color: var(--muted); margin: 16px 0 0; max-width: 620px; line-height: 1.55;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px; letter-spacing: -.005em;
  border-radius: 12px; padding: 14px 22px; cursor: pointer; border: 1px solid transparent;
  transition: transform .14s ease, background .15s, box-shadow .18s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 14px 34px rgba(13,37,64,.22); }
.btn-teal { background: var(--teal); color: #052f2b; box-shadow: 0 8px 22px rgba(15,182,168,.30); }
.btn-teal:hover { background: #11c6b6; box-shadow: 0 12px 30px rgba(15,182,168,.40); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: #cdd9e5; background: var(--wash); }
.btn-sm { padding: 10px 16px; font-size: 14.5px; border-radius: 10px; }
.btn .chrome { width: 19px; height: 19px; flex-shrink: 0; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(13,37,64,.02);
}
.nav-inner {
  width: var(--maxw); max-width: calc(100vw - 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-badge {
  width: 31px; height: 31px; flex-shrink: 0; display: block; object-fit: contain;
}
.brand-name { font-family: var(--serif); font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink2); transition: color .15s;
}
.nav-links a:hover { color: var(--teal-text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 15px; font-weight: 600; color: var(--ink2); }
.nav-signin:hover { color: var(--teal-text); }
@media (max-width: 860px) { .nav-links { display: none; } .nav-signin { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 150px 0 0; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(15,182,168,.10), transparent 70%),
    radial-gradient(40% 40% at 85% 5%, rgba(20,58,99,.06), transparent 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line2) 1px, transparent 1px), linear-gradient(90deg, var(--line2) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 55% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(70% 55% at 50% 0%, #000 30%, transparent 75%);
  opacity: .7;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 8px 7px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink2);
  box-shadow: var(--shadow-sm);
}
.hero-badge b { color: var(--teal-text); font-weight: 700; }
.hero-badge .pill {
  font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--teal-text);
  background: var(--teal-soft); border: 1px solid var(--teal-line); border-radius: 100px; padding: 3px 9px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 900; letter-spacing: -.035em;
  font-size: clamp(44px, 6.2vw, 78px); line-height: 1.04; margin: 26px auto 0; max-width: 21ch;
  color: var(--ink); text-wrap: balance;
}
.hero h1 .accent { color: var(--teal-text); position: relative; display: inline-block; white-space: nowrap; margin-right: .22em; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: -.02em; right: -.02em; bottom: .02em; height: .16em;
  background: var(--teal-bright); border-radius: 3px; opacity: .85;
}
.hero-sub {
  font-size: clamp(18px, 2.1vw, 21px); color: var(--muted); line-height: 1.5;
  margin: 24px auto 0; max-width: 600px;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 34px 0 0; flex-wrap: wrap; }
.watch-link {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15.5px; color: var(--ink);
  cursor: pointer;
}
.watch-link .play {
  width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.watch-link:hover .play { transform: scale(1.06); border-color: var(--teal-line); box-shadow: 0 8px 20px rgba(15,182,168,.20); }
.hero-trust {
  display: inline-flex; align-items: center; gap: 14px; margin: 26px 0 0;
  font-size: 14px; color: var(--muted); flex-wrap: wrap; justify-content: center;
}
.hero-trust .stars { color: #f0a92e; letter-spacing: 2px; font-size: 14px; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }
.hero-trust b { color: var(--ink2); font-weight: 700; }

/* inline ExpiredDomains.net link */
.xd { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; text-decoration-color: var(--teal-line); transition: color .15s ease, text-decoration-color .15s ease; }
.xd:hover { color: var(--teal-text); text-decoration-color: var(--teal-text); }

/* ---------- hero demo (browser + extension) ---------- */
.demo-stage { position: relative; margin: 56px auto 0; width: 1000px; max-width: 100%; padding-bottom: 8px; }
.demo-stage::before {
  content: ""; position: absolute; left: 50%; top: 14%; transform: translateX(-50%);
  width: 78%; height: 80%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(15,182,168,.20), transparent 72%);
  filter: blur(20px); z-index: -1;
}
.browser {
  border-radius: 16px 16px 14px 14px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); overflow: hidden; text-align: left;
}
.browser-bar {
  display: flex; align-items: center; gap: 14px; padding: 12px 16px;
  background: #f4f7fa; border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 7px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dots i:nth-child(1){ background:#ff5f57; } .dots i:nth-child(2){ background:#febc2e; } .dots i:nth-child(3){ background:#28c840; }
.url {
  flex: 1; display: flex; align-items: center; gap: 9px; max-width: 460px;
  background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 8px 13px;
  font-family: var(--mono); font-size: 13px; color: var(--ink2);
}
.url svg { flex-shrink: 0; }
.url .path { color: var(--muted); }
.ext-pin {
  display: inline-flex; align-items: center; gap: 7px; margin-left: auto;
  font-size: 12.5px; font-weight: 700; color: var(--teal-text);
  background: var(--teal-soft); border: 1px solid var(--teal-line); border-radius: 8px; padding: 6px 10px;
}
.ext-pin .gem { width: 15px; height: 15px; }

/* viewport: faux registrar page behind + the extension panel */
.browser-view {
  position: relative; min-height: 430px; background:
    linear-gradient(#fff,#fbfcfe);
  display: flex;
}
/* real product screenshot inside the browser frame */
.browser-shot { position: relative; background: #fff; line-height: 0; }
.browser-shot img { width: 100%; display: block; }
.shot-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 84px; pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}
.page-faux { flex: 1; padding: 30px 34px; filter: saturate(.5); opacity: .55; }
.pf-crumb { font-size: 12px; color: var(--faint); font-family: var(--mono); }
.pf-h { height: 22px; width: 50%; background: #e5ebf2; border-radius: 6px; margin: 16px 0 0; }
.pf-row { display: flex; gap: 12px; margin-top: 22px; }
.pf-card { flex: 1; height: 96px; background: #eef3f8; border: 1px solid #e5ebf2; border-radius: 12px; }
.pf-line { height: 11px; background: #eaeff5; border-radius: 5px; margin-top: 12px; }
.pf-line.s { width: 70%; } .pf-line.m { width: 88%; }

/* extension panel */
.ext-panel {
  position: absolute; top: 22px; right: 26px; width: 340px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(13,37,64,.22); overflow: hidden;
}
.ext-head {
  display: flex; align-items: center; gap: 10px; padding: 15px 17px;
  background: var(--navy-grad); color: #fff;
}
.ext-head .gem { width: 26px; height: 26px; border-radius: 7px; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; }
.ext-head .t { font-family: var(--serif); font-weight: 800; font-size: 14.5px; letter-spacing: -.01em; }
.ext-head .dom { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--teal-bright); }
.ext-body { padding: 18px 18px 20px; }
.scan {
  position: relative; height: 5px; border-radius: 4px; background: var(--line2); overflow: hidden; margin-bottom: 18px;
}
.scan i { position: absolute; inset: 0; width: 40%; border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: scanMove 1.4s ease-in-out infinite; }
@keyframes scanMove { 0%{ transform: translateX(-120%);} 100%{ transform: translateX(320%);} }

.ext-value { text-align: left; }
.ext-value .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ext-value .num {
  font-family: var(--mono); font-weight: 700; font-size: 42px; letter-spacing: -.02em; color: var(--teal-text);
  line-height: 1; margin-top: 6px;
}
.ext-value .note { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.ext-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 18px; }
.ext-m {
  background: var(--wash); border: 1px solid var(--line); border-radius: 11px; padding: 11px 12px;
}
.ext-m .k { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ext-m .v { font-family: var(--mono); font-weight: 700; font-size: 16px; color: var(--ink); margin-top: 4px; }
.ext-m .v.teal { color: var(--teal-text); }
.ext-m .v.amber { color: var(--amber); }
.ext-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px;
  width: 100%; background: var(--ink); color: #fff; font-weight: 700; font-size: 13.5px;
  border-radius: 10px; padding: 12px; border: none;
}

/* scan results / ranked list */
.scan-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.scan-head .lbl { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.scan-big { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--ink); margin-top: 5px; }
.scan-big b.teal { color: var(--teal-text); }
.ext-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-soft);
  border: 1px solid var(--teal-line); color: var(--teal-text); display: flex; align-items: center; justify-content: center;
}
.rank-list { display: flex; flex-direction: column; gap: 8px; }
.rank-row {
  display: flex; align-items: center; gap: 11px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 11px; background: #fff;
}
.rank-row.top { background: var(--teal-soft); border-color: var(--teal-line); }
.rank-n { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--faint); width: 16px; flex-shrink: 0; }
.rank-row.top .rank-n { color: var(--teal-text); }
.rank-meta { min-width: 0; }
.rank-dom { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.1; }
.rank-cat { font-size: 11px; color: var(--muted); margin-top: 2px; }
.rank-val { margin-left: auto; font-family: var(--mono); font-weight: 700; font-size: 14px; color: var(--teal-text); }

/* faux expireddomains list behind the panel */
.pf-thead { height: 16px; width: 60%; background: #e3eaf1; border-radius: 5px; margin: 16px 0 12px; }
.pf-trow { height: 13px; background: #e9eef4; border-radius: 4px; margin-bottom: 9px; }
.pf-trow:nth-child(even) { width: 92%; }
.pf-trow:nth-child(odd) { width: 82%; }

/* ============ LOGO / TRUST STRIP ============ */
.strip { padding: 56px 0 8px; text-align: center; }
.strip-label { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.strip-row {
  display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap;
  margin-top: 24px; opacity: .62;
}
.strip-row span { font-family: var(--serif); font-weight: 800; font-size: 21px; color: var(--ink2); letter-spacing: -.02em; }

/* ============ generic section ============ */
section.block { padding: 96px 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px 32px; box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--teal-text);
  background: var(--teal-soft); border: 1px solid var(--teal-line); border-radius: 8px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
}
.step-ico { margin-top: 20px; color: var(--navy); }
.step h3 { font-family: var(--serif); font-weight: 800; font-size: 21px; letter-spacing: -.02em; margin: 16px 0 0; }
.step p { color: var(--muted); font-size: 15.5px; margin: 9px 0 0; line-height: 1.55; }
.step-line { position: absolute; top: 47px; right: -22px; width: 22px; height: 1px; background: var(--line); z-index: 1; }
.step:last-child .step-line { display: none; }
@media (max-width: 820px){ .steps{ grid-template-columns: 1fr; } .step-line{ display:none; } }

/* ============ FEATURES ============ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px 30px;
  transition: transform .18s ease, box-shadow .18s, border-color .18s;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dbe6ef; }
.feat-ico {
  width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--teal-soft); border: 1px solid var(--teal-line); color: var(--teal-text);
}
.feat h3 { font-family: var(--serif); font-weight: 800; font-size: 19.5px; letter-spacing: -.02em; margin: 18px 0 0; }
.feat p { color: var(--muted); font-size: 15px; margin: 8px 0 0; line-height: 1.55; }
@media (max-width: 900px){ .feat-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .feat-grid{ grid-template-columns: 1fr; } }

/* ============ SAMPLE REPORT ============ */
.sample { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sample-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.sample-list { margin: 30px 0 0; display: flex; flex-direction: column; gap: 16px; }
.sample-li { display: flex; gap: 13px; align-items: flex-start; }
.sample-li .ck {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--teal-soft);
  border: 1px solid var(--teal-line); color: var(--teal-text); display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.sample-li b { font-weight: 700; color: var(--ink); }
.sample-li span { color: var(--muted); }
.sample-frame {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); background: #fff;
}
.sample-frame .doc-top { height: 8px; background: var(--navy-grad); }
.sample-shot-wrap { position: relative; font-size: 0; }
.sample-shot { display: block; width: 100%; height: auto; }
.sample-shot-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 110px; background: linear-gradient(to bottom, rgba(255,255,255,0), #fff); pointer-events: none; }
.sample-doc { padding: 30px 32px 36px; }
.sd-row { display: flex; justify-content: space-between; align-items: center; }
.sd-brand { display:flex; align-items:center; gap:9px; font-family:var(--serif); font-weight:800; font-size:15px; }
.sd-brand .b { width:24px;height:24px;border-radius:7px;background:linear-gradient(135deg,#15c2b3,#0fa99b); }
.sd-meta { font-family: var(--mono); font-size: 11px; color: var(--faint); text-align: right; line-height: 1.6; }
.sd-eye { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-text); margin-top: 26px; }
.sd-dom { font-family: var(--serif); font-weight: 900; font-size: 40px; letter-spacing: -.03em; margin-top: 8px; }
.sd-panel { display: grid; grid-template-columns: 1.1fr 1px 1fr 1px 1fr; gap: 16px; align-items: center;
  background: var(--wash); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin-top: 22px; }
.sd-div { width:1px; align-self: stretch; background: var(--line); }
.sd-cell .k { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sd-cell .v { font-family: var(--mono); font-weight: 700; font-size: 16px; margin-top: 5px; color: var(--ink); }
.sd-cell .v.big { font-size: 26px; color: var(--teal-text); }
.sd-bars { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.sd-bar { height: 10px; border-radius: 5px; background: var(--line2); }
.sd-bar.s { width: 86%; } .sd-bar.m { width: 64%; } .sd-bar.l { width: 92%; }
.sample-tag {
  position: absolute; bottom: 16px; right: 16px; font-size: 11.5px; font-weight: 700; color: #fff;
  background: rgba(13,37,64,.78); backdrop-filter: blur(4px); border-radius: 8px; padding: 7px 11px;
  white-space: nowrap;
}
@media (max-width: 880px){ .sample-grid{ grid-template-columns: 1fr; gap: 40px; } }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; margin-top: 50px; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 2px; }
.faq-item h4 { font-family: var(--serif); font-weight: 800; font-size: 18px; letter-spacing: -.015em; margin: 0; }
.faq-item p { color: var(--muted); font-size: 15.5px; margin: 10px 0 0; line-height: 1.6; }
@media (max-width: 760px){ .faq-grid{ grid-template-columns: 1fr; gap: 0; } }

/* ============ FINAL CTA ============ */
.cta-band { padding: 30px 0 110px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: 26px; background: var(--navy-grad); color: #fff;
  padding: 72px 56px; text-align: center; box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 80% at 50% 0%, rgba(95,224,210,.18), transparent 70%);
}
.cta-card::after {
  content: ""; position: absolute; right: -80px; bottom: -120px; width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(15,182,168,.22), transparent 70%);
}
.cta-card .eyebrow { color: var(--teal-bright); position: relative; }
.cta-card h2 {
  position: relative; font-family: var(--serif); font-weight: 900; letter-spacing: -.03em;
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1.02; margin: 16px auto 0; max-width: 18ch;
}
.cta-card p { position: relative; color: rgba(255,255,255,.74); font-size: 19px; margin: 18px auto 0; max-width: 500px; }
.cta-card .hero-cta { margin-top: 32px; }
.cta-card .btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.20); color: #fff; }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,.14); }
.cta-card .mini { position: relative; margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.6); }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 50px 0 56px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand-name { font-size: 17px; }
.footer-tag { color: var(--muted); font-size: 14.5px; margin: 14px 0 0; max-width: 280px; line-height: 1.55; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--ink2); margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: var(--teal-text); }
.footer-bot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--faint); flex-wrap: wrap;
}

/* ============ DEMO MODAL ============ */
.modal {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 30px;
  background: rgba(9,22,38,.66); backdrop-filter: blur(6px);
}
.modal.open { display: flex; }
.modal-card {
  width: 940px; max-width: 100%; background: #0c1c30; border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.modal-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; color: #fff; }
.modal-top .t { font-family: var(--serif); font-weight: 700; font-size: 15px; }
.modal-close { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.10); border: none; color: #fff; cursor: pointer; font-size: 18px; line-height: 1; }
.modal-close:hover { background: rgba(255,255,255,.18); }
.modal-video { aspect-ratio: 16 / 9; background: #081523; }
.modal-video image-slot { width: 100%; height: 100%; }
.modal-note { padding: 14px 18px; color: rgba(255,255,255,.55); font-size: 13px; text-align: center; }

/* ============ PRICING ============ */
.price-legend {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin: 32px auto 0; font-size: 14.5px; color: var(--muted);
}
.price-legend .pl-item b { font-family: var(--mono); font-weight: 700; color: var(--teal-text); margin-left: 4px; }
.price-legend .pl-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; align-items: stretch; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 28px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--teal-line); box-shadow: var(--shadow-md); }
.pc-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #052f2b; font-size: 12px; font-weight: 700; letter-spacing: .01em;
  padding: 5px 14px; border-radius: 100px; white-space: nowrap; box-shadow: 0 6px 16px rgba(15,182,168,.3);
}
.pc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pc-name { font-family: var(--serif); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.pc-save {
  font-size: 11.5px; font-weight: 700; color: var(--teal-text);
  background: var(--teal-soft); border: 1px solid var(--teal-line); border-radius: 100px; padding: 4px 10px;
}
.pc-base { font-size: 11.5px; font-weight: 700; color: var(--faint); }
.pc-price { font-family: var(--serif); font-weight: 900; font-size: 52px; letter-spacing: -.03em; color: var(--ink); margin-top: 18px; line-height: 1; }
.pc-price .cur { font-size: 26px; font-weight: 800; vertical-align: super; margin-right: 1px; color: var(--ink2); }
.pc-points { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--teal-text); margin-top: 10px; }
.pc-rate { font-family: var(--mono); font-size: 12.5px; color: var(--faint); margin-top: 5px; }
.pc-divider { height: 1px; background: var(--line); margin: 22px 0 16px; }
.pc-rows-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pc-rows { display: flex; flex-direction: column; gap: 12px; }
.pc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.pcr-k { font-size: 14.5px; color: var(--ink2); }
.pcr-v { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--ink); white-space: nowrap; }
.pcr-v s { color: var(--faint); font-weight: 500; font-size: 12.5px; margin-left: 5px; text-decoration-thickness: 1px; }
.pc-btn { width: 100%; margin-top: 24px; }
.price-foot { text-align: center; font-size: 14px; color: var(--faint); margin: 28px 0 0; }
@media (max-width: 900px){ .price-grid{ grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* ============ scroll reveal (visible by default; JS hides only below-fold) ============ */
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.pre { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.pre { opacity: 1; transform: none; transition: none; }
  .scan i { animation: none; }
  html { scroll-behavior: auto; }
}
