/* ============================================================
   Plots in Panipat — homepage styles
   Mobile-first. Editorial-calm, high-trust real-estate product.
   ============================================================ */

:root {
  /* Tweakable tokens (overridden at runtime by the Tweaks panel) */
  --c-primary: #104f4c;        /* deep teal */
  --c-primary-700: #0b3a38;
  --c-primary-300: #4f8a86;
  --c-primary-tint: #e4f0ee;
  --c-accent: #bf6a45;         /* terracotta / clay */
  --c-accent-600: #a85733;
  --c-accent-tint: #f6e7df;

  --radius: 14px;

  --font-head: "Spectral", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;

  /* Fixed neutral system */
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #f0ede5;
  --ink: #1a221e;
  --ink-2: #4b554f;
  --ink-3: #818b84;
  --line: #e4e0d6;
  --line-2: #efece4;
  --verify: #2f7d57;
  --verify-tint: #e3f0e8;

  --shadow-sm: 0 1px 2px rgba(26, 34, 30, .05), 0 1px 3px rgba(26, 34, 30, .06);
  --shadow-md: 0 4px 14px rgba(26, 34, 30, .08), 0 2px 6px rgba(26, 34, 30, .05);
  --shadow-lg: 0 18px 48px rgba(11, 58, 56, .16), 0 4px 12px rgba(11, 58, 56, .08);

  --maxw: 1200px;
  --pad: clamp(18px, 5vw, 40px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--c-accent); color: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.btn-accent:hover { background: var(--c-accent-600); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-700); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); background: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; flex: none; }
.icon-sm { width: 15px; height: 15px; }

/* ---------- verified badge ---------- */
.verified {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--verify); background: var(--verify-tint);
  padding: 4px 9px 4px 7px; border-radius: 100px; line-height: 1;
}
.verified svg { width: 13px; height: 13px; }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 100px;
  transition: border-color .15s, color .15s, background .15s, transform .12s;
}
.chip:hover { border-color: var(--c-primary-300); color: var(--c-primary); transform: translateY(-1px); }
.chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-accent); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 245, 240, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 18px; height: 66px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  background: var(--c-primary); position: relative;
  display: grid; place-items: center;
}
.logo-mark::after {
  content: ""; width: 10px; height: 10px; background: var(--c-accent);
  border-radius: 2px; transform: rotate(45deg);
}
.logo-text { font-family: var(--font-head); font-weight: 600; font-size: 18px; letter-spacing: -.02em; white-space: nowrap; }
.logo-text b { color: var(--c-primary); font-weight: 600; }
.logo-text span { color: var(--ink-3); font-weight: 500; }

.nav { display: none; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); white-space: nowrap;
  padding: 8px 12px; border-radius: 8px; transition: background .15s, color .15s;
}
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--surface); display: grid; place-items: center; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.icon-btn:hover { border-color: var(--ink-3); }
.list-btn { display: none; }
.menu-btn { display: grid; }

@media (min-width: 920px) {
  .nav { display: flex; }
  .list-btn { display: inline-flex; }
  .menu-btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--c-primary);
  color: #fff;
  padding: clamp(40px, 8vw, 76px) 0 clamp(120px, 16vw, 150px);
}
/* cadastral / plot-grid map motif */
.hero-motif { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.hero-motif .grid {
  position: absolute; inset: -10%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(700px) rotateX(34deg) scale(1.4);
  transform-origin: center 30%;
  mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 78%);
}
.hero-motif .road {
  position: absolute; height: 2px; background: rgba(191,106,69,.35);
}
.hero-motif .r1 { top: 26%; left: -5%; width: 60%; transform: rotate(-9deg); }
.hero-motif .r2 { top: 54%; right: -8%; width: 72%; transform: rotate(6deg); background: rgba(255,255,255,.12); }
.hero-motif .marker {
  position: absolute; width: 9px; height: 9px; background: var(--c-accent);
  transform: rotate(45deg); border-radius: 2px; box-shadow: 0 0 0 5px rgba(191,106,69,.18);
}

