/* =====================================================================
   High Country Fleet Card — Components & Layout
   Hand-built design system. Dark-first, mobile-first.
   ===================================================================== */

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--bone);
  background: var(--pine);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--harvest-gold);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--trail-orange); color: var(--bone); }

/* --------------------------- Typography -------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}
.display     { font-size: var(--fs-display); line-height: var(--lh-tight); font-weight: 700; }
h1, .h1      { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2, .h2      { font-size: var(--fs-h2); }
h3, .h3      { font-size: var(--fs-h3); }
h4, .h4      { font-size: var(--fs-h4); letter-spacing: 0; }
.lead        { font-size: var(--fs-lead); line-height: 1.5; color: var(--bone-70); font-weight: 300; text-transform: none; }
p            { color: var(--bone-70); }
strong       { color: var(--bone); font-weight: 600; }
.text-gold   { color: var(--harvest-gold); }
.text-orange { color: var(--trail-orange); }
.accent {
  font-family: var(--font-accent);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* Kicker / eyebrow */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-display);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--harvest-gold);
}
.kicker::before {
  content: "";
  width: 1.8em; height: 2px;
  background: linear-gradient(90deg, transparent, var(--harvest-gold));
  display: inline-block;
}
.kicker.center::before { display: none; }

/* --------------------------- Layout ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: var(--container-narrow); }
.container.wide   { max-width: var(--container-wide); }

.section { position: relative; padding-block: var(--section-y); }
.section.tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }

/* Section grounds carry subtle layered depth instead of flat fields —
   avoids dull green-on-green and reads more premium, closer to the hero. */
.bg-pine {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(217,164,65,.07), transparent 55%),
    radial-gradient(120% 100% at 0% 100%, rgba(27,43,32,.7), transparent 60%),
    linear-gradient(168deg, #2a4130 0%, var(--pine) 52%, #20311f 100%);
}
.bg-saddle {
  background:
    radial-gradient(120% 90% at 82% 4%, rgba(217,164,65,.08), transparent 55%),
    radial-gradient(110% 110% at 6% 100%, rgba(28,21,18,.55), transparent 62%),
    linear-gradient(168deg, #4f3b31 0%, var(--saddle) 54%, #3a2c25 100%);
}
.bg-espresso {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(198,97,29,.08), transparent 55%),
    linear-gradient(170deg, #221a16 0%, var(--espresso) 60%, #160f0c 100%);
}
.bg-pine-dark{
  background:
    radial-gradient(120% 100% at 75% 6%, rgba(217,164,65,.06), transparent 55%),
    linear-gradient(170deg, #21321f 0%, var(--pine-900) 60%, #15241a 100%);
}
.bg-bone     { background: var(--bone); color: var(--espresso); }
.bg-bone p   { color: rgba(28,21,18,.72); }
.bg-bone .lead { color: rgba(28,21,18,.7); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.6rem; }
.section-head p { margin-top: 1.1rem; }

.grid { display: grid; gap: clamp(1.25rem, 0.8rem + 1.6vw, 2rem); }
@media (min-width: 640px) { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) and (max-width: 879px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }

/* ------------------- Decorative: grain / topo / mesh ------------- */
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.28;                 /* softened for a smoother, more premium surface */
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
/* even smoother grain on warm/brown sections where grit reads strongest */
.bg-saddle.grain::after, .grain.smooth::after { opacity: 0.18; }
/* page-wide subtle grain */
.page-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.topo {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.topo svg { position: absolute; width: 140%; height: 140%; top: -20%; left: -20%; opacity: .5; }
.topo path { fill: none; stroke: var(--gold-08); stroke-width: 1.2; }

/* layered dusk gradient mesh */
.mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.mesh::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(60% 55% at 70% 18%, rgba(217,164,65,.22), transparent 60%),
    radial-gradient(70% 60% at 82% 30%, rgba(198,97,29,.20), transparent 62%),
    radial-gradient(80% 70% at 18% 85%, rgba(59,82,64,.55), transparent 70%),
    radial-gradient(120% 120% at 50% 120%, rgba(27,43,32,.9), transparent 70%);
  filter: saturate(1.05);
}

/* section divider — torn ridgeline rule */
.rule-gold {
  height: 2px; border: 0; width: 64px;
  background: linear-gradient(90deg, var(--harvest-gold), transparent);
}
.rule-gold.center { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--harvest-gold), transparent); }

/* --------------------------- Buttons ----------------------------- */
.btn {
  --bg: var(--trail-orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95em 1.6em;
  border-radius: var(--r-pill);
  color: var(--bone);
  background: var(--bg);
  position: relative;
  transition: transform var(--t-fast) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out),
              background-color var(--t-base) var(--ease-out);
  box-shadow: var(--shadow-orange);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform var(--t-base) var(--ease-spring); }
