/* ============================================================
   DANSON MARKETING — main.css
   Compiled output: design tokens + Tailwind-style utilities + custom components
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Ember — primary brand */
  --ember-50:  #FFF4EC;
  --ember-100: #FFE2CC;
  --ember-200: #FFD4B8;
  --ember-300: #FFB589;
  --ember-400: #FF7A3D;
  --ember-500: #F2661F;
  --ember-600: #E85D2A;
  --ember-700: #B84820;
  --ember-800: #7A2B0F;
  --ember-900: #4A1B0C;

  /* Graphite — neutrals */
  --canvas:    #FAFAF7;   /* body bg light */
  --surface:   #F3F1EA;   /* raised surface light */
  --surface-2: #E8E6DF;   /* deeper surface light */
  --muted-100: #D4D2C8;
  --muted-300: #B4B2A9;
  --muted-500: #8A8680;
  --muted-700: #5F5E5A;
  --graphite-600: #2C2C2A;
  --graphite-700: #1A1A18;
  --graphite-800: #121210;
  --ink:       #0A0A0A;   /* hero / footer bg */

  /* Sage — secondary accent */
  --sage-50:  #E8F0E4;
  --sage-400: #8FB07F;
  --sage-600: #5F8A4F;
  --sage-800: #2F4A26;
  --sage-900: #1F3B17;

  /* System */
  --success: #2F5F3F;
  --warning: #B8860B;
  --error:   #8B2E2E;

  /* Typography */
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Radii */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;
  --r-2xl: 28px;

  /* Shadows — used sparingly */
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 4px 20px -4px rgba(10,10,10,0.08);
  --shadow-lg: 0 20px 60px -20px rgba(10,10,10,0.15);

  /* Layout */
  --container: 1200px;
  --gutter: 1.5rem;
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; }

/* ---------- 3. TYPOGRAPHY SCALE ---------- */
.t-display-xl { font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5.25rem); line-height: 0.98; letter-spacing: -0.035em; font-weight: 400; }
.t-display-lg { font-family: var(--font-serif); font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.04; letter-spacing: -0.03em; font-weight: 400; }
.t-display    { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.08; letter-spacing: -0.025em; font-weight: 400; }
.t-h1         { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.08; letter-spacing: -0.025em; font-weight: 400; }
.t-h2         { font-family: var(--font-serif); font-size: clamp(1.625rem, 2.5vw, 2.125rem); line-height: 1.15; letter-spacing: -0.02em; font-weight: 400; }
.t-h3         { font-family: var(--font-sans); font-size: 1.25rem; line-height: 1.3; letter-spacing: -0.015em; font-weight: 500; }
.t-h4         { font-family: var(--font-sans); font-size: 1.0625rem; line-height: 1.35; font-weight: 500; }
.t-body-lg    { font-family: var(--font-sans); font-size: 1.125rem; line-height: 1.6; color: var(--muted-700); }
.t-body       { font-family: var(--font-sans); font-size: 1rem; line-height: 1.65; }
.t-body-sm    { font-family: var(--font-sans); font-size: 0.875rem; line-height: 1.55; color: var(--muted-700); }
.t-eyebrow    { font-family: var(--font-sans); font-size: 0.6875rem; line-height: 1; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--ember-600); }
.t-caption    { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.12em; color: var(--muted-500); text-transform: uppercase; }
.t-italic     { font-style: italic; }

.t-on-dark .t-eyebrow { color: var(--ember-400); }
.t-on-dark { color: var(--canvas); }
.t-on-dark .t-body-lg,
.t-on-dark .t-body,
.t-on-dark .t-body-sm { color: var(--muted-100); }
.t-on-dark .t-caption { color: var(--muted-500); }

.t-accent { color: var(--ember-600); }
.t-on-dark .t-accent { color: var(--ember-400); }