.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.2); padding: 6px 12px; border-radius: 100px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }
.hero h1 {
  font-size: clamp(33px, 7vw, 60px); margin: 20px 0 0; max-width: 16ch;
  font-weight: 600; letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: #f2d9c9; }
.hero-sub {
  font-size: clamp(15.5px, 2.4vw, 19px); color: rgba(255,255,255,.8);
  margin-top: 16px; max-width: 52ch;
}

/* search card */
.search-card {
  position: relative; z-index: 3;
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px; margin-top: 30px; max-width: 980px;
  margin-bottom: clamp(-110px, -14vw, -130px);
}
.search-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.search-field { padding: 10px 12px; border-radius: 10px; transition: background .15s; cursor: pointer; }
.search-field:hover { background: var(--surface-2); }
.search-field label {
  display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px;
}
.search-field .val { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.search-field .val span { font-size: 15px; font-weight: 600; color: var(--ink); }
.search-field .val .ph { color: var(--ink-3); font-weight: 500; }
.search-field .val svg { color: var(--ink-3); }
.search-divider { height: 1px; background: var(--line-2); margin: 2px 8px; }
.search-cta { padding: 4px; }

@media (min-width: 760px) {
  .search-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
    gap: 0; align-items: stretch;
  }
  .search-field { border-right: 1px solid var(--line-2); border-radius: 0; }
  .search-field:first-child { border-radius: 10px 0 0 10px; }
  .search-divider { display: none; }
  .search-cta { padding: 0 0 0 6px; display: flex; align-items: center; }
  .search-cta .btn { height: 100%; }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { scroll-margin-top: 80px; }
.section { padding: clamp(48px, 8vw, 84px) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.section-head .st { max-width: 60ch; }
.section-head h2 { font-size: clamp(24px, 4vw, 34px); margin-top: 8px; }
.section-head p { color: var(--ink-2); margin-top: 8px; font-size: 15.5px; }
.section-link { font-weight: 600; font-size: 14.5px; color: var(--c-primary); display: inline-flex; align-items: center; gap: 6px; }
.section-link:hover { gap: 9px; }
.section-link svg { transition: transform .15s; }

/* spacer that absorbs the hero card overlap */
.below-hero { padding-top: clamp(124px, 17vw, 150px); }

/* ---------- popular chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }

/* ============================================================
   FEATURED BUILDERS  (high prominence)
   ============================================================ */
.builders-band { background: var(--c-primary); color: #fff; border-radius: 22px; padding: clamp(26px,4vw,40px); }
.builders-band .section-head h2 { color: #fff; }
.builders-band .section-head p { color: rgba(255,255,255,.72); }
.builders-band .eyebrow { color: rgba(255,255,255,.6); }
.builder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.builder-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 14px;
  transition: background .18s, border-color .18s, transform .18s;
}
.builder-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); transform: translateY(-3px); }
.builder-logo {
  width: 100%; height: 56px; border-radius: 10px; background: #fff;
  display: flex; align-items: center; gap: 10px; padding: 0 16px;
}
.builder-logo .bmono {
  width: 34px; height: 34px; border-radius: 8px; flex: none; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff;
}
.builder-logo .bname { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--c-primary); letter-spacing: -.01em; line-height: 1.05; }
.builder-logo .bname small { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; font-weight: 500; margin-top: 2px; }
.builder-meta { display: flex; align-items: center; justify-content: space-between; }
.builder-meta .count { font-size: 14px; color: rgba(255,255,255,.78); }
.builder-meta .count b { color: #fff; font-weight: 700; }
.builder-meta .go { font-size: 13.5px; font-weight: 600; color: #f2d9c9; display: inline-flex; align-items: center; gap: 5px; }

@media (min-width: 760px) { .builder-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   FEATURED PROJECTS / TOWNSHIPS  (high prominence)
   ============================================================ */
.project-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.project-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s; display: flex; flex-direction: column;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line); }
.project-media { position: relative; aspect-ratio: 16 / 10; }
.project-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.builder-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(26,34,30,.72); color: #fff; padding: 5px 9px; border-radius: 6px; backdrop-filter: blur(4px);
}
.project-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.project-body .ptop { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.project-body h3 { font-size: 20px; }
.project-body .loc { font-size: 13.5px; color: var(--ink-3); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
.project-price { text-align: right; flex: none; }
.project-price .from { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.project-price .amt { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--c-primary); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: 12px; font-weight: 500; color: var(--ink-2); background: var(--surface-2); padding: 5px 10px; border-radius: 7px; }
.project-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; }
.project-foot .units { font-size: 13px; color: var(--ink-3); }
.project-foot .view { font-size: 14px; font-weight: 600; color: var(--c-accent-600); display: inline-flex; align-items: center; gap: 5px; }

@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.ph-img {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  background-color: var(--c-primary-tint);
  background-image: repeating-linear-gradient(135deg, rgba(16,79,76,.06) 0 10px, transparent 10px 20px);
  display: grid; place-items: center;
}
.ph-img .ph-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-primary); background: rgba(255,255,255,.7); padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(16,79,76,.12);
}