.btn:hover { transform: translateY(-2px); background: var(--orange-bright); box-shadow: 0 20px 44px rgba(198,97,29,.5); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn.ghost {
  background: transparent;
  color: var(--bone);
  box-shadow: none;
  border: 1.5px solid var(--bone-40);
}
.btn.ghost:hover { background: var(--bone-08); border-color: var(--bone-70); transform: translateY(-2px); }

.btn.gold { --bg: var(--harvest-gold); color: var(--espresso); box-shadow: 0 14px 34px rgba(217,164,65,.35); }
.btn.gold:hover { background: var(--gold-soft); box-shadow: 0 20px 44px rgba(217,164,65,.45); }

.btn.solid-bone { background: var(--bone); color: var(--espresso); box-shadow: var(--shadow-md); }
.btn.solid-bone:hover { background: #fff; }

.btn.lg { padding: 1.1em 2em; font-size: 1rem; }
.btn.block { width: 100%; }

/* phone CTA (primary conversion — "talk to a real person") */
.btn-phone .num { font-variant-numeric: tabular-nums; }

/* text link with animated underline */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: var(--harvest-gold);
  width: fit-content;
}
.link-arrow svg { width: 1em; transition: transform var(--t-base) var(--ease-spring); }
.link-arrow::after {
  content: ""; position: absolute;
}
.link-arrow { position: relative; padding-bottom: 2px; }
.link-arrow span { position: relative; }
.link-arrow span::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1.5px;
  background: currentColor; transition: right var(--t-base) var(--ease-out);
}
.link-arrow:hover span::after { right: 0; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ----------------------------- Nav ------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav.scrolled {
  background: rgba(27,21,18,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--bone-08), var(--shadow-sm);
}
.nav-logo img { height: 30px; width: auto; }
.nav-logo { display: flex; align-items: center; }

.nav-links { display: none; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav-links a {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.84rem;
  color: var(--bone-70); position: relative; padding-block: 4px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--trail-orange); transition: width var(--t-base) var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active::after { background: var(--harvest-gold); }

.nav-cta { display: none; align-items: center; gap: 1rem; }
.nav-cta .btn { padding: 0.7em 1.25em; font-size: 0.82rem; box-shadow: none; }
.nav-cta .btn:hover { box-shadow: var(--shadow-orange); }

@media (min-width: 980px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* mobile menu */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px;
  z-index: var(--z-menu);
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 26px; height: 2px; background: var(--bone); border-radius: 2px; transition: transform var(--t-base) var(--ease-spring), opacity var(--t-fast); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: linear-gradient(160deg, var(--pine) 0%, var(--espresso) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease-out);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu .topo { opacity: .6; }
.mobile-menu nav { position: relative; z-index: 1; }
.mobile-menu a.m-link {
  display: block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(2rem, 1.4rem + 5vw, 3rem); line-height: 1.25;
  color: var(--bone); padding: 0.25rem 0;
  opacity: 0; transform: translateY(20px);
}
body.menu-open .mobile-menu a.m-link { animation: rise var(--t-slow) var(--ease-out) forwards; }
.mobile-menu a.m-link:nth-child(1){animation-delay:.12s}
.mobile-menu a.m-link:nth-child(2){animation-delay:.18s}
.mobile-menu a.m-link:nth-child(3){animation-delay:.24s}
.mobile-menu a.m-link:nth-child(4){animation-delay:.30s}
.mobile-menu a.m-link:nth-child(5){animation-delay:.36s}
.mobile-menu a.m-link .idx { color: var(--harvest-gold); font-size: 0.9rem; vertical-align: super; margin-right: .5rem; -webkit-text-stroke: 0; }
.mobile-menu .m-foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; opacity: 0; animation: rise var(--t-slow) var(--ease-out) .44s forwards; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* --------------------------- Hero -------------------------------- */
.hero {
  position: relative; isolation: isolate;
  padding-top: clamp(8rem, 6rem + 8vw, 11rem);
  padding-bottom: clamp(3rem, 2rem + 6vw, 6rem);
  overflow: hidden;
  min-height: min(100vh, 920px);
  display: flex; align-items: center;
  /* warmer, richer western ground — saddle/espresso lead, pine kept but subordinate */
  background:
    radial-gradient(75% 85% at 10% 100%, rgba(36,56,41,.45), transparent 60%),
    linear-gradient(158deg, #2b2017 0%, #241a13 46%, #1d160f 100%);
}
.hero-stack { width: 100%; }

/* warm the hero mesh: more gold / copper / bronze, less green */
.hero .mesh::before {
  background:
    radial-gradient(58% 54% at 72% 15%, rgba(217,164,65,.30), transparent 60%),
    radial-gradient(66% 58% at 85% 30%, rgba(198,97,29,.26), transparent 62%),
    radial-gradient(52% 50% at 60% 22%, rgba(168,96,43,.24), transparent 60%),
    radial-gradient(78% 72% at 16% 90%, rgba(59,82,64,.36), transparent 70%),
    radial-gradient(120% 120% at 50% 120%, rgba(29,22,15,.92), transparent 70%);
}
/* warm the hero ridgeline (scoped) */
.hero .ridge .far { fill: rgba(58,42,30,.5); }
.hero .ridge .mid { fill: rgba(33,24,16,.78); }

/* premium horizontal benefit strip beneath the CTAs */
.hero-benefits {
  margin-top: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  position: relative; z-index: 3;
  border-top: 1px solid var(--gold-30);
  padding-top: clamp(1.3rem, .9rem + 1.1vw, 1.9rem);
  display: grid; gap: 1rem clamp(1rem, 2vw, 1.8rem);
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 600px) { .hero-benefits { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1080px) { .hero-benefits { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.hero-benefits .hb { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.hero-benefits .hb .ic {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(217,164,65,.18), rgba(168,96,43,.12));
  border: 1px solid var(--gold-30); color: var(--harvest-gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-benefits .hb .ic svg { width: 18px; height: 18px; }
.hero-benefits .hb .txt { display: flex; flex-direction: column; line-height: 1.16; min-width: 0; }
.hero-benefits .hb b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; font-weight: 600; color: var(--bone-90); }
.hero-benefits .hb .sub { font-size: .68rem; color: var(--bone-40); }
.hero-foot-note { position: relative; z-index: 3; margin-top: .8rem; font-size: .68rem; color: var(--bone-40); }
/* cinematic photo behind hero — graded dark toward palette */
.hero-photo {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28,21,18,.62) 0%, rgba(28,21,18,.8) 58%, var(--espresso) 97%),
    radial-gradient(85% 70% at 78% 16%, rgba(217,164,65,.26), transparent 60%),
    radial-gradient(70% 60% at 88% 28%, rgba(198,97,29,.24), transparent 62%),
    url("https://images.unsplash.com/photo-1741482528360-662f28391474?q=80&w=1900&auto=format&fit=crop") center 44%/cover no-repeat;
  filter: saturate(1.03) contrast(1.02);
}
.hero-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, var(--espresso) 6%, transparent 56%); }

.cta-photo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(71,54,46,.78), rgba(28,21,18,.86)),
    url("https://images.unsplash.com/photo-1650511503717-113b2459fd13?q=80&w=1900&auto=format&fit=crop") center 60%/cover no-repeat;
  mix-blend-mode: normal; filter: saturate(.95);
}

.hero-grid {
  display: grid; gap: clamp(2.5rem, 1rem + 6vw, 4rem); align-items: center;
  width: 100%;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }

/* Hero variant with the lead form in the right column */
@media (min-width: 980px) {
  .hero-grid--form { grid-template-columns: 1fr 0.92fr; align-items: start; gap: clamp(3rem, 1.5rem + 4vw, 5.5rem); }
}
.hero-form { position: relative; z-index: 3; width: 100%; }
/* card now sits under the buttons, left-aligned and a touch smaller */
.hero-card-stage.card-inline { justify-content: flex-start; margin-top: clamp(1.6rem, 1rem + 1.6vw, 2.4rem); perspective: 1400px; }
.hero-card-stage.card-inline .fuel-card { width: min(380px, 88%); }
@media (max-width: 979px) {
  .hero-card-stage.card-inline { justify-content: center; }
  .hero-card-stage.card-inline .fuel-card { width: min(420px, 92%); }
}

.hero-copy { position: relative; z-index: 3; max-width: 38rem; }
.hero h1 { margin: 1.1rem 0 0; }
.hero .display em {
  font-family: var(--font-accent); font-style: italic; text-transform: none;
  color: var(--harvest-gold); font-weight: 600; letter-spacing: 0;
}
.hero .lead { margin-top: 1.4rem; max-width: 34rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-actions .micro { font-size: var(--fs-xs); color: var(--bone-55); display: flex; align-items: center; gap: .5em; }

.hero-trust { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; }
.hero-trust .ht { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-sm); color: var(--bone-70); }
.hero-trust svg { color: var(--harvest-gold); width: 1.15em; flex: none; }

/* Hero load stagger */
.hero [data-rise] { opacity: 0; transform: translateY(24px); }
.hero.loaded [data-rise] { animation: rise .9s var(--ease-out) forwards; }
.hero.loaded [data-rise="1"]{animation-delay:.05s}
.hero.loaded [data-rise="2"]{animation-delay:.15s}
.hero.loaded [data-rise="3"]{animation-delay:.27s}
.hero.loaded [data-rise="4"]{animation-delay:.39s}
.hero.loaded [data-rise="5"]{animation-delay:.5s}
.hero.loaded [data-rise="6"]{animation-delay:.62s}
.hero.loaded .hero-card-stage{animation:rise 1.1s var(--ease-out) .35s forwards}

/* --------------------- Fuel card (CSS-built) --------------------- */
.hero-card-stage {
  position: relative; z-index: 2; perspective: 1400px;
  display: flex; justify-content: center;
  opacity: 0; transform: translateY(24px);
}
.fuel-card {
  --tiltx: 0deg; --tilty: 0deg;
  position: relative;
  width: min(500px, 92vw);          /* the primary focal point */
  transform: rotateX(var(--tiltx)) rotateY(var(--tilty));
  transform-style: preserve-3d;
  transition: transform .2s var(--ease-out);
  will-change: transform;
  /* shape-accurate premium shadow that follows the card's rounded silhouette */
  filter:
    drop-shadow(0 38px 46px rgba(8,5,3,.55))
    drop-shadow(0 16px 22px rgba(28,21,18,.5))
    drop-shadow(0 3px 6px rgba(8,5,3,.45));
}
.fuel-card img { width: 100%; height: auto; display: block; }
/* soft moving gloss, masked to the card's own alpha so corners stay clean */
.fuel-card .fc-sheen {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,246,226,.16) 49%, transparent 58%);
  transform: translateX(-30%);
  mix-blend-mode: screen;
  -webkit-mask: url("../assets/fleet-card.webp") center/contain no-repeat;
          mask: url("../assets/fleet-card.webp") center/contain no-repeat;
}