/* ---------- 4. LAYOUT UTILITIES ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { width: 100%; max-width: 820px; margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: 1400px; margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section-lg { padding-block: clamp(5rem, 10vw, 9rem); }

.bg-canvas { background: var(--canvas); }
.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink); color: var(--canvas); }
.bg-ink-deep { background: var(--graphite-800); color: var(--canvas); }
.bg-ember { background: var(--ember-600); color: var(--ember-900); }

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; }

.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; } .mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }

.max-w-prose { max-width: 65ch; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.hidden { display: none; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 500;
  padding: 0.8rem 1.25rem; border-radius: var(--r-md);
  transition: all 180ms cubic-bezier(0.2, 0, 0, 1);
  line-height: 1; letter-spacing: -0.005em;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ember-600); color: var(--ink); }
.btn-primary:hover { background: var(--ember-400); }

.btn-on-dark { background: var(--ember-400); color: var(--ink); }
.btn-on-dark:hover { background: var(--ember-300); }

.btn-ghost { border-color: rgba(10,10,10,0.15); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(10,10,10,0.02); }

.btn-ghost-dark { border-color: rgba(250,250,247,0.18); color: var(--canvas); background: transparent; }
.btn-ghost-dark:hover { border-color: rgba(250,250,247,0.5); background: rgba(250,250,247,0.04); }

.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }

.link-underline {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  font-size: 0.875rem; font-weight: 500; transition: opacity 160ms;
}
.link-underline:hover { opacity: 0.7; }

/* ---------- 6. HEADER + NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(250,250,247,0.06);
  color: var(--canvas);
}
.site-header.is-light {
  background: rgba(250, 250, 247, 0.85);
  color: var(--ink);
  border-bottom-color: rgba(10,10,10,0.06);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem; gap: 2rem;
}
.site-brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.site-brand svg { width: 26px; height: auto; }
.site-brand-text { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: -0.02em; }

.primary-nav { display: flex; gap: 1.75rem; font-size: 0.875rem; color: var(--muted-300); }
.site-header.is-light .primary-nav { color: var(--muted-700); }
.primary-nav a:hover { color: var(--canvas); }
.site-header.is-light .primary-nav a:hover { color: var(--ink); }

.nav-cta { color: var(--ember-400); font-weight: 500; }
.site-header.is-light .nav-cta { color: var(--ember-600); }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px; border-radius: var(--r-md);
  border: 1px solid rgba(250,250,247,0.15);
  align-items: center; justify-content: center;
}
.mobile-toggle span {
  display: block; width: 18px; height: 1px; background: currentColor;
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor;
}
.mobile-toggle span::before { top: -5px; }
.mobile-toggle span::after  { top: 5px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: var(--canvas);
  padding: 6rem 2rem 2rem;
}
.mobile-nav.is-open { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav a { font-family: var(--font-serif); font-size: 1.75rem; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: var(--r-md);
  border: 1px solid rgba(250,250,247,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--canvas); font-size: 1.25rem;
}

/* ---------- 7. HERO ---------- */
.hero {
  background: var(--ink); color: var(--canvas);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 600px at 85% 30%, rgba(232, 93, 42, 0.10), transparent),
    radial-gradient(circle 400px at 90% 80%, rgba(232, 93, 42, 0.06), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem;
  align-items: center;
  min-height: min(70vh, 640px);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.6rem;
  border: 1px solid rgba(250,250,247,0.15);
  border-radius: 999px; font-size: 0.75rem;
  color: var(--muted-100); letter-spacing: 0.05em;
}
.hero-pill-dot {
  width: 6px; height: 6px; background: var(--ember-400); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.15);
}
.hero-title { margin-top: 1.25rem; max-width: 14ch; }
.hero-sub { margin-top: 1.25rem; max-width: 42ch; color: var(--muted-100); font-size: 1.0625rem; line-height: 1.55; }
.hero-cta-row { margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-card {
  background: var(--graphite-700);
  border: 1px solid var(--graphite-600);
  border-radius: var(--r-lg);
  padding: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.25rem 0.4rem 0.75rem;
  border-bottom: 1px solid var(--graphite-600);
}
.hero-card-dots { display: flex; gap: 5px; }
.hero-card-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--graphite-600); }
.hero-card-dot.is-active { background: var(--ember-400); }

.chat-bubble-in {
  background: var(--graphite-600); color: var(--muted-100);
  font-size: 0.8125rem; padding: 0.55rem 0.75rem;
  border-radius: 10px 10px 10px 2px;
  max-width: 78%; margin-top: 0.6rem; line-height: 1.45;
}
.chat-bubble-out {
  background: var(--ember-400); color: var(--ink);
  font-size: 0.8125rem; padding: 0.55rem 0.75rem;
  border-radius: 10px 10px 2px 10px;
  max-width: 80%; margin: 0.6rem 0 0 auto; line-height: 1.45; font-weight: 500;
}
.chat-log {
  background: rgba(95,138,79,0.12); border: 1px solid rgba(95,138,79,0.32);
  color: var(--sage-400); font-family: var(--font-mono);
  font-size: 0.7rem; padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  display: flex; justify-content: space-between;
  margin-top: 0.85rem;
}