/* ============================================================
   BROWSE BY SECTOR
   ============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sector-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 4px; min-height: 96px;
  transition: border-color .15s, transform .15s, box-shadow .15s; justify-content: space-between;
}
.sector-card:hover { border-color: var(--c-primary-300); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.sector-card .sname { font-family: var(--font-head); font-weight: 600; font-size: 17px; }
.sector-card .scorr { font-size: 12.5px; color: var(--ink-3); }
.sector-card .scount { font-size: 13px; font-weight: 600; color: var(--c-primary); margin-top: auto; }
.sector-card .scount span { color: var(--ink-3); font-weight: 500; }
.sector-card.is-corridor { background: var(--c-primary-tint); border-color: transparent; }

@media (min-width: 680px) { .sector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .sector-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   BROWSE BY BUDGET & SIZE
   ============================================================ */
.tile-split { display: grid; grid-template-columns: 1fr; gap: 26px; }
.tile-group .tg-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.tile-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s, background .15s, transform .15s;
}
.tile:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.tile .tval { font-family: var(--font-head); font-weight: 600; font-size: 18px; }
.tile .tsub { font-size: 12.5px; color: var(--ink-3); }
@media (min-width: 720px) { .tile-split { grid-template-columns: 1.4fr 1fr; } .tile-row { grid-template-columns: repeat(4,1fr); } .tile-group.sizes .tile-row { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   LATEST PLOTS
   ============================================================ */
.filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; margin-bottom: 22px;
}
.filter-bar .fb-label { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.fb-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.fb-pill { font-size: 13px; font-weight: 500; color: var(--ink-2); padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line); background: var(--surface); transition: all .15s; }
.fb-pill:hover { border-color: var(--c-primary-300); color: var(--c-primary); }
.fb-pill.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.fb-sort { margin-left: auto; display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.fb-sort select { font-family: inherit; font-size: 13px; font-weight: 600; border: 1px solid var(--line); border-radius: 8px; padding: 6px 8px; background: var(--surface); color: var(--ink); }

.plot-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.plot-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s, transform .18s;
}
.plot-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.plot-media { position: relative; aspect-ratio: 3 / 2; }
.plot-fav {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--ink-2);
  border: none; box-shadow: var(--shadow-sm);
}
.plot-fav:hover { color: var(--c-accent); }
.plot-type-tag { position: absolute; bottom: 10px; left: 10px; font-size: 11px; font-weight: 600; background: rgba(255,255,255,.94); color: var(--ink); padding: 4px 9px; border-radius: 6px; }
.plot-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 10px; }
.plot-body .prow1 { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.plot-price { font-family: var(--font-head); font-weight: 600; font-size: 21px; color: var(--ink); white-space: nowrap; }
.plot-price .pgaj { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-3); font-weight: 500; margin-left: 2px; }
.plot-loc { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 5px; }
.plot-specs { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 12.5px; color: var(--ink-3); padding-top: 10px; border-top: 1px solid var(--line-2); }
.plot-specs .spec { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.plot-specs .spec b { color: var(--ink-2); font-weight: 600; }

@media (min-width: 600px) { .plot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .plot-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px){ .plot-grid { grid-template-columns: repeat(4, 1fr); } }

.see-more { display: flex; justify-content: center; margin-top: 30px; }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.trust-item { display: flex; flex-direction: column; gap: 8px; }
.trust-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--c-primary-tint); color: var(--c-primary); display: grid; place-items: center; }
.trust-ico svg { width: 22px; height: 22px; }
.trust-item h3 { font-size: 18px; }
.trust-item p { font-size: 14.5px; color: var(--ink-2); }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .trust-grid { grid-template-columns: repeat(4,1fr); gap: 32px; } }