/* floating accent chips behind card */
.hero-card-stage .chip-float {
  position: absolute; z-index: 1; border-radius: 14px;
  background: var(--bone-04); border: var(--hair);
  backdrop-filter: blur(6px);
  padding: .7rem .9rem; display: flex; gap: .6rem; align-items: center;
  box-shadow: var(--shadow-sm); font-size: var(--fs-xs);
}
.chip-float .dot { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold); flex: none; }
.chip-float b { display:block; color: var(--bone); font-family: var(--font-display); font-size: .95rem; }
.chip-float small { color: var(--bone-55); }
.chip-a { top: 6%; right: -4%; }
.chip-b { bottom: 4%; left: -6%; }
@media (max-width: 520px){ .hero-card-stage .chip-float { display: none; } }

/* --------------------------- Ridgelines -------------------------- */
.ridge {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none;
  line-height: 0;
}
.ridge svg { width: 100%; height: auto; display: block; }
.ridge .far  { fill: rgba(27,43,32,.55); }
.ridge .mid  { fill: rgba(28,21,18,.7); }
.ridge .near { fill: var(--espresso); }

/* --------------------------- Cards ------------------------------- */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--bone-04), transparent);
  border: var(--hair);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1rem + 1.4vw, 2.1rem);
  transition: transform var(--t-base) var(--ease-spring),
              border-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, var(--gold-08), transparent 55%);
  opacity: 0; transition: opacity var(--t-base);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-30);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card h3, .card h4 { margin-bottom: .6rem; }
.card p { font-size: var(--fs-sm); }

.icon-badge {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.2rem;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--pine-soft), var(--pine-900));
  border: 1px solid var(--gold-30);
  color: var(--harvest-gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.icon-badge svg { width: 26px; height: 26px; }
.card.feature .icon-badge { background: linear-gradient(160deg, rgba(198,97,29,.25), rgba(168,79,21,.1)); border-color: var(--orange-30); color: var(--orange-bright); }

/* numbered step */
.step { position: relative; padding-left: 0; }
.step .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 1.5rem + 3vw, 3.4rem);
  color: transparent; -webkit-text-stroke: 1.5px var(--gold-30);
  line-height: 1; display: block; margin-bottom: .6rem;
}

/* light card variant for bone sections */
.bg-bone .card { background: #fff; border-color: rgba(28,21,18,.08); }
.bg-bone .card:hover { border-color: var(--gold-30); box-shadow: 0 24px 60px rgba(71,54,46,.16); }
.bg-bone .card h3, .bg-bone .card h4 { color: var(--espresso); }
.bg-bone .card p { color: rgba(28,21,18,.7); }
.bg-bone .icon-badge { background: linear-gradient(160deg, #fff, var(--stone)); border-color: var(--gold-30); color: var(--trail-orange); }

/* --------------------------- Stats ------------------------------- */
.stats { display: grid; gap: clamp(1.5rem,1rem+2vw,2.5rem); grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px){ .stats.four { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; position: relative; }
.stat .val { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.6rem + 3.5vw, 3.6rem); line-height: 1; color: var(--bone); letter-spacing: -0.01em; }
.stat .val .suf { color: var(--harvest-gold); }
.stat .lbl { margin-top: .6rem; font-size: var(--fs-sm); color: var(--bone-55); text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-display); font-weight: 500; }
.bg-bone .stat .val { color: var(--espresso); }
.bg-bone .stat .lbl { color: rgba(28,21,18,.55); }

/* trust strip */
.trust-strip { border-top: var(--hair); border-bottom: var(--hair); }
.trust-strip .row { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: center; }
.trust-strip .item { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--bone-70); }
.trust-strip .item svg { width: 1.2em; color: var(--harvest-gold); }
.trust-strip .sep { width: 1px; height: 18px; background: var(--bone-12); }
@media (max-width: 720px){ .trust-strip .sep { display: none; } }

/* --------------------- Split / media blocks ---------------------- */
/* Two-column sections: a real, generous gap between the image/media column and
   the text column — 64px (tablet) up to 120px (desktop). Stacked mobile uses a
   smaller vertical row-gap so columns don't overlap or crowd each other. */
.split {
  display: grid;
  column-gap: clamp(4rem, 7vw, 7.5rem);   /* ~64px → 120px between columns */
  row-gap: clamp(2rem, 4vw, 3rem);        /* ~32px → 48px when stacked */
  align-items: center;
}
@media (min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }
.split .media { position: relative; }

/* photo treatment: graded toward palette */
.photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--bone-08);
  background: var(--pine-900);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo.ratio-4-3 { aspect-ratio: 4/3; }
