/* ============================================================
   RigDeck — landing page styles
   Type: Saira Condensed (display) · Hanken Grotesk (UI/body) · IBM Plex Mono (stats)
   Color: diesel graphite + safety orange on warm paper
   ============================================================ */

:root {
  /* graphite */
  --graphite-900: #131619;
  --graphite-800: #181B1F;
  --graphite-700: #1A1D21;
  --graphite-600: #22262B;
  --graphite-500: #2C3036;
  --graphite-400: #3A3F46;

  /* ink (text on light) */
  --ink: #1A1D21;
  --ink-soft: #4C525A;
  --ink-faint: #828892;
  --ink-ghost: #A9AEB6;

  /* paper / surfaces */
  --paper: #F6F4F1;
  --paper-2: #FBFAF8;
  --white: #FFFFFF;
  --line: #E6E3DD;
  --line-2: #D8D4CC;

  /* ink on dark */
  --on-dark: #F3F1EE;
  --on-dark-soft: #AAB0B8;
  --on-dark-faint: #6E747C;
  --dark-line: #2C3036;

  /* safety orange — CTAs + key highlights ONLY */
  --orange: #F26418;
  --orange-600: #DB540B;
  --orange-700: #B8460A;
  --orange-tint: rgba(242, 100, 24, 0.10);
  --orange-tint-2: rgba(242, 100, 24, 0.16);

  /* status (used sparingly inside mockups) */
  --green: #2E9E5B;
  --amber: #E0A106;
  --blue: #3B7DD8;

  --maxw: 1200px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 23, 27, 0.06), 0 2px 6px rgba(20, 23, 27, 0.05);
  --shadow-md: 0 4px 14px rgba(20, 23, 27, 0.08), 0 12px 32px rgba(20, 23, 27, 0.08);
  --shadow-lg: 0 18px 50px rgba(20, 23, 27, 0.16), 0 4px 12px rgba(20, 23, 27, 0.08);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--orange); color: #fff; }

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

/* ---------- type ---------- */
.display {
  font-family: 'Saira Condensed', 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.005em;
}
.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-feature-settings: "tnum" 1;
}
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.eyebrow .hot { color: var(--orange); }

h1, h2, h3 { color: var(--ink); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.section-pad { padding: 104px 0; }
.section-pad-sm { padding: 72px 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 500; margin-bottom: 20px;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; background: var(--orange); display: inline-block;
}

.sec-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 0.96;
  letter-spacing: -0.01em; color: var(--ink); max-width: 16ch;
}
.sec-sub {
  margin-top: 18px; font-size: 1.075rem; color: var(--ink-soft); max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 0.98rem;
  padding: 13px 22px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease), border-color .15s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 18px var(--orange-tint-2);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }
.btn-dark { background: var(--graphite-800); color: #fff; }
.btn-dark:hover { background: var(--graphite-600); transform: translateY(-1px); }
.btn-on-dark-ghost { background: transparent; color: var(--on-dark); border-color: var(--graphite-400); }
.btn-on-dark-ghost:hover { border-color: var(--on-dark-soft); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 244, 241, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,0.02); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.wordmark {
  font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.01em; color: var(--ink); line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: 14px; }
.nav-links a {
  font-size: 0.97rem; font-weight: 500; color: var(--ink-soft);
  transition: color .15s; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-login { font-size: 0.97rem; font-weight: 500; color: var(--ink-soft); }
.nav-login:hover { color: var(--ink); }
.nav-toggle { display: none; }

/* ---------- Haul logo mark (geometric stand-in) ---------- */
.haul {
  --h: 30px; width: calc(var(--h) * 1.45); height: var(--h);
  position: relative; flex: none;
}
.haul .cab { position: absolute; left: 0; top: 12%; width: 40%; height: 58%; background: var(--graphite-800); border-radius: 3px 4px 2px 2px; }
.haul .cab::after { content:""; position:absolute; right: 12%; top: 16%; width: 42%; height: 40%; background: #4a5057; border-radius: 2px; }
.haul .box { position: absolute; right: 0; top: 0; width: 56%; height: 70%; background: var(--graphite-800); border-radius: 3px; }
.haul .stripe { position: absolute; left: 0; right: 0; bottom: 26%; height: 13%; background: var(--orange); border-radius: 1px; }
.haul .hub { position: absolute; bottom: 0; width: 22%; padding-bottom: 22%; height: 0; background: var(--orange); border-radius: 50%; border: 2px solid var(--paper); }
.haul .hub.l { left: 6%; }
.haul .hub.r { right: 14%; }
/* logo on dark surfaces */
.on-dark .haul .cab, .on-dark .haul .box { background: var(--on-dark); }
.on-dark .haul .cab::after { background: #c2c7cd; }
.on-dark .haul .hub { border-color: var(--graphite-800); }
.on-dark .wordmark { color: var(--on-dark); }

/* ============================================================
   HERO (shared)
   ============================================================ */
.hero-label {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  padding: 18px 0 0; 
}
.hero-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-ghost);
}
.hero-divider { border-top: 1px dashed var(--line-2); }

.h1 {
  font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.012em; color: var(--ink);
}
.lead { color: var(--ink-soft); text-wrap: pretty; }

.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-note {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.02em; display: flex; align-items: center; gap: 7px;
}
.cta-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(46,158,91,0.16); }

/* ---- HERO A : split (text left / board right, bleeds) ---- */
.heroA { padding-top: 56px; padding-bottom: 0; overflow: hidden; }
.heroA-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 48px; align-items: center; }
.heroA .h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); max-width: 15ch; line-height: 1.06; }
.heroA .lead { font-size: 1.16rem; max-width: 44ch; margin-top: 30px; }
.heroA .cta-row { margin-top: 32px; }
.heroA-board { position: relative; }
.heroA-board .mock-frame { box-shadow: var(--shadow-lg); }

