/* ============================================================
   WOOSTER MANUFACTURING LLC — Master Stylesheet
   Identity: Systems-Design Company
   Aesthetic: Minimalist Lean Engineering + Natural Tones + 3D Edges
   Mode: Light Only
   ============================================================ */

/* ── 1. CSS VARIABLES ────────────────────────────────────── */
:root {
  /* ─ Color Palette: Hybrid Natural + Engineered Precision ─ */

  /* Primary: Deep Engineered Graphite — precision, authority */
  --graphite-900: #1a1d21;
  --graphite-800: #2a2e33;
  --graphite-700: #3d4147;
  --graphite-600: #52575e;
  --graphite-500: #6b7078;

  /* Secondary: Natural Greens — growth, grounding */
  --green-900: #1b3a2d;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-400: #52b788;
  --green-300: #74c69d;
  --green-100: #d8f3dc;

  /* Neutral: Stone — stability, foundation */
  --stone-900: #44403c;
  --stone-700: #78716c;
  --stone-500: #a8a29e;
  --stone-400: #c4bdb8;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50:  #fafaf9;

  /* Clarity: White */
  --white: #ffffff;

  /* Functional */
  --accent: var(--green-700);
  --accent-hover: var(--green-500);
  --text-primary: var(--graphite-900);
  --text-secondary: var(--graphite-600);
  --text-muted: var(--stone-700);
  --bg-primary: var(--white);
  --bg-secondary: var(--stone-50);
  --bg-tertiary: var(--stone-100);
  --border: var(--stone-300);
  --border-light: var(--stone-200);

  /* ─ 3D Edge System ─ */
  --edge-light: rgba(255,255,255,0.7);
  --edge-dark: rgba(26,29,33,0.12);
  --edge-bottom: rgba(26,29,33,0.18);
  --shadow-sm: 0 1px 2px rgba(26,29,33,0.06);
  --shadow-md: 0 4px 12px rgba(26,29,33,0.08), 0 1px 3px rgba(26,29,33,0.06);
  --shadow-lg: 0 8px 30px rgba(26,29,33,0.10), 0 2px 6px rgba(26,29,33,0.06);
  --shadow-xl: 0 16px 50px rgba(26,29,33,0.12), 0 4px 12px rgba(26,29,33,0.08);
  --shadow-3d: inset 0 1px 0 var(--edge-light), 0 2px 0 var(--edge-bottom), var(--shadow-md);
  --shadow-3d-hover: inset 0 1px 0 var(--edge-light), 0 3px 0 var(--edge-bottom), var(--shadow-lg);

  /* ─ Typography ─ */
  /* Primary: DM Sans — geometric precision, engineering clarity */
  --font-primary: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  /* Secondary: Source Serif 4 — grounded, readable body text */
  --font-secondary: 'Source Serif 4', 'Georgia', serif;
  /* Mono: JetBrains Mono — technical, precise */
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.25rem;     /* 20px */
  --fs-xl: 1.5rem;      /* 24px */
  --fs-2xl: 2rem;       /* 32px */
  --fs-3xl: 2.5rem;     /* 40px */
  --fs-4xl: 3.25rem;    /* 52px */
  --fs-5xl: 4rem;       /* 64px */

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --ls-tight: -0.025em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;

  /* ─ Layout ─ */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --gutter: 2rem;
  --section-pad: 6rem;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --transition: 0.2s ease;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}

ul, ol { list-style: none; }


/* ── 3. TYPOGRAPHY ───────────────────────────────────────── */

/* Display — hero-level headlines */
.t-display {
  font-family: var(--font-primary);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
}

h1, .t-h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

h2, .t-h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}

h3, .t-h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}

h4, .t-h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}

h5, .t-h5 {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}

.t-body {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--text-secondary);
}

.t-body-sm {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-secondary);
}

.t-caption {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.t-mono {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
}

.t-label {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--accent);
}


/* ── 4. LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--graphite-900);
  color: var(--stone-100);
}

.grid {
  display: grid;
  gap: var(--gutter);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }
.flex--gap { gap: var(--gutter); }
.flex--gap-sm { gap: 1rem; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }


/* ── 5. COMPONENTS ───────────────────────────────────────── */

/* ─ 5a. Navigation ─ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 var(--gutter);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-mark {
  width: 28px;
  height: 28px;
  background: var(--graphite-900);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-3d);
}

.nav__logo-mark svg {
  width: 16px;
  height: 16px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: var(--ls-wide);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* ─ 5b. Buttons ─ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--graphite-900);
  color: var(--white);
  box-shadow: var(--shadow-3d);
}
.btn--primary:hover {
  background: var(--graphite-800);
  color: var(--white);
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-3d);
}
.btn--accent:hover {
  background: var(--green-500);
  color: var(--white);
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: var(--graphite-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
}
.btn--ghost:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-base);
}


/* ─ 5c. 3D-Edge Card ─ */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card__image-placeholder {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--stone-500);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.card__body {
  padding: 1.5rem;
}