.photo.ratio-3-4 { aspect-ratio: 3/4; }
.photo.ratio-16-9 { aspect-ratio: 16/9; }
.photo.ratio-1 { aspect-ratio: 1; }
.photo::after { /* warm grade + depth */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(36,56,41,.05) 0%, rgba(28,21,18,.45) 100%),
    radial-gradient(120% 100% at 50% 0%, transparent 50%, rgba(28,21,18,.4));
  mix-blend-mode: multiply;
}
.photo .tint { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(198,97,29,.12), rgba(36,56,41,.18)); mix-blend-mode: overlay; pointer-events: none; }
.photo .cap {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(27,21,18,.6); backdrop-filter: blur(8px);
  border: var(--hair); border-radius: var(--r-pill);
  padding: .45rem .85rem; font-size: var(--fs-xs); color: var(--bone-90);
}
.photo .cap .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--harvest-gold); box-shadow: 0 0 0 3px var(--gold-16); }

/* checklist */
.checklist { display: grid; gap: 1rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .9rem; align-items: flex-start; }
.checklist .ck {
  flex: none; width: 26px; height: 26px; border-radius: 8px; margin-top: 2px;
  display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold);
}
.checklist .ck svg { width: 15px; }
.checklist b { display: block; color: var(--bone); font-family: var(--font-body); font-weight: 600; }
.checklist span.d { color: var(--bone-55); font-size: var(--fs-sm); }
.bg-bone .checklist b { color: var(--espresso); }
.bg-bone .checklist span.d { color: rgba(28,21,18,.6); }
.bg-bone .checklist .ck { background: rgba(198,97,29,.12); color: var(--trail-orange); }

/* ----------------------- Dashboard mock -------------------------- */
.dash {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, #233527, #1b2b20);
  border: 1px solid var(--bone-12); box-shadow: var(--shadow-lg);
}
.dash .bar { display: flex; align-items: center; gap: .5rem; padding: .85rem 1.1rem; border-bottom: var(--hair); background: rgba(0,0,0,.18); }
.dash .bar .dots { display: flex; gap: 6px; }
.dash .bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--bone-12); }
.dash .bar .dots i:first-child { background: rgba(198,97,29,.6); }
.dash .bar .title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--bone-55); margin-left: .4rem; }
.dash .body { padding: clamp(1.1rem,3%,1.6rem); display: grid; gap: 1.1rem; }
.dash .kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.dash .kpi { background: var(--bone-04); border: var(--hair); border-radius: var(--r-md); padding: .9rem; }
.dash .kpi .k { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-55); font-family: var(--font-display); }
.dash .kpi .v { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--bone); margin-top: .25rem; }
.dash .kpi .v.up { color: var(--harvest-gold); }
.dash .kpi .delta { font-size: .68rem; color: #8fb38c; }

/* bar chart */
.chart { display: flex; align-items: flex-end; gap: clamp(4px,1.4vw,12px); height: 120px; padding-top: .5rem; }
.chart .col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; height: 100%; }
.chart .col .b { width: 100%; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, var(--pine-soft), #2c4231); transform-origin: bottom; transition: transform 1s var(--ease-out); }
.chart .col .b.hl { background: linear-gradient(180deg, var(--orange-bright), var(--trail-orange)); }
.chart .col .x { text-align: center; font-size: .58rem; color: var(--bone-40); font-family: var(--font-display); letter-spacing: .08em; }
.reveal-chart .col .b { transform: scaleY(0); }
.reveal-chart.in .col .b { transform: scaleY(1); }

/* transaction rows */
.txn { display: grid; gap: .5rem; }
.txn .r { display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: center; padding: .6rem .2rem; border-bottom: 1px solid var(--bone-08); }
.txn .r:last-child { border-bottom: 0; }
.txn .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--bone-04); display: grid; place-items: center; color: var(--harvest-gold); }
.txn .ic svg { width: 17px; }
.txn .meta b { font-size: .85rem; color: var(--bone); display: block; font-family: var(--font-body); font-weight: 600; }
.txn .meta small { color: var(--bone-40); font-size: .7rem; }
.txn .amt { font-family: var(--font-display); font-size: .95rem; color: var(--bone); font-variant-numeric: tabular-nums; }
.txn .amt small { display: block; color: var(--bone-40); font-size: .62rem; text-align: right; font-variant-numeric: tabular-nums; }

/* --------------------------- Map --------------------------------- */
.map-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: radial-gradient(120% 120% at 70% 10%, #2b4231, var(--pine-900));
  border: 1px solid var(--bone-12); box-shadow: var(--shadow-lg);
  aspect-ratio: 16/11;
}
.map-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-wrap .us-bg { fill: rgba(243,239,230,.05); stroke: var(--bone-12); stroke-width: 1; }
.map-wrap .route { fill: none; stroke: var(--harvest-gold); stroke-width: 2; stroke-dasharray: 5 6; opacity: .5; }
.map-node { position: absolute; transform: translate(-50%,-50%); }
.map-node .pin { width: 12px; height: 12px; border-radius: 50%; background: var(--trail-orange); box-shadow: 0 0 0 4px rgba(198,97,29,.25); }
.map-node .pulse { position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--trail-orange); animation: pulse 2.4s ease-out infinite; }
.map-node.gold .pin { background: var(--harvest-gold); box-shadow: 0 0 0 4px var(--gold-16); }
.map-node.gold .pulse { border-color: var(--harvest-gold); }
@keyframes pulse { 0%{transform:scale(.6);opacity:.9} 100%{transform:scale(2.6);opacity:0} }
.map-legend { position: absolute; left: 1rem; bottom: 1rem; display: flex; gap: 1rem; background: rgba(27,21,18,.6); backdrop-filter: blur(8px); border: var(--hair); border-radius: var(--r-pill); padding: .5rem .9rem; font-size: var(--fs-xs); }
.map-legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: .4rem; }