.hero-trust {
  position: relative;
  margin-top: 2.75rem; padding-top: 1.25rem;
  border-top: 1px solid var(--graphite-700);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.hero-trust-list {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; color: var(--muted-500);
}

/* ---------- 8. SECTION HEADS ---------- */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.section-head-lede { max-width: 32rem; }
.section-head-lede .t-h2 { margin-top: 0.75rem; }

/* ---------- 9. FEATURE CARDS / SERVICE GRID ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
}
.feature-card {
  padding: 1.75rem;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: var(--r-lg);
  background: var(--canvas);
  transition: border-color 200ms, transform 200ms;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.feature-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.feature-card-num { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--muted-500); }
.feature-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.015em; margin-top: 0.75rem; }
.feature-card p { margin-top: 0.5rem; color: var(--muted-700); font-size: 0.9375rem; line-height: 1.55; }
.feature-card-foot { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.8125rem; font-weight: 500; color: var(--ember-700); }

/* ---------- 10. PRODUCT SPOTLIGHT ---------- */
.product-spotlight-shell {
  background: var(--ink); color: var(--canvas);
  border-radius: var(--r-xl); padding: 1.75rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
}
.product-spotlight-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.25rem;
}
.product-stat { border-left: 2px solid var(--ember-400); padding: 0.25rem 0 0.25rem 0.75rem; }
.product-stat-num { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1; color: var(--canvas); }
.product-stat-lbl { font-size: 0.7rem; color: var(--muted-500); margin-top: 0.25rem; }

.feed { background: var(--graphite-700); border-radius: var(--r-md); padding: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.feed-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.5rem; border-bottom: 1px solid var(--graphite-600); }
.feed-status { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-mono); font-size: 0.65rem; color: var(--sage-400); }
.feed-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-600); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.feed-row {
  display: flex; gap: 0.55rem; align-items: center;
  padding: 0.5rem 0.6rem; background: var(--ink);
  border-radius: var(--r-sm); border-left: 2px solid var(--ember-400);
}
.feed-row--wa { border-left-color: #25D366; }
.feed-row--fb { border-left-color: #378ADD; }
.feed-row--ig { border-left-color: #ED93B1; }
.feed-row-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 600;
}
.feed-row-body { flex: 1; min-width: 0; }
.feed-row-title { font-size: 0.75rem; color: var(--canvas); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed-row-meta { font-family: var(--font-mono); font-size: 0.625rem; color: var(--muted-700); }
.feed-row-time { font-family: var(--font-mono); font-size: 0.625rem; color: var(--muted-700); }

/* ---------- 11. INDUSTRIES GRID (asymmetric) ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.6rem;
}
.industry-card-featured {
  grid-column: span 1; grid-row: span 2;
  background: var(--ember-600); color: var(--ember-900);
  padding: 1.75rem; border-radius: var(--r-lg);
  display: flex; flex-direction: column; justify-content: space-between;
}
.industry-card-featured h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--ink); letter-spacing: -0.02em; margin-top: 0.6rem; }
.industry-card-featured p  { font-size: 0.9375rem; color: var(--ember-900); line-height: 1.55; margin-top: 0.6rem; }
.industry-card-featured .t-caption { color: var(--ember-900); }
.industry-stats { display: flex; gap: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(10,10,10,0.2); }
.industry-stat-num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); }
.industry-stat-lbl { font-size: 0.7rem; color: var(--ember-900); }

.industry-card {
  background: var(--graphite-700); border: 1px solid var(--graphite-600);
  padding: 1.25rem; border-radius: var(--r-lg); color: var(--canvas);
  transition: border-color 200ms;
}
.industry-card:hover { border-color: var(--ember-400); }
.industry-card .t-caption { color: var(--muted-700); }
.industry-card h3 { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: -0.015em; margin-top: 0.5rem; color: var(--canvas); }
.industry-card p { font-size: 0.8125rem; color: var(--muted-300); line-height: 1.55; margin-top: 0.35rem; }

.industries-foot {
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid var(--graphite-700);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

/* ---------- 12. STATS STRIP ---------- */
.stats-strip {
  background: var(--ember-600); color: var(--ember-900);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem;
}
.stat-item { border-top: 1px solid rgba(10,10,10,0.2); padding-top: 1.25rem; }
.stat-num { font-family: var(--font-serif); font-size: clamp(2.25rem, 4vw, 3.25rem); color: var(--ink); line-height: 1; letter-spacing: -0.025em; }
.stat-lbl { font-size: 0.875rem; color: var(--ember-900); margin-top: 0.6rem; }

/* ---------- 13. TESTIMONIALS ---------- */
.testimonials { background: var(--ink); color: var(--canvas); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
.testimonial figure { margin: 0; }
.testimonial-mark { font-family: var(--font-serif); font-size: 2.5rem; line-height: 0.5; color: var(--ember-400); display: block; margin-bottom: 0.5rem; }
.testimonial blockquote {
  font-family: var(--font-serif); font-size: 1.3125rem; line-height: 1.3;
  color: var(--canvas); font-style: italic; letter-spacing: -0.01em;
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--graphite-700);
  font-size: 0.875rem;
}
.testimonial-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--graphite-600); color: var(--canvas);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500;
}
.testimonial-name { color: var(--canvas); font-weight: 500; }
.testimonial-role { color: var(--muted-500); font-size: 0.8125rem; }

/* ---------- 14. FINAL CTA ---------- */
.final-cta { background: var(--ink); color: var(--canvas); padding-block: clamp(5rem, 10vw, 9rem); text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(232,93,42,0.12), transparent);
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-cta .t-display-lg { max-width: 18ch; margin-inline: auto; }
.final-cta .btn-row { margin-top: 2.5rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ---------- 15. FOOTER ---------- */
.site-footer { background: var(--graphite-800); color: var(--muted-300); padding-block: 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--graphite-700); }
.footer-brand-line { margin-top: 1rem; font-size: 0.9375rem; color: var(--muted-300); max-width: 28ch; line-height: 1.55; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-500); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.9375rem; }
.footer-col a:hover { color: var(--canvas); }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8125rem; color: var(--muted-700); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social { width: 36px; height: 36px; border-radius: var(--r-md); border: 1px solid var(--graphite-700); display: inline-flex; align-items: center; justify-content: center; transition: border-color 160ms; }
.footer-social:hover { border-color: var(--ember-400); color: var(--ember-400); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- 16. FORMS ---------- */
.form-field { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8125rem; color: var(--muted-700); margin-bottom: 0.45rem; font-weight: 500; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid rgba(10,10,10,0.15); border-radius: var(--r-md);
  background: var(--canvas); font-size: 0.9375rem;
  font-family: var(--font-sans);
  transition: border-color 160ms, box-shadow 160ms;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--ember-600);
  box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.12);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: 0.75rem; color: var(--muted-500); margin-top: 0.35rem; }