/* ---- HERO B : centered, board below ---- */
.heroB { padding: 92px 0 96px; text-align: center; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.heroB .h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); max-width: 15ch; margin: 0 auto; }
.heroB .lead { font-size: 1.18rem; max-width: 56ch; margin: 24px auto 0; }
.heroB .cta-row { justify-content: center; margin-top: 32px; }
.heroB-board { margin-top: 56px; max-width: 1080px; margin-left: auto; margin-right: auto; }
.heroB-board .mock-frame { box-shadow: var(--shadow-lg); }

.variant-flag {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 auto 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); font-weight: 500;
}
.variant-flag::before { content: ""; width: 6px; height: 6px; background: var(--orange); border-radius: 1px; }

/* ============================================================
   MOCK FRAME (browser/app window for faux UI)
   ============================================================ */
.mock-frame {
  position: relative; width: 100%; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line-2); overflow: hidden;
}
.mock-frame.bleed-r { width: calc(100% + 80px); }
.mock-scale { position: relative; width: 100%; overflow: hidden; }
.mock-canvas {
  position: absolute; top: 0; left: 0; transform-origin: top left;
  background: var(--paper-2);
}

/* ============================================================
   GENERIC product-UI primitives (inside .mock-canvas)
   ============================================================ */
.ui { font-family: 'Hanken Grotesk', sans-serif; color: #20242a; }
.ui .badge {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  padding: 3px 7px; border-radius: 4px; letter-spacing: 0.02em; white-space: nowrap;
}
.bdg-open { background: #eef4fb; color: #2b6cb8; }
.bdg-prog { background: var(--orange-tint); color: var(--orange-700); }
.bdg-wait { background: #fbf2dc; color: #9a6f06; }
.bdg-done { background: #e7f4ec; color: #237a47; }
.bdg-pm { background: #ecebff; color: #5b4fbf; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; gap: 40px; padding: 26px 0; flex-wrap: wrap; }
.trust-line { display: flex; align-items: center; gap: 14px; }
.trust-line .badge-pill {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-700); background: var(--orange-tint); padding: 5px 10px; border-radius: 4px; white-space: nowrap;
}
.trust-text { font-size: 0.98rem; color: var(--ink-soft); font-weight: 500; max-width: 40ch; }
.trust-logos { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.ilogo { display: flex; align-items: center; gap: 9px; color: var(--ink-faint); font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em; }
.ilogo .gly { width: 20px; height: 20px; border-radius: 5px; display: grid; place-items: center; flex: none; }
.trust-logos .lbl { font-family:'IBM Plex Mono',monospace; font-size: 11px; letter-spacing:0.16em; text-transform:uppercase; color: var(--ink-ghost); }

/* ============================================================
   PROBLEM -> SOLUTION
   ============================================================ */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 52px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.ps-col { padding: 40px; }
.ps-col.old { background: var(--paper-2); border-right: 1px solid var(--line); }
.ps-col.new { background: var(--graphite-800); color: var(--on-dark); position: relative; }
.ps-col .ps-tag { font-family:'IBM Plex Mono',monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.ps-col.old .ps-tag { color: var(--ink-faint); }
.ps-col.new .ps-tag { color: var(--orange); }
.ps-col h3 { font-family:'Saira Condensed',sans-serif; text-transform:uppercase; font-size: 1.7rem; line-height: 1; letter-spacing:-0.01em; margin-bottom: 22px; }
.ps-col.new h3 { color: #fff; }
.ps-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ps-list li { display: flex; gap: 12px; font-size: 1.0rem; line-height: 1.4; }
.ps-list .ic { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.ps-col.old .ps-list li { color: var(--ink-soft); }
.ps-col.new .ps-list li { color: var(--on-dark-soft); }
.ps-col.new .ps-list strong { color: #fff; font-weight: 600; }

/* ============================================================
   FEATURE ROWS (marquee)
   ============================================================ */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 76px 0; border-top: 1px solid var(--line); }
.frow.flip .frow-media { order: -1; }
.frow-num { font-family:'IBM Plex Mono',monospace; font-size: 12px; color: var(--orange); letter-spacing: 0.18em; margin-bottom: 14px; }
.frow h3 { font-family:'Saira Condensed',sans-serif; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 0.98; letter-spacing: -0.01em; margin-bottom: 16px; }
.frow p { color: var(--ink-soft); font-size: 1.07rem; max-width: 46ch; }
.frow .flist { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.frow .flist li { display: flex; gap: 10px; font-size: 0.98rem; color: var(--ink); align-items: flex-start; }
.frow .flist .tick { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--orange); }
.frow-media .mock-frame { box-shadow: var(--shadow-md); }
.pipeline { display: flex; align-items: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.pipeline .step { font-family:'IBM Plex Mono',monospace; font-size: 11.5px; padding: 6px 10px; border: 1px solid var(--line-2); border-radius: 5px; background: var(--white); color: var(--ink-soft); letter-spacing: 0.02em; }
.pipeline .step.hot { border-color: var(--orange); color: var(--orange-700); background: var(--orange-tint); }
.pipeline .arr { color: var(--ink-ghost); }

/* ============================================================
   FEATURE CARD GRID
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.fcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: border-color .18s, transform .18s var(--ease), box-shadow .18s; }
.fcard:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fcard .fc-ic { width: 40px; height: 40px; border-radius: 8px; background: var(--graphite-800); display: grid; place-items: center; margin-bottom: 18px; }
.fcard .fc-ic svg { width: 20px; height: 20px; color: #fff; }
.fcard h4 { font-family:'Saira Condensed',sans-serif; text-transform: uppercase; font-size: 1.35rem; line-height: 1; letter-spacing: -0.005em; margin-bottom: 10px; }
.fcard p { color: var(--ink-soft); font-size: 0.97rem; }
.fcard .fc-mini { margin-top: 18px; border-top: 1px dashed var(--line-2); padding-top: 14px; }
.fc-stat { font-family:'IBM Plex Mono',monospace; font-size: 12px; color: var(--ink-faint); display:flex; align-items:center; gap: 8px; }
.fc-stat b { color: var(--ink); font-weight: 600; }

/* ============================================================
   COMPARISON
   ============================================================ */
.cmp-wrap { margin-top: 52px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.cmp thead th { font-family:'IBM Plex Mono',monospace; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; vertical-align: bottom; background: var(--paper-2); }
.cmp thead th.us { background: var(--graphite-800); color: #fff; position: relative; }
.cmp thead th.us .wm { font-family:'Saira Condensed',sans-serif; font-size: 1.15rem; letter-spacing: 0.01em; color: #fff; text-transform: uppercase; }
.cmp thead th.us .wm .deck { color: var(--orange); }
.cmp tbody th { text-align: left; font-weight: 600; font-size: 0.97rem; color: var(--ink); width: 30%; background: var(--paper-2); }
.cmp td.us { background: rgba(242,100,24,0.045); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }
.cmp .yes { color: var(--green); }
.cmp .no { color: var(--ink-ghost); }
.cmp .partial { color: var(--amber); }
.cmp .ccell { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; }
.cmp .ccell .cl { font-family:'IBM Plex Mono',monospace; font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.02em; }
.cmp td.us .ccell .cl { color: var(--orange-700); }
.cmp svg { width: 20px; height: 20px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; align-items: start; }
.ptier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; position: relative; }
.ptier.feat { border: 1.5px solid var(--graphite-800); box-shadow: var(--shadow-md); }
.ptier .ptag { position: absolute; top: -11px; left: 30px; background: var(--orange); color:#fff; font-family:'IBM Plex Mono',monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.ptier h3 { font-family:'Saira Condensed',sans-serif; text-transform: uppercase; font-size: 1.6rem; letter-spacing: -0.005em; line-height: 1; }
.ptier .pdesc { color: var(--ink-faint); font-size: 0.9rem; margin-top: 7px; min-height: 38px; }
.ptier .pprice { font-family:'IBM Plex Mono',monospace; margin: 20px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.ptier .pprice .amt { font-size: 2.5rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.ptier .pprice .per { font-size: 0.85rem; color: var(--ink-faint); }
.ptier .pbays { font-family:'IBM Plex Mono',monospace; font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 22px; }
.ptier .btn { width: 100%; }
.ptier .plist { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.ptier .plist li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink-soft); align-items: flex-start; }
.ptier .plist .tick { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--orange); }
.ptier .plist .head { font-family:'IBM Plex Mono',monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: -2px; }

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.cta-band { background: var(--graphite-800); color: var(--on-dark); position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; z-index: 2; padding: 96px 32px; text-align: center; }
.cta-band h2 { font-family:'Saira Condensed',sans-serif; text-transform: uppercase; color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 0.94; letter-spacing: -0.01em; max-width: 18ch; margin: 0 auto; }
.cta-band p { color: var(--on-dark-soft); margin: 20px auto 0; max-width: 52ch; font-size: 1.1rem; }
.cta-band .cta-row { justify-content: center; margin-top: 34px; }
.cta-band .hazard { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: repeating-linear-gradient(135deg, var(--orange) 0 16px, var(--graphite-800) 16px 32px); opacity: 0.9; }
.cta-band .ghost-mark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); opacity: 0.05; pointer-events:none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--graphite-900); color: var(--on-dark-soft); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer-blurb { font-size: 0.95rem; color: var(--on-dark-faint); max-width: 30ch; }
.footer-col h5 { font-family:'IBM Plex Mono',monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; font-size: 0.95rem; color: var(--on-dark-soft); margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bot { display: flex; align-items: center; gap: 16px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--dark-line); font-size: 0.86rem; color: var(--on-dark-faint); flex-wrap: wrap; }
.footer-bot .maple { color: var(--orange); }
.footer-bot .spacer { margin-left: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .heroA-grid { grid-template-columns: 1fr; gap: 36px; }
  .heroA { padding-top: 44px; }
  .heroA-board .mock-frame, .mock-frame.bleed-r { width: 100%; }
  .frow { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .frow.flip .frow-media { order: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-col.old { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .section-pad { padding: 72px 0; }
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: inline-grid; place-items:center; width: 40px; height: 40px; border:1px solid var(--line-2); border-radius: 6px; background: transparent; cursor:pointer; }
  .cards { grid-template-columns: 1fr; }
  .trust-inner { gap: 22px; }
  .trust-logos { margin-left: 0; gap: 22px; }
  .cmp-wrap { overflow-x: auto; }
  .cmp { min-width: 640px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ps-col { padding: 30px 26px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   RIGDECK SITE — production additions
   (real SVG logo marks · demo lead-capture form)
   ============================================================ */

/* --- real Haul SVG marks (nav + footer + CTA watermark) --- */
.brand-mark { width: 40px; height: 40px; display: block; }
.footer .brand-mark { width: 38px; height: 38px; }
.cta-band .ghost-mark { width: 400px; height: auto; right: -36px; }

/* --- final CTA: copy + demo form --- */
.cta-band .wrap { text-align: left; }
.cta-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.cta-copy h2 { margin: 0; max-width: 15ch; }
.cta-copy p { margin: 18px 0 0; max-width: 46ch; }
.cta-points { list-style: none; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.cta-points li { display: flex; gap: 11px; align-items: flex-start; color: var(--on-dark-soft); font-size: 1.02rem; }
.cta-points svg { width: 18px; height: 18px; flex: none; color: var(--orange); margin-top: 3px; }

.demo-form { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.df-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.demo-form .df-field { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-soft); margin-bottom: 14px; }
.demo-form input, .demo-form textarea { display: block; width: 100%; margin-top: 6px; padding: 11px 12px; font-family: inherit; font-size: 0.95rem; font-weight: 400; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 7px; transition: border-color .15s, box-shadow .15s; }
.demo-form input::placeholder, .demo-form textarea::placeholder { color: var(--ink-ghost); }
.demo-form input:focus, .demo-form textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint); }
.demo-form textarea { resize: vertical; min-height: 64px; }
.df-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none; }
.df-submit { width: 100%; justify-content: center; margin-top: 4px; }
.df-fine { font-size: 0.8rem; color: var(--ink-faint); margin-top: 13px; text-align: center; }
.df-fine strong { color: var(--ink-soft); font-weight: 600; }
.df-status { font-size: 0.92rem; margin-top: 10px; text-align: center; min-height: 1px; }
.df-status.err { color: var(--orange-700); }
.demo-form.is-busy { opacity: 0.7; pointer-events: none; }

/* success state (swapped in by rigdeck.js) */
.demo-done { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: var(--shadow-lg); text-align: center; }
.demo-done .dd-ic { width: 52px; height: 52px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-tint); color: var(--orange-700); }
.demo-done .dd-ic svg { width: 26px; height: 26px; }
.demo-done h3 { font-family: 'Saira Condensed', sans-serif; text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.demo-done p { color: var(--ink-soft); margin-top: 10px; font-size: 0.98rem; max-width: 34ch; margin-left: auto; margin-right: auto; }

@media (max-width: 920px) {
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-copy h2 { max-width: none; }
}
@media (max-width: 460px) {
  .df-grid { grid-template-columns: 1fr; }
  .demo-form { padding: 22px; }
}