/* station finder UI */
.finder { background: linear-gradient(180deg,#233527,#1b2b20); border: 1px solid var(--bone-12); border-radius: var(--r-lg); padding: 1.1rem; box-shadow: var(--shadow-md); }
.finder .search { display: flex; align-items: center; gap: .7rem; background: var(--bone-04); border: var(--hair); border-radius: var(--r-pill); padding: .7rem 1rem; color: var(--bone-55); }
.finder .search svg { width: 1.1em; color: var(--harvest-gold); }
.finder .res { margin-top: .9rem; display: grid; gap: .55rem; }
.finder .res .s { display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: center; padding: .7rem; border-radius: var(--r-md); background: var(--bone-04); border: var(--hair); }
.finder .res .s .logo { width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(150deg,var(--pine-soft),var(--pine-900)); display: grid; place-items: center; color: var(--harvest-gold); font-family: var(--font-display); font-weight: 700; font-size: .8rem; }
.finder .res .s b { font-size: .85rem; color: var(--bone); font-weight: 600; }
.finder .res .s small { color: var(--bone-40); font-size: .72rem; }
.finder .res .s .dist { font-family: var(--font-display); color: var(--harvest-gold); font-size: .85rem; }

/* ----------------------- Comparison table ------------------------ */
.compare { border-radius: var(--r-lg); overflow: hidden; border: var(--hair); background: linear-gradient(180deg, var(--bone-04), transparent); }
.compare .row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; }
.compare .head { background: rgba(0,0,0,.2); }
.compare .row > div { padding: 1rem 1.1rem; border-bottom: 1px solid var(--bone-08); }
.compare .row:last-child > div { border-bottom: 0; }
.compare .head > div { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; padding-block: 1.1rem; }
.compare .head .hcfc { color: var(--harvest-gold); }
.compare .head .them { color: var(--bone-40); }
.compare .feat { font-weight: 600; color: var(--bone); font-size: var(--fs-sm); }
.compare .cell { text-align: center; font-size: var(--fs-sm); color: var(--bone-55); }
.compare .cell.yes { color: var(--bone); }
.compare .cell svg { width: 22px; }
.compare .cell.yes svg { color: var(--harvest-gold); }
.compare .cell.no svg { color: var(--slate); }
.compare .col-hcfc { background: rgba(217,164,65,.05); }
@media (max-width: 620px){
  .compare .row { grid-template-columns: 1fr auto auto; }
  .compare .feat { font-size: .82rem; }
  .compare .cell { padding-inline: .6rem; }
}

/* --------------------------- Quote ------------------------------- */
.quote { text-align: center; max-width: 56rem; margin-inline: auto; position: relative; z-index: 1; }
.quote .mark { font-family: var(--font-accent); font-size: 5rem; line-height: 0; color: var(--gold-30); display: block; height: 2.5rem; }
.quote p { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.4rem, 1rem + 2.4vw, 2.35rem); line-height: 1.4; color: var(--bone); }
.quote .by { margin-top: 1.6rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--harvest-gold); }
.quote .by small { display: block; color: var(--bone-40); letter-spacing: .08em; margin-top: .25rem; }

/* --------------------------- CTA band ---------------------------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band .inner { position: relative; z-index: 2; text-align: center; max-width: 48rem; margin-inline: auto; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lead { margin-inline: auto; }
.cta-band .actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band .ridge { z-index: 1; opacity: .8; }

/* --------------------------- Page header ------------------------- */
.page-header {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: clamp(8rem, 6rem + 6vw, 11rem);
  padding-bottom: clamp(3.5rem, 2rem + 5vw, 6rem);
}
.page-header .container { position: relative; z-index: 3; }
.page-header h1 { margin-top: 1rem; max-width: 16ch; }
.page-header .lead { margin-top: 1.2rem; max-width: 44rem; }
.breadcrumb { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--bone-40); display: flex; gap: .5rem; }
.breadcrumb a:hover { color: var(--harvest-gold); }

/* --------------------------- Forms ------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--bone-70); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--fs-body);
  color: var(--bone); background: rgba(243,239,230,.07);
  border: 1px solid var(--bone-12); border-radius: var(--r-md);
  padding: .85rem 1rem; width: 100%;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--bone-40); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--harvest-gold);
  background: rgba(243,239,230,.06); box-shadow: 0 0 0 4px var(--gold-16);
}
.field.row { grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .field.row { grid-template-columns: 1fr; } }
.form .full { grid-column: 1 / -1; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23D9A441' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* contact method tiles */
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: center; padding: 1.2rem 1.4rem; border-radius: var(--r-md); background: var(--bone-04); border: var(--hair); transition: border-color var(--t-base), transform var(--t-base); }
.contact-card:hover { border-color: var(--gold-30); transform: translateY(-3px); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold); flex: none; }
.contact-card .k { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--bone-55); font-family: var(--font-display); }
.contact-card .v { font-family: var(--font-display); font-size: 1.15rem; color: var(--bone); letter-spacing: .02em; }

/* accordion / FAQ */
.faq { border-top: var(--hair); }
.faq details { border-bottom: var(--hair); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; cursor: pointer; list-style: none; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: clamp(1rem,.9rem+.4vw,1.2rem); color: var(--bone); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-30); display: grid; place-items: center; color: var(--harvest-gold); transition: transform var(--t-base) var(--ease-spring), background var(--t-base); }
.faq details[open] summary .pm { transform: rotate(135deg); background: var(--gold-16); }
.faq .ans { padding: 0 0 1.4rem; color: var(--bone-70); max-width: 60ch; }
.bg-bone .faq summary { color: var(--espresso); }
.bg-bone .faq .ans { color: rgba(28,21,18,.7); }

