/* ============================================================
   logisticsmarketing.agency — Design System
   Premium SaaS + B2B Authority hybrid
   ============================================================ */

:root {
  /* Palette — Editorial Light v3 (pure white) */
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #FAFAFA;
  --border: #E5E5E5;
  --border-bright: #D4D4D4;

  --text: #0A0A0A;
  --text-muted: #525252;
  --text-dim: #737373;

  --cyan: #DC4423;       /* bold rust orange — primary accent */
  --cyan-dim: #B91C1C;
  --amber: #EA580C;      /* vibrant orange highlight */
  --lime: #15803D;       /* punchy forest green — success */
  --red: #991B1B;        /* dark red — negatives */

  /* Type scale */
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Menlo", monospace;

  --fs-xxl: clamp(3rem, 7.5vw, 6rem);
  --fs-xl: clamp(2.25rem, 5vw, 4rem);
  --fs-lg: clamp(1.5rem, 3vw, 2.25rem);
  --fs-md: 1.25rem;
  --fs-base: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Spacing — tightened (was 9rem, now 6rem for premium rhythm) */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-xxl: 6rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-text: 680px;
  --radius: 10px;
  --radius-sm: 6px;

  --shadow: 0 2px 4px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.05), 0 24px 48px rgba(0, 0, 0, 0.06);
  --shadow-cyan: 0 4px 24px rgba(220, 68, 35, 0.1);
  --shadow-float: 0 12px 32px rgba(0, 0, 0, 0.04), 0 32px 64px rgba(0, 0, 0, 0.06);

  --t-fast: 0.15s ease;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: none;
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--cyan); }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: var(--fs-xxl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p { color: var(--text); max-width: 65ch; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--gap-sm);
  display: inline-block;
}
.muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); }

/* ============ Layout helpers ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap-md); }
.section { padding: var(--gap-xxl) 0; }
.section-tight { padding: var(--gap-xl) 0; }

.grid { display: grid; gap: var(--gap-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; gap: var(--gap-sm); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-lg);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.nav-links {
  display: flex;
  gap: var(--gap-md);
  list-style: none;
  font-size: var(--fs-sm);
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--text);
  color: #FFFFFF;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--t);
  border: 1px solid var(--text);
}
.nav-cta:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #FFFFFF;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text);
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: var(--gap-md);
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-cta { display: inline-block; margin-top: var(--gap-sm); }
}

/* ============ Nav dropdowns ============ */
.has-dropdown { position: relative; }
.has-dropdown > .nav-trigger {
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 500;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--t-fast);
}
.has-dropdown > .nav-trigger::after {
  content: "▾";
  font-size: 0.65em;
  opacity: 0.5;
  transition: transform var(--t-fast);
}
.has-dropdown:hover > .nav-trigger { color: var(--text); }
.has-dropdown:hover > .nav-trigger::after { transform: rotate(180deg); opacity: 1; }

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-float);
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { padding: 0; }
.dropdown li a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 500;
  transition: all 0.12s ease;
  white-space: nowrap;
}
.dropdown li a:hover {
  background: var(--surface-2);
  color: var(--cyan);
}
.dropdown li a .star { color: var(--cyan); margin-right: 0.25rem; }
.dropdown li a small {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 0.1rem;
}

/* Mobile: dropdowns flatten to nested list */
@media (max-width: 900px) {
  .has-dropdown > .nav-trigger::after { display: none; }
  .nav.open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: auto;
    margin-top: 0.5rem;
  }
  .nav.open .dropdown li a { padding: 0.4rem 0; font-size: var(--fs-sm); }
}