/* ---------- 17. PROSE (blog / legal pages) ---------- */
.prose { font-size: 1.0625rem; line-height: 1.75; color: var(--graphite-600); }
.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-top: 2.5em; }
.prose h3 { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400; color: var(--ink); margin-top: 2em; }
.prose a { color: var(--ember-700); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--ember-600); }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: 0.5rem; }
.prose blockquote { border-left: 3px solid var(--ember-400); padding-left: 1.25rem; font-style: italic; font-family: var(--font-serif); font-size: 1.375rem; line-height: 1.45; color: var(--ink); }
.prose code { font-family: var(--font-mono); font-size: 0.875em; background: var(--surface-2); padding: 0.1em 0.4em; border-radius: 4px; }
.prose hr { border: none; border-top: 1px solid rgba(10,10,10,0.1); margin: 3em 0; }

/* ---------- 18. BLOG CARDS ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; gap: 1rem; }
.blog-card-image { aspect-ratio: 4 / 3; background: var(--surface-2); border-radius: var(--r-lg); overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-meta { display: flex; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-500); letter-spacing: 0.05em; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400; letter-spacing: -0.015em; line-height: 1.2; color: var(--ink); }
.blog-card:hover .blog-card-title { color: var(--ember-700); }
.blog-card-excerpt { font-size: 0.9375rem; color: var(--muted-700); line-height: 1.55; }

/* ---------- 19. PAGE HERO (non-homepage) ---------- */
.page-hero { background: var(--ink); color: var(--canvas); padding-block: 6rem 4rem; border-bottom: 1px solid var(--graphite-700); }
.page-hero-inner { max-width: 48rem; }
.page-hero .t-eyebrow { color: var(--ember-400); }
.page-hero h1 { margin-top: 0.75rem; }
.page-hero p { margin-top: 1.25rem; font-size: 1.125rem; color: var(--muted-100); line-height: 1.55; max-width: 38rem; }

/* ---------- 20. MISC ---------- */
.divider-line { height: 1px; background: rgba(10,10,10,0.08); }
.divider-line-dark { height: 1px; background: var(--graphite-700); }
.accent-bar { display: inline-block; width: 40px; height: 1.5px; background: var(--ember-400); vertical-align: middle; margin-right: 0.75rem; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-spotlight-shell { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .industry-card-featured { grid-column: span 2; grid-row: span 1; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 1.25rem; }
  .primary-nav, .site-header .btn { display: none; }
  .mobile-toggle { display: inline-flex; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card-featured { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- 22. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 23. FOCUS VISIBLE ---------- */
:focus-visible { outline: 2px solid var(--ember-400); outline-offset: 2px; border-radius: 2px; }

/* ---------- 24. SELECTION ---------- */
::selection { background: var(--ember-400); color: var(--ink); }

/* ---------- 25. REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms cubic-bezier(0.2, 0, 0, 1), transform 800ms cubic-bezier(0.2, 0, 0, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger-1 { transition-delay: 80ms; }
.reveal-stagger-2 { transition-delay: 160ms; }
.reveal-stagger-3 { transition-delay: 240ms; }
.reveal-stagger-4 { transition-delay: 320ms; }