/* --------------------------- Footer ------------------------------ */
.footer { position: relative; overflow: hidden; background: var(--espresso); padding-top: clamp(3.5rem,2rem+5vw,6rem); }
.footer .topo { opacity: .5; }
.footer .grid-foot { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
@media (min-width: 800px){ .footer .grid-foot { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer .brandcol img { height: 30px; margin-bottom: 1.2rem; }
.footer .brandcol .tag { font-family: var(--font-accent); font-style: italic; color: var(--harvest-gold); font-size: 1.15rem; }
.footer .brandcol p { font-size: var(--fs-sm); margin-top: .8rem; max-width: 32ch; color: var(--bone-55); }
.footer h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; color: var(--bone-40); margin-bottom: 1.1rem; }
.footer ul.links li { margin-bottom: .7rem; }
.footer ul.links a { color: var(--bone-70); font-size: var(--fs-sm); transition: color var(--t-fast); }
.footer ul.links a:hover { color: var(--harvest-gold); }
.footer .contactcol a { display: block; color: var(--bone); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .02em; margin-bottom: .5rem; }
.footer .contactcol a:hover { color: var(--harvest-gold); }
.footer .contactcol .small { font-size: var(--fs-sm); color: var(--bone-55); font-family: var(--font-body); letter-spacing: 0; }
.footer .foot-bottom {
  position: relative; z-index: 1; margin-top: clamp(2.5rem,2rem+3vw,4rem);
  border-top: var(--hair); padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: var(--fs-xs); color: var(--bone-40);
}
.footer .foot-bottom .attr { display: flex; align-items: center; gap: .5rem; }
.footer .foot-bottom .net { color: var(--harvest-gold); font-family: var(--font-display); letter-spacing: .08em; }
.footer .foot-bottom a:hover { color: var(--bone-70); }

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

/* utilities */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.maxw-sm{max-width:34rem}.maxw-md{max-width:46rem}
.flex{display:flex}.wrap{flex-wrap:wrap}.items-center{align-items:center}.gap-2{gap:1rem}.gap-3{gap:1.5rem}
.tag-pill { display:inline-flex; align-items:center; gap:.5rem; padding:.4rem .9rem; border-radius:var(--r-pill); background:var(--bone-04); border:var(--hair); font-size:var(--fs-xs); color:var(--bone-70); font-family:var(--font-display); text-transform:uppercase; letter-spacing:.08em; }
.tag-pill .dot{ width:7px;height:7px;border-radius:50%;background:var(--harvest-gold); }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--harvest-gold); color: var(--espresso); padding: .6rem 1rem; border-radius: 0 0 8px 0; font-family: var(--font-display); }
.skip:focus { left: 0; }

/* ----------------------- Acceptance panel ------------------------ */
.accept {
  position: relative;
  background: linear-gradient(165deg, #2c4434, #20301f 58%, #1b2b20);
  border: 1px solid var(--gold-30);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 1rem + 1vw, 1.85rem);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.05);
}
.accept-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--bone-08); }
.accept-eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--harvest-gold); }
.accept-count { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 1rem + 1.4vw, 1.9rem); color: var(--bone); letter-spacing: -.01em; white-space: nowrap; }
.accept-count em { font-style: normal; font-size: .5em; color: var(--bone-55); font-weight: 600; letter-spacing: .04em; }
.accept-logos {
  background: #fff; border-radius: var(--r-md);
  padding: clamp(.55rem, .4rem + .5vw, .9rem);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 8px 22px rgba(8,5,3,.24);
}
.accept-logos img { width: 100%; height: auto; display: block; border-radius: 6px; }
.accept-note { margin-top: 1.1rem; display: flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); color: var(--bone-40); }
.accept-note svg { width: 1.05em; height: 1.05em; flex: none; }

/* ----------------- Reporting & control visual -------------------- */
.rc-stack { display: grid; gap: 1rem; }
.rc-card { background: linear-gradient(180deg, var(--bone-04), transparent); border: var(--hair); border-radius: var(--r-lg); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-md); }
.rc-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.rc-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold); flex: none; }
.rc-icon svg { width: 18px; height: 18px; }
.rc-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; color: var(--bone); }
.rc-tag { margin-left: auto; font-family: var(--font-display); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-55); background: var(--bone-04); border: var(--hair); border-radius: var(--r-pill); padding: .25rem .7rem; }
.rc-rows { display: grid; gap: .15rem; }
.rc-row { display: grid; grid-template-columns: 1.25fr .62fr .8fr .7fr .9fr; gap: .5rem; align-items: center; padding: .5rem .15rem; border-bottom: 1px solid var(--bone-08); font-size: .82rem; }
.rc-row:last-child { border-bottom: 0; }
.rc-row .st { color: var(--bone); font-weight: 600; }
.rc-row .ft { color: var(--bone-55); font-size: .72rem; }
.rc-row .g, .rc-row .pg { color: var(--bone-70); font-variant-numeric: tabular-nums; text-align: right; }
.rc-row .mi { color: var(--bone-40); font-variant-numeric: tabular-nums; font-size: .78rem; text-align: right; }
.rc-row.head { padding-top: 0; }
.rc-row.head span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .58rem; color: var(--bone-40); font-weight: 500; }
.rc-actions { display: flex; align-items: center; gap: .6rem; margin-top: .9rem; }
.rc-dl { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; color: var(--bone); background: var(--gold-08); border: 1px solid var(--gold-30); border-radius: var(--r-pill); padding: .4rem .8rem; }
.rc-dl svg { width: 14px; height: 14px; color: var(--harvest-gold); }
.rc-sync { margin-left: auto; font-size: .7rem; color: var(--bone-40); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; }
.rc-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.rc-chip { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .7rem; color: var(--bone-70); background: var(--bone-04); border: var(--hair); border-radius: var(--r-pill); padding: .4rem .8rem; }
.rc-alert { display: flex; align-items: center; gap: .7rem; margin-top: .9rem; padding: .7rem .9rem; border-radius: var(--r-md); background: rgba(198,97,29,.1); border: 1px solid var(--orange-30); }
.rc-bell { color: var(--orange-bright); flex: none; display: grid; place-items: center; }
.rc-bell svg { width: 20px; height: 20px; }
.rc-atxt { font-size: .8rem; color: var(--bone-90); }
.rc-atxt b { color: var(--bone); }
.rc-review { margin-left: auto; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .7rem; color: var(--orange-bright); white-space: nowrap; }

/* ----------------------- Layout / a11y fixes --------------------- */
html { scroll-padding-top: 90px; }              /* keep headings clear of the fixed nav */
:target { scroll-margin-top: 90px; }
section[id], [id].anchor { scroll-margin-top: 90px; }