/* ============ Buttons — Reform-polished ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--t);
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--text);
  color: #FFFFFF;
  border: 1px solid var(--text);
}
.btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-secondary:hover {
  border-color: var(--text);
  background: var(--surface-2);
}

/* ============ Hero — Reform-style with gradient mesh ============ */
.hero {
  padding: var(--gap-xl) 0 var(--gap-xxl);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  right: -10%;
  height: 80%;
  background:
    radial-gradient(circle at 15% 30%, rgba(220, 68, 35, 0.18), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(234, 88, 12, 0.14), transparent 45%),
    radial-gradient(circle at 50% 60%, rgba(21, 128, 61, 0.10), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(180, 140, 90, 0.12), transparent 50%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 {
  max-width: 22ch;
  margin-bottom: var(--gap-md);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 700;
}
.hero h1 .muted-line { color: var(--text-dim); }
.hero h1 .strong-line { color: var(--text); }
.hero .sub {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: var(--gap-lg);
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

/* ============ Industry Ticker — hidden in minimalist mode ============ */
.ticker {
  display: none;
}
.ticker-old {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.9rem 0;
  margin-top: var(--gap-xl);
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 0.5rem; }
.ticker-track span::before { content: "›"; color: var(--cyan); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Metric Cards (GSC-style) ============ */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
}
@media (max-width: 900px) { .metrics-bar { grid-template-columns: repeat(2, 1fr); } }
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-md);
  box-shadow: var(--shadow);
  transition: all var(--t);
}
.metric-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.metric-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.metric-value.lime { color: var(--lime); }
.metric-spark {
  width: 100%;
  height: 32px;
}

/* ============ Cards (services / industries / etc) — Reform-polished ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-md);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  box-shadow: var(--shadow);
}
.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.card:hover h3 { color: var(--cyan); }
.card.featured {
  border-color: var(--cyan);
  background: var(--surface);
  box-shadow: var(--shadow-float), 0 0 0 1px rgba(220, 68, 35, 0.15);
  position: relative;
}
.card.featured::before {
  content: "★ Recommended";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cyan);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* .card.cta-card — soft emphasis for CTA cards (no badge) */
.card.cta-card {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(220, 68, 35, 0.04) 100%);
  box-shadow: var(--shadow);
}
.card.cta-card:hover {
  border-color: var(--cyan-dim);
  box-shadow: var(--shadow-hover);
}
.card h3 {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--t);
}
.card h3 .star { display: none; }
.card p { color: var(--text-muted); font-size: var(--fs-sm); max-width: 40ch; }
.card .arrow { color: var(--cyan); font-weight: 600; font-size: var(--fs-sm); margin-top: auto; }

/* ============ Section headers — Reform two-tone ============ */
.section-head {
  margin-bottom: var(--gap-lg);
  max-width: 60ch;
}
.section-head h2 {
  margin-bottom: var(--gap-sm);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 700;
}
.section-head h2 .muted-line,
h1 .muted-line,
h2 .muted-line { color: var(--text-dim); }
.section-head h2 .strong-line,
h1 .strong-line,
h2 .strong-line { color: var(--text); }
.section-head p { color: var(--text-muted); font-size: var(--fs-md); }

/* Subtle dot pattern utility (Reform uses this in product showcase area) */
.dotted-bg {
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}

/* ============ Pipeline Diagram (referral trap) — Reform-style with photo ============ */
.pipeline-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-lg);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .pipeline-diagram { grid-template-columns: 1fr; gap: var(--gap-md); }
}
.pipeline-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pipeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) hue-rotate(-8deg) saturate(0.9) contrast(1.05) brightness(0.92);
}
@media (max-width: 700px) { .pipeline-diagram { grid-template-columns: 1fr; } }
.pipeline-svg svg { width: 100%; height: auto; }
.pipeline-callout {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pipeline-callout strong { color: var(--red); font-size: 1.5rem; display: block; font-family: var(--font-display); }

/* ============ The $6M Breakdown Block — editorial card ============ */
.breakdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-lg);
  margin-top: var(--gap-md);
  box-shadow: var(--shadow);
}
.breakdown-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--gap-md);
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--border);
  align-items: baseline;
}
.breakdown-line:last-child { border-bottom: none; }
.breakdown-line .amount {
  font-family: var(--font-mono);
  color: var(--red);
  font-weight: 600;
  min-width: 5rem;
}
.breakdown-line .desc { color: var(--text-muted); font-size: var(--fs-sm); }
.breakdown-line .tag {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-dim);
}
.breakdown-line .did-not-work {
  display: inline-block;
  margin-left: 0.4rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ============ Calculator — Reform-style with dot texture ============ */
.calc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--gap-lg);
  box-shadow: var(--shadow-float);
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}
.calc-grid, .calc-footnote { position: relative; z-index: 1; }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap-lg);
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-inputs label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.calc-inputs .field { margin-bottom: var(--gap-md); }
.calc-inputs .value {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 600;
  float: right;
}
.calc-inputs input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border-bright);
  border-radius: 2px;
  outline: none;
}
.calc-inputs input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px var(--cyan);
}
.calc-inputs input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.calc-outputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
}
@media (max-width: 700px) { .calc-outputs { grid-template-columns: 1fr; } }
.calc-out {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--gap-md);
}
.calc-out.win { border-color: var(--lime); background: linear-gradient(180deg, var(--surface) 0%, rgba(21, 128, 61, 0.05) 100%); }
.calc-out h4 {
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.calc-out .big {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.calc-out.win .big { color: var(--lime); }
.calc-out ul {
  list-style: none;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 0.6rem;
}
.calc-out ul li { padding: 0.2rem 0; }
.calc-footnote {
  margin-top: var(--gap-md);
  padding-top: var(--gap-md);
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-style: italic;
}

/* ============ Rent vs Own Slider — Reform-style ============ */
.rvo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-lg);
  box-shadow: var(--shadow);
}
.rvo-control {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}
.rvo-control label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
}
.rvo-control input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--border-bright);
  border-radius: 2px;
}
.rvo-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px var(--cyan);
}
.rvo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}
@media (max-width: 700px) { .rvo-grid { grid-template-columns: 1fr; } }
.rvo-side {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--gap-md);
}
.rvo-side.rent { border-color: rgba(153, 27, 27, 0.4); background: rgba(153, 27, 27, 0.03); }
.rvo-side.own { border-color: rgba(21, 128, 61, 0.4); background: rgba(21, 128, 61, 0.03); }
.rvo-side h4 {
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--gap-sm);
}
.rvo-side.rent h4 { color: var(--red); }
.rvo-side.own h4 { color: var(--lime); }
.rvo-side .row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: var(--fs-sm);
}
.rvo-side .row:last-child { border-bottom: none; }
.rvo-side .row .val { font-family: var(--font-mono); font-weight: 600; color: var(--text); }
.rvo-side.rent .row .val { color: var(--red); }
.rvo-side.own .row .val { color: var(--lime); }