.card__label {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
  line-height: var(--lh-snug);
}

.card__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.card__badge {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}


/* ─ 5d. Section Headers ─ */
.section-header {
  margin-bottom: 3rem;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.section-header__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--accent);
}

.section-header__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: 1rem;
}

.section-header__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  max-width: 600px;
}

.section--dark .section-header__label { color: var(--green-400); }
.section--dark .section-header__label::before { background: var(--green-400); }
.section--dark .section-header__subtitle { color: var(--stone-400); }


/* ─ 5e. Blog Card ─ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-2px);
  color: inherit;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}


/* ─ 5f. Email Capture Module ─ */
.email-capture {
  background: var(--graphite-900);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.email-capture::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--green-700) 0%, transparent 70%);
  opacity: 0.15;
}

.email-capture__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}

.email-capture__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  color: var(--stone-400);
  margin-bottom: 1.5rem;
  position: relative;
}

.email-capture__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  position: relative;
}

.email-capture__input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  border: 1px solid var(--graphite-600);
  border-radius: var(--radius-md);
  background: var(--graphite-800);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.email-capture__input::placeholder {
  color: var(--graphite-500);
}

.email-capture__input:focus {
  border-color: var(--green-500);
}

.email-capture__btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  background: var(--green-700);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-3d);
}

.email-capture__btn:hover {
  background: var(--green-500);
}


/* ─ 5g. Footer ─ */
.footer {
  background: var(--graphite-900);
  color: var(--stone-400);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-text {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--stone-500);
  line-height: var(--lh-normal);
  margin-top: 1rem;
  max-width: 300px;
}

.footer__col-title {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--stone-300);
  margin-bottom: 1rem;
}

.footer__link {
  display: block;
  font-size: var(--fs-sm);
  color: var(--stone-500);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bar {
  border-top: 1px solid var(--graphite-700);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--stone-700);
}


/* ─ 5h. Divider ─ */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}


/* ─ 5i. Stat Block ─ */
.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-primary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-top: 0.5rem;
}


/* ─ 5j. Icon Container ─ */
.icon-box {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-3d);
  margin-bottom: 1.25rem;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ─ 5k. Step Indicator ─ */
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--graphite-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-3d);
}

.step__content h4 {
  margin-bottom: 0.25rem;
}

.step__content p {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}


/* ─ 5l. Placeholder Image Generator ─ */
.placeholder {
  background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--stone-500);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  position: relative;
}

.placeholder--product {
  aspect-ratio: 4/3;
}

.placeholder--hero {
  aspect-ratio: 16/7;
  min-height: 320px;
}

.placeholder--screenshot {
  aspect-ratio: 9/16;
  max-width: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--stone-400);
  fill: none;
  stroke-width: 1.5;
}


/* ─ 5m. Contact Form ─ */
.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: var(--ls-wide);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}


/* ── 6. PAGE-SPECIFIC ────────────────────────────────────── */

/* Hero */
.hero {
  padding: 5rem 0 6rem;
  position: relative;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--green-300);
  border-radius: var(--radius-sm);
  background: var(--green-100);
}

.hero__title {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Pillar Cards (Home page 3 business legs) */
.pillar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.pillar:hover {
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-3px);
  color: inherit;
}

.pillar__icon {
  width: 48px;
  height: 48px;
  background: var(--stone-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 var(--edge-light), 0 1px 0 var(--edge-dark);
}

.pillar__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--graphite-700);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
}

.pillar__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  margin-bottom: 1.25rem;
}

.pillar__link {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  letter-spacing: var(--ls-wide);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Feature highlight row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

/* Coming Soon overlay */
.coming-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  background: var(--graphite-900);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}


/* ── 7. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
    --gutter: 1.25rem;
    --fs-5xl: 2.75rem;
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.875rem;
    --fs-2xl: 1.5rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  /* When toggled open */
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--gutter);
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
  }

  .hero__title { font-size: var(--fs-4xl); }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 0.75rem; text-align: center; }

  .email-capture { padding: 2rem; }
  .email-capture__form { flex-direction: column; }
}


/* ── 8. ANIMATIONS (subtle, intentional) ─────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.5s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }


/* ── 9. PRINT ────────────────────────────────────────────── */
@media print {
  .nav, .footer, .email-capture { display: none; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 1rem 0; }
}