@media (max-width: 860px) {
  :root { --section-y: clamp(3.25rem, 2.4rem + 4vw, 5rem); }   /* tighter vertical rhythm */
  .hero { min-height: auto; padding-bottom: clamp(2rem, 1rem + 4vw, 3rem); }
}
@media (max-width: 560px) {
  .hero-grid { gap: 1.75rem; }                  /* card sits naturally under copy */
  .hero-benefits { margin-top: 1.6rem; gap: .85rem 1rem; padding-top: 1.3rem; }
  .hero-benefits .hb { gap: .55rem; }
  .hero-benefits .hb .ic { width: 32px; height: 32px; }
  .hero-benefits .hb .ic svg { width: 16px; height: 16px; }
  .hero-benefits .hb b { font-size: .78rem; }
  .hero-benefits .hb .sub { font-size: .66rem; }
}

/* =====================================================================
   OVERHAUL ADDITIONS — leather lead form, tri-compare, invoice analysis,
   card-control grid, pricing callouts, optional tools, network frame.
   ===================================================================== */

/* ---------------- Leather lead/contact form card ----------------- */
.lead-form {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  /* charcoal / black-brown leather fill */
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(217,164,65,.10), transparent 55%),
    linear-gradient(165deg, #2a211c 0%, #211913 52%, #18110d 100%);
  border: 1px solid var(--gold-30);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.05);
}
.lead-form::before {            /* faint stitched-leather grain */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 2px, transparent 2px 5px),
    radial-gradient(140% 120% at 80% 110%, rgba(198,97,29,.10), transparent 60%);
  mix-blend-mode: overlay;
}
.lead-form > * { position: relative; z-index: 1; }
.lead-form .lf-eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--harvest-gold); }
.lead-form h3 { margin: .5rem 0 .5rem; }
.lead-form .lf-body { color: var(--bone-70); font-size: var(--fs-sm); margin-bottom: 1.5rem; max-width: 46ch; }
/* brighter inputs inside the leather card for stronger contrast */
.lead-form .field input,
.lead-form .field select,
.lead-form .field textarea {
  background: rgba(243,239,230,.10);
  border-color: rgba(217,164,65,.28);
}
.lead-form .field input::placeholder,
.lead-form .field textarea::placeholder { color: rgba(243,239,230,.45); }
.lead-form .field input:focus,
.lead-form .field select:focus,
.lead-form .field textarea:focus {
  background: rgba(243,239,230,.14);
  border-color: var(--harvest-gold);
  box-shadow: 0 0 0 4px var(--gold-16);
}
.lead-form .field label { color: var(--bone-90); }
/* glowing orange CTA */
.btn.glow { box-shadow: 0 0 0 1px rgba(224,119,47,.4), 0 14px 34px rgba(198,97,29,.5), 0 0 40px rgba(224,119,47,.35); }
.btn.glow:hover { box-shadow: 0 0 0 1px rgba(224,119,47,.6), 0 22px 48px rgba(198,97,29,.6), 0 0 56px rgba(224,119,47,.5); }
.lf-note { margin-top: .8rem; font-size: var(--fs-xs); color: var(--bone-40); display: flex; align-items: center; gap: .5rem; }
.lf-note svg { width: 1em; height: 1em; color: var(--harvest-gold); flex: none; }
.form-ok { margin-top: .9rem; color: var(--harvest-gold); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }

/* charcoal-leather contact tiles (Option 2 direction) */
.contact-card.leather {
  background: linear-gradient(165deg, #2a211c, #1a130e);
  border-color: var(--gold-30);
  box-shadow: var(--shadow-sm);
}
.contact-card.leather:hover { border-color: var(--harvest-gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-card.leather .ic { background: linear-gradient(160deg, rgba(217,164,65,.22), rgba(168,96,43,.14)); }

/* ---------------- Tri-column comparison ("fit") ------------------ */
.compare.tri .row { grid-template-columns: 1.1fr 1.25fr 1.25fr; align-items: stretch; }
.compare.tri .head > div { color: var(--bone-40); }
.compare.tri .head .col-hcfc { color: var(--harvest-gold); }
.compare.tri .feat { display: flex; align-items: center; }
.compare.tri .cell { text-align: left; color: var(--bone-70); line-height: 1.45; }
.compare.tri .cell.hc { color: var(--bone-90); }
.compare.tri .cell.hc b { color: var(--bone); }
.compare.tri .cell .mini { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.compare.tri .cell .mini svg { width: 16px; height: 16px; flex: none; }
.compare.tri .cell.hc .mini svg { color: var(--harvest-gold); }
.compare.tri .cell.them .mini svg { color: var(--slate); }
.compare.tri .cell .mini span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; color: var(--bone-40); }
@media (max-width: 760px){
  .compare.tri .row { grid-template-columns: 1fr; }
  .compare.tri .head { display: none; }
  .compare.tri .row > div { border-bottom: 1px solid var(--bone-08); }
  .compare.tri .feat { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: var(--harvest-gold); padding-bottom: .3rem; }
  .compare.tri .cell.them { padding-bottom: 1.4rem; }
}

/* ---------------- Invoice / price-comparison visual -------------- */
.invoice {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, #20140d, #160e09);
  border: 1px solid var(--gold-30); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.05);
}
.invoice .iv-bar { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--bone-08); background: rgba(0,0,0,.22); }
.invoice .iv-bar .iv-ic { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold); }
.invoice .iv-bar .iv-ic svg { width: 17px; }
.invoice .iv-bar .iv-t { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--bone); }
.invoice .iv-bar .iv-badge { margin-left: auto; font-family: var(--font-display); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-40); border: 1px solid var(--bone-12); border-radius: var(--r-pill); padding: .25rem .6rem; }
.invoice .iv-head, .invoice .iv-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: .6rem; align-items: center; padding: .7rem 1.2rem; }
.invoice .iv-head { border-bottom: 1px solid var(--bone-08); }
.invoice .iv-head span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .62rem; color: var(--bone-40); }
.invoice .iv-head span.cur { color: var(--slate); text-align: right; }
.invoice .iv-head span.hc  { color: var(--harvest-gold); text-align: right; }
.invoice .iv-row { border-bottom: 1px solid var(--bone-04); font-size: .82rem; }
.invoice .iv-row .loc { color: var(--bone); }
.invoice .iv-row .loc small { display: block; color: var(--bone-40); font-size: .68rem; }
.invoice .iv-row .v { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--font-display); }
.invoice .iv-row .v.cur { color: var(--bone-55); }
.invoice .iv-row .v.hc  { color: var(--harvest-gold); }
.invoice .iv-foot { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.2rem; background: rgba(198,97,29,.08); }
.invoice .iv-foot .lbl { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; color: var(--bone-55); }
.invoice .iv-foot .ill { margin-left: auto; font-size: .64rem; color: var(--bone-40); font-style: italic; }