/* ============ Process Diagram (Trade Inquiry 4-step) — Reform-style ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  position: relative;
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-md);
  position: relative;
  box-shadow: var(--shadow);
}
.process-step:last-child { border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.process-step .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step ul { list-style: none; font-size: var(--fs-sm); color: var(--text-muted); }
.process-step ul li { padding: 0.2rem 0; }
.process-step ul li::before { content: "→ "; color: var(--cyan); }

/* ============ Trade Inquiry Tool Mockup ============ */
.trade-inquiry-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--gap-lg);
  box-shadow: var(--shadow-float);
  font-family: var(--font-body);
  position: relative;
}
.trade-inquiry-mockup::before {
  content: "LIVE PRODUCT";
  position: absolute;
  top: -10px;
  left: var(--gap-md);
  background: var(--cyan);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.ti-header {
  margin-bottom: var(--gap-md);
  text-align: center;
  padding-top: 0.5rem;
}
.ti-header h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.ti-header p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 35ch;
  margin: 0 auto;
  line-height: 1.5;
}
.ti-section {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: var(--gap-md);
  margin-bottom: 0.75rem;
}
.ti-section-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ti-section-label .price {
  color: var(--cyan);
  font-weight: 600;
}
.ti-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 500px) { .ti-field-grid { grid-template-columns: 1fr; } }
.ti-field { margin-bottom: 0.75rem; }
.ti-field:last-child { margin-bottom: 0; }
.ti-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.ti-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.7rem 0.9rem;
  font-size: var(--fs-sm);
  color: var(--text-dim);
  position: relative;
}
.ti-input.search::after {
  content: "⌕";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  font-size: 1rem;
}
.ti-add-route {
  border: 1px dashed var(--border-bright);
  border-radius: 9px;
  padding: 0.85rem;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0.75rem 0;
  font-family: var(--font-mono);
}
.ti-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--cyan);
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
  cursor: pointer;
  text-transform: uppercase;
  transition: background var(--t);
}
.ti-cta:hover { background: var(--cyan-dim); }
.ti-footer {
  text-align: center;
  margin-top: var(--gap-md);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-dim);
}
.ti-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  margin-bottom: 0.4rem;
}
.ti-footer-row span { display: flex; align-items: center; gap: 0.3rem; }
.ti-footer-row .check { color: var(--lime); }
.ti-footer a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

/* Side-by-side container */
.tool-split {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: var(--gap-xl);
  align-items: start;
}
@media (max-width: 900px) { .tool-split { grid-template-columns: 1fr; gap: var(--gap-lg); } }
.tool-split-text { padding-top: var(--gap-md); }
.tool-split-text p { margin-bottom: 1rem; }

