/* =========================================
   PATHWRIGHT — Solving the Critical Path.
   Brand-aligned design system
   Colors and fonts match existing pathwright.ca
   ========================================= */

:root {
  /* Brand colors — matched to current pathwright.ca */
  --navy: #0d1b2a;
  --navy-mid: #162840;
  --navy-deep: #08131f;
  --gold: #C8BB89;
  --gold-light: #d9cfa8;
  --gold-bg: #f0e9d5;
  --cream: #f7f3ee;
  --cream-soft: #f2ede4;
  --warm-grey: #e8e0d8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4540;
  --text-light: #7a7068;
  --grey-300: #C9C9C9;
  --grey-100: #E8E5E0;
  --white: #FFFFFF;

  /* Typography — matched to current pathwright.ca */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --container-narrow: 920px;
  --section-pad-y: clamp(4rem, 8vw, 7rem);
  --section-pad-x: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: 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 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-pad-y) 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-champagne {
  background: linear-gradient(135deg, var(--gold-bg) 0%, var(--gold-light) 100%);
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.kicker-dark { color: var(--text-light); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}
.section-head-light { color: var(--cream); }

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-headline-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.section-sub-light {
  font-size: 1.0625rem;
  color: rgba(247, 243, 238, 0.78);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s var(--ease);
}
.link-arrow:hover { opacity: 0.6; }
.section-navy .link-arrow { color: var(--gold-light); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 0;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(200, 187, 137, 0.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  border-bottom: 1px solid rgba(200, 187, 137, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.brand-name-light { color: var(--cream); }
.brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
}
.nav-primary {
  display: flex;
  gap: 1.75rem;
}
.nav-primary a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-primary a:hover { color: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s var(--ease);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem var(--section-pad-x) 1.5rem;
  background: var(--navy-deep);
  border-top: 1px solid rgba(200, 187, 137, 0.2);
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
}
.nav-mobile a.btn { margin-top: 1rem; border: 1px solid var(--gold); }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200, 187, 137, 0.07) 0%, transparent 70%),
    linear-gradient(135deg, rgba(22, 40, 64, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 187, 137, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 187, 137, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}
.hero-headline-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.78);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200, 187, 137, 0.18);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(247, 243, 238, 0.65);
  line-height: 1.4;
}

/* ========== PAIN BLOCK ========== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pain-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--gold);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(13, 27, 42, 0.18);
}
.pain-cost {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--navy);
}
.pain-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ========== LIFECYCLE ========== */
.lifecycle {
  position: relative;
  margin-top: 3rem;
}
.lifecycle-stages {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lifecycle-stage {
  flex: 1;
  text-align: center;
  padding: 1.5rem 0.5rem 2rem;
}
.lifecycle-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(200, 187, 137, 0.4);
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  background: rgba(200, 187, 137, 0.05);
}
.lifecycle-stage h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.lifecycle-stage p {
  font-size: 0.85rem;
  color: rgba(247, 243, 238, 0.65);
  line-height: 1.4;
  max-width: 18ch;
  margin: 0 auto;
}
.lifecycle-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.25rem;
  opacity: 0.5;
  padding-top: 1.75rem;
}
.lifecycle-layer {
  position: relative;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.25rem 0;
  background: linear-gradient(90deg, transparent, rgba(200, 187, 137, 0.12), transparent);
  border-top: 1px solid rgba(200, 187, 137, 0.3);
  border-bottom: 1px solid rgba(200, 187, 137, 0.3);
}
.lifecycle-layer-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== TWO VERTICALS ========== */
.vertical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vertical-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(13, 27, 42, 0.15);
}
.vertical-card-image {
  height: 200px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.vertical-card-image-seniors {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.85), rgba(22, 40, 64, 0.65)),
    linear-gradient(45deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.vertical-card-image-residential {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.75), rgba(200, 187, 137, 0.25)),
    linear-gradient(45deg, var(--navy-mid) 0%, var(--gold) 100%);
}
.vertical-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 187, 137, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 187, 137, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.vertical-card-body {
  padding: 2.5rem 2rem;
}
.vertical-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.vertical-subhead {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.vertical-subhead:first-of-type { margin-top: 0; }
.vertical-card ul { margin-bottom: 0.5rem; }
.vertical-card ul li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.vertical-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.vertical-products {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* ========== PLATFORM ========== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.platform-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--grey-100);
  background: var(--cream);
  transition: all 0.3s var(--ease);
  position: relative;
}
.platform-card:hover {
  border-color: var(--gold);
  background: var(--white);
}
.platform-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.platform-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.platform-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.platform-card ul { margin-bottom: 1.5rem; }
.platform-card ul li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.platform-card ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.platform-products {
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-100);
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ========== DIAGNOSTIC CTA ========== */
.diagnostic-block { text-align: center; }
.diagnostic-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: rgba(13, 27, 42, 0.07);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.pill svg { color: var(--navy); }
.diagnostic-trust {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: italic;
}
.diagnostic-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 27, 42, 0.12);
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* ========== FOUNDER ========== */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-photo-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 243, 238, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
}
.founder-photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 187, 137, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 187, 137, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.founder-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.founder-body .section-headline {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-align: left;
  max-width: none;
  margin-bottom: 1.75rem;
}