/* pricing callout chips row */
.callouts { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
@media (min-width: 620px){ .callouts { grid-template-columns: repeat(3,1fr); } }
.callout { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.1rem; border-radius: var(--r-md); background: var(--bone-04); border: var(--hair); }
.callout .ic { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold); }
.callout .ic svg { width: 19px; }
.callout b { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; color: var(--bone); line-height: 1.2; }
.callout span { font-size: .72rem; color: var(--bone-55); }

/* ---------------- Card-control grid (real Fuelman controls) ------ */
/* Match the six benefit cards' rhythm — separate, floating panels with clear
   negative space between every card (desktop ~32–40px, tablet ~28–36px, mobile ~28px). */
.controls-grid { display: grid; gap: clamp(1.75rem, 3vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 620px){ .controls-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .controls-grid { grid-template-columns: repeat(3,1fr); } }
.control {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  padding: 1.5rem 1.5rem 1.6rem;
  background: linear-gradient(180deg, var(--bone-04), transparent);
  border: var(--hair); transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.control:hover { border-color: var(--gold-30); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.control .ic { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 1.1rem; display: grid; place-items: center; background: linear-gradient(160deg, rgba(198,97,29,.22), rgba(168,79,21,.1)); border: 1px solid var(--orange-30); color: var(--orange-bright); }
.control .ic svg { width: 24px; height: 24px; }
.control h4 { margin-bottom: .5rem; }
.control p { font-size: var(--fs-sm); color: var(--bone-70); }
/* capability label chips */
.cap-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; justify-content: center; }
.cap-chip { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; color: var(--bone-70); background: var(--bone-04); border: 1px solid var(--gold-30); border-radius: var(--r-pill); padding: .5rem 1rem; }
.cap-chip svg { width: 14px; height: 14px; color: var(--harvest-gold); }

/* section eyebrow note (trust builder) */
.note-band { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: center; }
.note-band .nb { display: inline-flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); color: var(--bone-70); }
.note-band .nb svg { width: 1.1em; color: var(--harvest-gold); flex: none; }

/* ---------------- Network / locator framed visual ---------------- */
.net-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(165deg, #233527, #1b2b20);
  border: 1px solid var(--gold-30); box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem,.8rem+1vw,1.6rem);
}
.net-frame .nf-top { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.net-frame .nf-top .nf-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--gold-16); color: var(--harvest-gold); flex: none; }
.net-frame .nf-top .nf-ic svg { width: 18px; }
.net-frame .nf-top .nf-t { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .88rem; color: var(--bone); }
.net-frame .nf-top .nf-tag { margin-left: auto; font-family: var(--font-display); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--harvest-gold); border: 1px solid var(--gold-30); border-radius: var(--r-pill); padding: .25rem .65rem; }
.net-frame .nf-shot { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--bone-08); background: var(--pine-900); }
.net-frame .nf-shot img { width: 100%; height: auto; display: block; }
.net-frame .nf-cap { margin-top: .9rem; display: flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); color: var(--bone-40); }
.net-frame .nf-cap svg { width: 1.05em; flex: none; }

/* Real Fuelman Site Locator screenshot — portrait phone capture, height-matched
   to the text column, centered on a dark panel like a device on a desk. */
.net-frame.locator .nf-shot.locator-shot {
  display: grid; place-items: center;
  padding: clamp(.4rem, .25rem + .5vw, .8rem);   /* tighter so the locator reads larger */
  background: linear-gradient(165deg, #20301f, #141f12);
  border-radius: var(--r-md);
}
.net-frame.locator .nf-shot.locator-shot img {
  height: clamp(400px, 40vw, 520px);             /* ~20% larger */
  width: auto; max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.07);
  display: block;
}
@media (max-width: 600px){
  .net-frame.locator .nf-shot.locator-shot img { height: clamp(420px, 85vw, 520px); width: auto; }
}

/* Back-office tools — stacked layout: copy + bullets on top, large device
   showcase below. The device PNG is keyed to transparency so the electronics
   sit directly on the section with a soft shadow + warm glow (no black box). */
.bo-head { max-width: 60rem; }
.bo-bullets { margin-top: 1.8rem; gap: 1.1rem 2.5rem; }
@media (min-width: 680px){ .bo-bullets { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .bo-bullets { grid-template-columns: repeat(3, 1fr); } }

.portal-showcase {
  position: relative;
  margin: clamp(2.5rem, 1.5rem + 3vw, 4.5rem) auto 0;
  max-width: 1100px;          /* large, near full-width inside the container */
}
.portal-showcase::before {    /* subtle warm glow behind the devices */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  inset: 8% 6% 7%;
  background: radial-gradient(60% 60% at 50% 45%, rgba(198,97,29,.20), rgba(217,164,65,.06) 46%, transparent 72%);
  filter: blur(22px);
}
.portal-showcase img {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;   /* 100% width, never overflows */
  filter: drop-shadow(0 30px 55px rgba(8,5,3,.55)) drop-shadow(0 8px 18px rgba(8,5,3,.42));
}
.portal-showcase figcaption {
  position: relative; z-index: 1;
  margin-top: clamp(.6rem, .3rem + .8vw, 1.1rem);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: var(--fs-xs); color: var(--bone-40); text-align: center;
}
.portal-showcase figcaption svg { width: 1.05em; flex: none; color: var(--harvest-gold); }

/* brand acceptance logo strip on bone */
.brand-strip { background:#fff; border-radius: var(--r-md); padding: clamp(.7rem,.5rem+.6vw,1.1rem); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 8px 22px rgba(8,5,3,.18); }
.brand-strip img { width: 100%; height: auto; display: block; border-radius: 6px; }

/* --------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], .hero [data-rise], .hero-card-stage, .mobile-menu a.m-link { opacity: 1 !important; transform: none !important; }
  .map-node .pulse { display: none; }
  .reveal-chart .col .b { transform: scaleY(1); }
}