/* ============ Quote Tool Showcase — Reform-style with dot texture ============ */
.tool-showcase {
  background: var(--surface);
  border: 1px solid var(--cyan);
  border-radius: 14px;
  padding: var(--gap-lg);
  box-shadow: var(--shadow-float);
  background-image: radial-gradient(circle, rgba(220, 68, 35, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.tool-showcase img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin: var(--gap-md) 0;
}
.tool-showcase ul {
  list-style: none;
  margin: var(--gap-md) 0;
}
.tool-showcase ul li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.tool-showcase ul li::before { content: "→ "; color: var(--cyan); font-weight: 600; }

/* ============ Sample Engagement cards — Reform-style floating ============ */
.engagement-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--gap-md);
  transition: all var(--t);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.engagement-card:hover { border-color: var(--border-bright); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.06), 0 40px 80px rgba(0,0,0,0.08); }
.engagement-card:hover h3 { color: var(--cyan); }
.engagement-card h3 { transition: color var(--t); }
.engagement-card .label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.engagement-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.engagement-card .tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--gap-sm);
}
.engagement-card .tag {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  background: var(--bg);
  color: var(--cyan);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.engagement-card p { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: var(--gap-sm); }
.engagement-card .results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: var(--gap-sm) 0;
}
.engagement-card .result-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--lime);
  font-weight: 700;
}
.engagement-card .result-lbl {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ============ CTA Block — Reform-style ============ */
.cta-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-xl);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-block h2 { margin-bottom: var(--gap-md); }
.cta-block ol {
  text-align: left;
  max-width: 50ch;
  margin: 0 auto var(--gap-lg);
  color: var(--text-muted);
  font-size: var(--fs-md);
}
.cta-block ol li { padding: 0.4rem 0; }
.cta-block .sub {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  font-style: italic;
  margin-top: var(--gap-md);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Footer ============ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--gap-xl) 0 var(--gap-md);
  margin-top: var(--gap-xxl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--gap-sm);
}
.footer ul { list-style: none; }
.footer ul li { padding: 0.25rem 0; }
.footer ul a { color: var(--text-muted); font-size: var(--fs-sm); }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--gap-md);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ============ FAQ Accordion ============ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--gap-sm) 0;
}
.faq-item summary {
  cursor: pointer;
  padding: var(--gap-sm) 0;
  font-weight: 600;
  color: var(--text);
  font-size: var(--fs-md);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 var(--gap-sm);
  color: var(--text-muted);
}

/* ============ Forms ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-md); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-field input, .form-field textarea, .form-field select {
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--t);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field.full { grid-column: 1 / -1; }

/* ============ Team cards ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--t);
  box-shadow: var(--shadow);
}
.team-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.team-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-body {
  padding: var(--gap-md);
}
.team-body .name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.team-body h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.team-body .role {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-body p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.team-body .links {
  margin-top: var(--gap-sm);
  display: flex;
  gap: var(--gap-sm);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}
.team-body .links a { color: var(--cyan); }

/* ============ Milestones list (small bullets with green checks) ============ */
.milestones {
  list-style: none;
  margin: var(--gap-md) 0;
  padding: 0;
}
.milestones li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.milestones li:last-child { border-bottom: none; }
.milestones li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.milestones li a { color: var(--cyan); text-decoration: underline; text-decoration-color: var(--border-bright); text-underline-offset: 3px; }
.milestones li a:hover { text-decoration-color: var(--cyan); }

/* ============ Manifesto Cards ============ */
.manifesto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}
@media (max-width: 900px) { .manifesto { grid-template-columns: 1fr; } }
.manifesto-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-md);
}
.manifesto-card .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.manifesto-card h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.manifesto-card p { font-size: var(--fs-sm); color: var(--text-muted); }

/* ============ Long-form prose (articles, about) ============ */
.prose {
  max-width: 65ch;
  margin: 0 auto;
}
.prose p { margin-bottom: var(--gap-md); font-size: 1.1rem; line-height: 1.7; }
.prose h2, .prose h3 { margin-top: var(--gap-lg); margin-bottom: var(--gap-sm); }
.prose ul, .prose ol { margin: var(--gap-md) 0; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4rem; color: var(--text-muted); }
.prose blockquote {
  border-left: 3px solid var(--cyan);
  padding-left: var(--gap-md);
  margin: var(--gap-md) 0;
  color: var(--text-muted);
  font-style: italic;
}
.prose code, .prose pre {
  font-family: var(--font-mono);
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.prose code { padding: 0.1rem 0.4rem; font-size: 0.9em; }
.prose pre { padding: var(--gap-md); overflow-x: auto; font-size: var(--fs-sm); border: 1px solid var(--border); }

/* ============ Lexicon Panel ============ */
.lexicon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--gap-lg);
  position: relative;
  overflow: hidden;
}
.lexicon-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: var(--gap-sm);
  text-transform: uppercase;
}
.lexicon-terms {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 2;
}
.lexicon-terms span {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 0.2rem 0.3rem 0.2rem 0;
  color: var(--cyan);
}
.lexicon p { margin-top: var(--gap-md); color: var(--text-muted); font-size: var(--fs-sm); }