/* ========== ENGAGEMENTS ========== */
.engagement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.engagement-step {
  text-align: left;
  padding: 0 0.5rem;
}
.step-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.engagement-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.engagement-step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.engagement-pricing-line {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0 auto;
  max-width: 720px;
}

/* ========== CONTACT FORM ========== */
.contact-block { text-align: center; }
.contact-block .kicker { color: var(--gold); }
.contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1rem;
}
.contact-sub {
  font-size: 1.05rem;
  color: rgba(247, 243, 238, 0.78);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hidden-field { display: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(247, 243, 238, 0.06);
  border: 1px solid rgba(200, 187, 137, 0.25);
  color: var(--cream);
  border-radius: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(247, 243, 238, 0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(247, 243, 238, 0.1);
}
.form-group select option { background: var(--navy); color: var(--cream); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 0.5rem; }

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-deep);
  color: rgba(247, 243, 238, 0.7);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.footer-logo .brand-name {
  font-size: 1.25rem;
  color: var(--white);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(247, 243, 238, 0.5);
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: rgba(247, 243, 238, 0.7);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 187, 137, 0.15);
  font-size: 0.8rem;
  color: rgba(247, 243, 238, 0.4);
  text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .header-inner > .btn-primary { display: none; }

  .hero-headline { font-size: clamp(2rem, 7vw, 3.25rem); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 2rem; }

  .pain-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .lifecycle-stages { flex-wrap: wrap; gap: 1rem; }
  .lifecycle-stage { flex: 0 0 calc(50% - 0.5rem); }
  .lifecycle-arrow { display: none; }

  .vertical-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .platform-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-placeholder { max-width: 380px; margin: 0 auto; aspect-ratio: 1 / 1; }

  .engagement-steps { grid-template-columns: 1fr; gap: 2rem; }

  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; gap: 1.25rem; }
  .lifecycle-stage { flex: 0 0 100%; }
  .vertical-card-body { padding: 2rem 1.5rem; }
  .platform-card { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========== MOTION ========== */
@media (prefers-reduced-motion: no-preference) {
  .hero-headline,
  .hero-sub,
  .hero-ctas,
  .stats-bar {
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) forwards;
  }
  .hero-headline { animation-delay: 0.1s; }
  .hero-sub { animation-delay: 0.25s; }
  .hero-ctas { animation-delay: 0.4s; }
  .stats-bar { animation-delay: 0.55s; }
  .kicker {
    opacity: 0;
    animation: fadeUp 0.5s var(--ease) forwards;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