/* ============================================================
   COMPARE TEASER
   ============================================================ */
.compare {
  background: var(--c-primary-tint); border-radius: 22px; padding: clamp(26px,4vw,44px);
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
.compare .ct h2 { font-size: clamp(24px,4vw,32px); color: var(--c-primary); }
.compare .ct p { color: var(--ink-2); margin-top: 10px; font-size: 15.5px; max-width: 46ch; }
.compare-vis { display: flex; gap: 10px; }
.compare-col { flex: 1; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px; box-shadow: var(--shadow-sm); }
.compare-col .cc-h { font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.compare-col .cc-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 6px 0; border-top: 1px solid var(--line-2); }
.compare-col .cc-row span:first-child { color: var(--ink-3); }
.compare-col .cc-row span:last-child { font-weight: 600; color: var(--ink); }
.compare-col.win { border-color: var(--c-accent); }
@media (min-width: 860px) { .compare { grid-template-columns: 1.1fr 1fr; gap: 40px; } }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insight-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.insight-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .18s, transform .18s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.insight-media { aspect-ratio: 16/9; }
.insight-body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.kind-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.kind-tag.news { color: var(--c-accent-600); }
.kind-tag.guide { color: var(--c-primary); }
.insight-body h3 { font-size: 18px; line-height: 1.2; }
.insight-body p { font-size: 13.5px; color: var(--ink-2); }
.insight-body .meta { margin-top: auto; padding-top: 10px; font-size: 12px; color: var(--ink-3); }
@media (min-width: 720px) { .insight-grid { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   LEAD CTA
   ============================================================ */
.lead {
  background: var(--c-primary); color: #fff; border-radius: 22px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1fr; gap: 24px; padding: clamp(28px,4vw,48px);
}
.lead .lmotif { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(80% 120% at 100% 0%, #000, transparent 70%); -webkit-mask-image: radial-gradient(80% 120% at 100% 0%, #000, transparent 70%); }
.lead-copy { position: relative; z-index: 2; }
.lead-copy .eyebrow { color: rgba(255,255,255,.6); }
.lead-copy h2 { font-size: clamp(26px,4vw,38px); margin-top: 10px; }
.lead-copy p { color: rgba(255,255,255,.8); margin-top: 12px; font-size: 16px; max-width: 44ch; }
.lead-form { position: relative; z-index: 2; background: var(--surface); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.lead-form h3 { color: var(--ink); font-size: 19px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.field input, .field select {
  font-family: inherit; font-size: 15px; color: var(--ink); padding: 12px 13px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg); width: 100%;
}
.field input::placeholder { color: var(--ink-3); }
.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form .fineprint { font-size: 11.5px; color: var(--ink-3); }
.seller-line { position: relative; z-index: 2; grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px; }
.seller-line p { color: rgba(255,255,255,.82); font-size: 15px; }
.seller-line p b { color: #fff; font-weight: 600; }
@media (min-width: 860px) { .lead { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--c-primary-700); color: rgba(255,255,255,.7); padding: clamp(44px,6vw,68px) 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
.footer-brand { grid-column: 1 / -1; max-width: 32ch; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text b, .footer-brand .logo-text span { color: #fff; }
.footer-brand p { font-size: 13.5px; margin-top: 14px; color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.66); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 9px; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: rgba(255,255,255,.8); }
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; gap: 14px; }
.footer-bottom .disclaimer { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.5); max-width: 92ch; }
.footer-bottom .legal-row { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; justify-content: space-between; }
.footer-bottom .legal-row .links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-row a { font-size: 12.5px; color: rgba(255,255,255,.6); }
.footer-bottom .copy { font-size: 12.5px; color: rgba(255,255,255,.5); }
@media (min-width: 620px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } .footer-brand { grid-column: auto; } }

/* reveal-on-load niceties */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .6s cubic-bezier(.2,.7,.3,1) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