/* ============ Comparison Table — Reform-polished ============ */
.compare-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.compare th, .compare td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare th {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface-2);
  font-weight: 500;
  border-bottom: 2px solid var(--border-bright);
}
.compare th.us {
  color: var(--cyan);
  background: rgba(220, 68, 35, 0.06);
}
.compare th.us::before {
  content: "★ ";
  color: var(--cyan);
}
.compare td.us {
  color: var(--text);
  background: rgba(220, 68, 35, 0.04);
  font-weight: 500;
}
.compare td.bad { color: var(--text-dim); }
.compare td.good { color: var(--lime); font-weight: 500; }
.compare td:first-child {
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 22%;
}
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: rgba(220, 68, 35, 0.02); }
.compare tr:hover td.us { background: rgba(220, 68, 35, 0.08); }
@media (max-width: 800px) {
  .compare-wrap { overflow-x: auto; }
  .compare { min-width: 700px; }
}

/* ============ Banner photo (full-bleed visual moment) ============ */
.banner-photo {
  width: 100%;
  margin: var(--gap-xl) 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21/9;
  border: 1px solid var(--border);
}
.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) hue-rotate(-8deg) saturate(0.9) contrast(1.05);
}

/* ============ Big Tagline Statement (Reform-inspired) ============ */
.tagline-section {
  padding: var(--gap-xxl) 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tagline-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto;
}
.tagline-section .tagline-accent { color: var(--cyan); }

/* ============ Approach 3-col (Reform-style value props) ============ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-xl);
}
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; gap: var(--gap-lg); } }
.approach-item {
  border-top: 2px solid var(--text);
  padding-top: var(--gap-md);
}
.approach-item .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-bottom: var(--gap-sm);
  text-transform: uppercase;
}
.approach-item h3 {
  font-size: 1.75rem;
  margin-bottom: var(--gap-sm);
}
.approach-item p {
  color: var(--text-muted);
  font-size: var(--fs-base);
  max-width: 38ch;
}

/* ============ Stack Grid ============ */
.stack-section { padding: var(--gap-xxl) 0; border-top: 1px solid var(--border); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: var(--gap-lg);
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
.stack-item {
  background: var(--surface);
  padding: var(--gap-md);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: all var(--t);
}
.stack-item:hover {
  color: var(--text);
  background: var(--surface-2);
}

/* ============ FAQ Section (home-level) ============ */
.faq-section {
  padding: var(--gap-xxl) 0;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap-xl);
  align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============ 2-col Final CTA (Reform-style) ============ */
.cta-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .cta-2col { grid-template-columns: 1fr; } }
.cta-2col-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
@media (max-width: 900px) { .cta-2col-img { min-height: 280px; border-right: none; border-bottom: 1px solid var(--border); } }
.cta-2col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) hue-rotate(-8deg) saturate(0.95) contrast(1.05);
}
.cta-2col-content {
  padding: var(--gap-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-2col-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--gap-md);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-2col-content ol {
  list-style: none;
  margin-bottom: var(--gap-lg);
  color: var(--text-muted);
  font-size: var(--fs-md);
}
.cta-2col-content ol li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
}
.cta-2col-content ol li:last-child { border-bottom: none; }
.cta-2col-content .sub {
  margin-top: var(--gap-md);
  font-size: var(--fs-sm);
  color: var(--text-dim);
  font-style: italic;
  max-width: 50ch;
}

/* ============ Images ============ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: var(--gap-md); } }

.hero-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-float);
  background: var(--surface);
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3) hue-rotate(-5deg) saturate(0.95) contrast(1.05) brightness(0.98);
}

.pull-quote {
  padding: var(--gap-xxl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  margin: 0 auto;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--text);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pull-quote cite {
  display: block;
  margin-top: var(--gap-md);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cinematic {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin: var(--gap-xxl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 700px) {
  .cinematic { height: 360px; }
}
.cinematic img,
.cinematic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.65) hue-rotate(-12deg) saturate(0.9) contrast(1.15) brightness(0.65);
  display: block;
}
.cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 21, 0.45) 0%, rgba(26, 24, 21, 0.75) 100%);
}
.cinematic-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gap-md);
}
.cinematic-caption blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F5F1E8;
  max-width: 30ch;
  line-height: 1.2;
  border-left: 3px solid var(--cyan);
  padding-left: var(--gap-md);
  text-align: left;
}
.cinematic-caption .title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F5F1E8;
  max-width: 22ch;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-align: left;
}
.cinematic-caption .title .muted-line { color: rgba(245, 241, 232, 0.6); }
.cinematic-caption .title .strong-line { color: #F5F1E8; }
.cinematic-caption .eyebrow-light {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--gap-sm);
  display: block;
}
.cinematic-caption .sub-light {
  display: block;
  margin-top: var(--gap-md);
  color: rgba(245, 241, 232, 0.85);
  font-size: var(--fs-md);
  max-width: 50ch;
  line-height: 1.5;
}
.cinematic-caption cite {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: #DC6534;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--gap-sm);
}

/* Industry icons */
.industry-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-sm);
  transition: all var(--t);
}
.card:hover .industry-icon {
  background: var(--surface);
  border-color: var(--cyan);
}
.industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--t);
}
.card:hover .industry-icon svg {
  stroke: var(--cyan);
}

/* Engagement card thumb */
.engagement-thumb {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--gap-sm);
  border: 1px solid var(--border);
}
.engagement-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) hue-rotate(-8deg) saturate(0.95) contrast(1.05) brightness(1);
  transition: transform 0.6s ease;
}
.engagement-card:hover .engagement-thumb img { transform: scale(1.05); }

/* Story section image (side) */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.story-img img,
.story-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.45) hue-rotate(-8deg) saturate(0.9) contrast(1.05) brightness(0.95);
  display: block;
}

/* ============ Sticky mobile CTA ============ */
.mobile-cta-sticky {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--text);
    color: #FFFFFF;
    padding: 1rem;
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    border-top: 1px solid var(--border-bright);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    letter-spacing: -0.005em;
  }
  .mobile-cta-sticky:hover {
    background: var(--cyan);
    color: #FFFFFF;
  }
  body {
    padding-bottom: 64px;
  }
}

/* ============ Misc helpers ============ */
.tag-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  background: var(--bg);
  color: var(--cyan);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  letter-spacing: 0.05em;
}
.illustrative-banner {
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.3);
  color: var(--amber);
  padding: 0.6rem var(--gap-md);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
}

/* ============ Awards row + coverage strip ============ */
.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.award-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 180px;
  flex-shrink: 0;
}
.award-badge .laurel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #8A6D3B; /* warm bronze for laurel */
  opacity: 0.9;
}
.award-badge .award-text {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  padding: 0 32px;
  margin-top: -6px;
}
.award-badge .award-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.award-badge .award-text span {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  white-space: nowrap;
}
.award-badge .award-text em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.coverage-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.coverage-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: -0.005em;
}
.coverage-strip .sep {
  opacity: 0.35;
  font-weight: 400;
}
@media (max-width: 768px) {
  .awards-row { gap: 0.4rem; }
  .award-badge { width: 120px; height: 150px; }
  .award-badge .award-text { padding: 0 24px; }
  .award-badge .award-text strong { font-size: 1.15rem; }
  .award-badge .award-text span { font-size: 0.58rem; }
  .award-badge .award-text em { font-size: 0.52rem; }
  .coverage-strip { font-size: 0.9rem; gap: 0.5rem 1.2rem; }
}

/* ============ Contact: Two paths ============ */
.contact-path {
  display: flex;
  gap: var(--gap-md);
  padding: var(--gap-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.contact-path:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.contact-path--primary {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(220,68,35,0.04) 100%);
}
.contact-path--primary::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  background: rgba(220,68,35,0.1);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}
.contact-path-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(220,68,35,0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-path--secondary .contact-path-icon {
  background: var(--surface-2);
  color: var(--ink);
}
.contact-path-icon svg { width: 26px; height: 26px; }
.contact-path-body { flex: 1; }
.contact-path-body .eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.contact-path-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
}
.contact-path-body p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.55;
  margin: 0 0 0.9rem 0;
}
.contact-path-cta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--cyan);
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-path { flex-direction: column; padding: var(--gap-md); }
  .contact-path-body h3 { font-size: 1.15rem; }
}
