/* ======================================
   PromptField.AI — Main Stylesheet
   ====================================== */

/* ======================================
   CSS Custom Properties
   ====================================== */
:root {
  --primary-dark: #1B3240;
  --primary-mid: #243E56;
  --accent-gold: #C8922A;
  --accent-gold-light: #D9A33A;
  --accent-blue: #7CBDD4;
  --warm-cream: #faf7f2;
  --soft-white: #ffffff;
  --ink: #1a1714;
  --ink-light: #4a4540;
  --border: #e0d8cc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Source Code Pro', 'Courier New', monospace;

  --nav-height: 72px;
  --section-pad: 100px;
  --container-max: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* ======================================
   Reset & Base
   ====================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--soft-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ======================================
   Typography
   ====================================== */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem; /* 14px minimum */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
}

/* ======================================
   Layout
   ====================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ======================================
   Animations & Transitions
   ====================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseCTA {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 146, 42, 0.45);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(200, 146, 42, 0);
  }
}

@keyframes chevronBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(9px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }
.fade-in-delay-5 { transition-delay: 0.60s; }

/* ======================================
   Navigation
   ====================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(200, 146, 42, 0.18);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
  max-width: calc(var(--container-max) + 64px);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
}

.nav-cta {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
}

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 20px 32px 28px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
  z-index: 999;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-cta {
  display: block;
  text-align: center;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .nav-wordmark {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ======================================
   Hero Section
   ====================================== */
.hero {
  min-height: 100vh;
  background-color: var(--primary-dark);
  background-image: radial-gradient(rgba(200, 146, 42, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 15% 55%, rgba(27, 50, 64, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 45% 65% at 85% 45%, rgba(27, 50, 64, 0.75) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}

.hero-eyebrow {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
  margin-bottom: 26px;
}

/* Eyebrow link style (used in hero) — always accent blue */
.eyebrow-link {
  color: var(--accent-blue);
  text-decoration: none;
  transition: opacity var(--transition);
}

.eyebrow-link:hover {
  opacity: 0.85;
}

/* Hero headline: 52–60px */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.25rem, 5.5vw, 3.75rem); /* 52px–60px */
  line-height: 1.14;
  color: var(--soft-white);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.26s;
  opacity: 0;
}

/* WHAT IS THIS */
.hero-initiative {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem; /* 17px — consistent with body */
  color: rgba(250, 247, 242, 0.92);
  line-height: 1.72;
  max-width: 720px;
  margin: 0 auto 18px;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.38s;
  opacity: 0;
}

.hero-initiative strong {
  color: var(--soft-white);
  font-weight: 700;
}

/* WHAT DO I GET */
.hero-subheadline {
  font-family: var(--font-body);
  font-weight: 400; /* consistent body weight */
  font-size: 1.0625rem; /* 17px — consistent with body */
  color: rgba(250, 247, 242, 0.78);
  line-height: 1.72;
  max-width: 720px;
  margin: 0 auto 20px;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.48s;
  opacity: 0;
}

/* THE PROMISE — italic callout, intentional styling exception */
.hero-promise {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem; /* 17px — consistent with body */
  color: rgba(124, 189, 212, 0.92);
  max-width: 640px;
  margin: 0 auto 42px;
  line-height: 1.65;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.56s;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 18px 48px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  animation: fadeUp 0.6s ease forwards, pulseCTA 2.8s ease-in-out 3s infinite;
  animation-delay: 0.72s, 3s;
  opacity: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  color: var(--primary-dark);
  opacity: 1; /* prevent animation fill-mode from hiding button */
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 146, 42, 0.35);
  animation: none;
}

.hero-social-proof {
  font-size: 0.875rem; /* 14px minimum */
  color: rgba(250, 247, 242, 0.4);
  margin-top: 22px;
  font-style: italic;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.88s;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  animation: chevronBounce 2.2s ease-in-out infinite;
  opacity: 0.45;
}

.scroll-indicator svg {
  width: 26px;
  height: 26px;
  color: var(--accent-gold);
}

/* ======================================
   Section Headers (shared)
   ====================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow {
  margin-bottom: 18px;
}

/* Section H2: 36–40px */
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 3.5vw, 2.5rem); /* 36px–40px */
  color: var(--primary-dark);
  line-height: 1.24;
}

/* ======================================
   Problem Section
   ====================================== */
.problem {
  background: var(--warm-cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 38px 30px;
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 2px 14px rgba(26, 23, 20, 0.055);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(26, 23, 20, 0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  color: var(--accent-gold);
  margin-bottom: 22px;
}

/* H3: reduced for better line breaks in cards */
.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem; /* 20px — reduced for better line breaks */
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.card p {
  font-size: 1.0625rem; /* 17px */
  color: var(--ink-light);
  line-height: 1.72;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ======================================
   The Logos Framework™ Section
   ====================================== */
.framework {
  background: var(--primary-mid);
}

.framework .section-header h2 {
  color: var(--soft-white);
}

.framework-subtext {
  text-align: center;
  color: rgba(250, 247, 242, 0.68);
  font-size: 1.0625rem; /* 17px */
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.75;
}

/* LOGOS Acronym List */
.logos-acronym {
  max-width: 780px;
  margin: 0 auto 52px;
}

.logos-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(124, 189, 212, 0.15);
}

.logos-item:last-child {
  border-bottom: none;
}

.logos-letter-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(124, 189, 212, 0.1);
  border: 2px solid rgba(124, 189, 212, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logos-letter-wrap-safety {
  background: rgba(200, 146, 42, 0.1);
  border-color: rgba(200, 146, 42, 0.38);
}

.logos-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--accent-blue);
  line-height: 1;
}

.logos-item-safety .logos-letter {
  color: var(--accent-gold);
}

.logos-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem; /* 24px — H3 level */
  color: var(--soft-white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.logos-content p {
  color: rgba(250, 247, 242, 0.72);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.72;
}

.logos-footnote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(124, 189, 212, 0.88);
  font-size: 1.0625rem;
  max-width: 680px;
  margin: 0 auto 52px;
  padding: 24px 36px;
  border: 1px solid rgba(124, 189, 212, 0.2);
  border-radius: var(--radius);
  background: rgba(124, 189, 212, 0.05);
  line-height: 1.65;
}

.pull-quote {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px 8px;
  border-top: 1px solid rgba(200, 146, 42, 0.2);
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--accent-blue); /* Seneca quote in accent blue */
  line-height: 1.5;
  margin-bottom: 22px;
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.875rem; /* 14px minimum */
  color: var(--accent-gold);
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  font-weight: 500;
}

.pull-quote .quote-note {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.44);
  font-style: italic;
}

@media (max-width: 640px) {
  .logos-item {
    gap: 20px;
  }

  .logos-letter-wrap {
    width: 52px;
    height: 52px;
  }

  .logos-letter {
    font-size: 1.5rem;
  }
}

/* ======================================
   Who It's For Section
   ====================================== */
.who {
  background: var(--warm-cream);
}

.qualifiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 52px;
  max-width: 920px;
  margin: 0 auto 48px;
}

.qualifier-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.qualifier-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.qualifier-check svg {
  width: 12px;
  height: 12px;
  color: var(--primary-dark);
}

.qualifier-item p {
  font-size: 1.0625rem; /* 17px */
  color: var(--ink);
  line-height: 1.62;
}

.who-cta-block {
  text-align: center;
  padding: 36px 0 0;
  border-top: 1px solid var(--border);
  max-width: 620px;
  margin: 0 auto;
}

.who-cta-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.38rem);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

@media (max-width: 768px) {
  .qualifiers-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ======================================
   Meet Your Guide Section — Photo-Forward
   ====================================== */
.about {
  background: var(--primary-dark);
}

.about > .container > .eyebrow {
  margin-bottom: 40px;
}

.about-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}

/* Photo Column */
.about-photo-col {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  display: block;
}

/* Text Column */
.about-text-col h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 3vw, 2.25rem); /* 30–36px */
  color: var(--soft-white);
  margin-bottom: 26px;
  line-height: 1.24;
}

.about-text-col p {
  color: rgba(250, 247, 242, 0.72);
  line-height: 1.82;
  margin-bottom: 20px;
  font-size: 1.0625rem; /* 17px */
}

/* Credential Checklist — accent blue checkmarks */
.credential-checklist {
  margin: 32px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.credential-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cred-checkmark {
  color: var(--accent-blue);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
  margin-top: 1px;
}

.credential-check-item p {
  color: rgba(250, 247, 242, 0.85);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.about-text-col .jeff-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--warm-cream);
  font-size: 1.0625rem;
  padding: 16px 20px;
  border-left: 3px solid var(--accent-gold);
  background: rgba(200, 146, 42, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
  margin-top: 8px;
  margin-bottom: 24px;
}

.initiative-statement {
  font-size: 0.9375rem;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 0 !important;
}

.bridgefield-link {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 189, 212, 0.3);
  padding-bottom: 1px;
  transition: border-color var(--transition), color var(--transition);
}

.bridgefield-link:hover {
  color: var(--soft-white);
  border-color: rgba(124, 189, 212, 0.7);
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-col {
    justify-content: center;
  }

  .about-photo {
    max-width: 320px;
  }
}

/* ======================================
   What Do You Get — Deliverables Section
   ====================================== */
.deliverables {
  background: var(--warm-cream);
}

/* 6-column grid: 3 cards per row top, 2 centered bottom */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.deliverable-card {
  grid-column: span 2;
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--accent-blue);
  box-shadow: 0 2px 14px rgba(26, 23, 20, 0.055);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(26, 23, 20, 0.1);
}

/* Center the 4th and 5th cards on the second row */
.deliverable-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.deliverable-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.deliverable-check {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.deliverable-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem; /* 24px — H3 minimum */
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.28;
}

.deliverable-text p {
  font-size: 1.0625rem; /* 17px */
  color: var(--ink-light);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .deliverable-card {
    grid-column: span 1;
  }

  .deliverable-card:nth-child(4) {
    grid-column: span 1;
  }

  .deliverable-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 580px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   Experience / What to Expect Section
   ====================================== */
.experience {
  background: var(--soft-white);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 44px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem; /* 24px — H3 minimum */
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.timeline-step-content p {
  font-size: 1.0625rem; /* 17px */
  color: var(--ink-light);
  line-height: 1.72;
}

.experience-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ink-light);
  font-style: italic;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
  background: var(--warm-cream);
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
  }

  .step-number {
    width: 54px;
    height: 54px;
    font-size: 1rem;
    margin-bottom: 0;
  }

  .timeline-step-content {
    flex: 1;
  }
}

/* ======================================
   Signup Form Section
   ====================================== */
.signup {
  background: var(--primary-dark);
  padding: var(--section-pad) 0;
  border-top: 4px solid var(--accent-gold);
}

.signup-header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 4.5vw, 3.4rem); /* 36px minimum */
  color: var(--soft-white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.signup-header p {
  color: rgba(250, 247, 242, 0.68);
  font-size: 1.0625rem; /* 17px */
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Intro line above the form */
.signup-form-intro {
  text-align: center;
  color: rgba(250, 247, 242, 0.8);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.72;
  margin-bottom: 32px;
  padding: 20px 28px;
  border: 1px solid rgba(124, 189, 212, 0.25);
  border-radius: var(--radius);
  background: rgba(124, 189, 212, 0.06);
}

.signup-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem; /* 14px minimum */
  font-weight: 600;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group label span {
  color: var(--accent-gold);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(200, 146, 42, 0.22);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px */
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8922A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255, 255, 255, 0.065);
  padding-right: 42px;
  cursor: pointer;
}

.form-group select option {
  background: var(--primary-mid);
  color: var(--soft-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 247, 242, 0.28);
}

.form-group textarea {
  resize: vertical;
  min-height: 92px;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem; /* 17px */
  padding: 20px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200, 146, 42, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-footer-note {
  text-align: center;
  font-size: 0.875rem; /* 14px minimum */
  color: rgba(250, 247, 242, 0.36);
  margin-top: 18px;
  line-height: 1.6;
}

.form-footer-note a {
  color: rgba(200, 146, 42, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form States */
.form-error-msg {
  display: none;
  background: rgba(220, 60, 60, 0.14);
  border: 1px solid rgba(220, 60, 60, 0.28);
  border-radius: var(--radius);
  color: #ff8a80;
  padding: 14px 18px;
  font-size: 0.9375rem;
  margin-bottom: 18px;
  line-height: 1.55;
}

.form-success {
  display: none;
  text-align: center;
  padding: 70px 20px;
  opacity: 0;
}

.success-icon {
  width: 68px;
  height: 68px;
  background: rgba(200, 146, 42, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(200, 146, 42, 0.3);
}

.success-icon svg {
  width: 30px;
  height: 30px;
  color: var(--accent-gold);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--soft-white);
  margin-bottom: 18px;
}

.form-success p {
  color: rgba(250, 247, 242, 0.68);
  font-size: 1.0625rem; /* 17px */
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   BILLING MODULE — ACTIVATE WHEN READY
   Change display: none → display: block
   ====================================== */
.billing-module {
  display: none;
  margin-top: 28px;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.billing-module .price-display {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--soft-white);
  font-weight: 700;
  margin-bottom: 8px;
}

.billing-module .price-seat {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
}

.billing-module .price-note {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 24px;
}

.btn-stripe {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
  letter-spacing: 0.01em;
}

.btn-stripe:hover {
  background: var(--accent-gold-light);
}

/* ======================================
   Footer
   ====================================== */
.footer {
  background: #0f1e2b;
  padding: 64px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--soft-white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.footer-brand-sub {
  font-size: 0.875rem; /* 14px */
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.footer-bridgefield-link {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bridgefield-link:hover {
  color: var(--warm-cream);
}

.footer-nav-title {
  font-size: 0.875rem; /* 14px minimum */
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 18px;
  display: block;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-nav-links a:hover {
  color: var(--warm-cream);
}

.footer-contact-email,
.footer-contact-phone,
.footer-website-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem; /* 14px */
  margin-bottom: 14px;
  transition: color var(--transition);
  word-break: break-all;
  text-decoration: none;
}

.footer-contact-email:hover,
.footer-contact-phone:hover,
.footer-website-link:hover {
  color: var(--warm-cream);
}

.footer-contact-email svg,
.footer-contact-phone svg,
.footer-website-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  word-break: normal;
}

/* Bridgefield Initiative Statement */
.footer-bridgefield-statement {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-bridgefield-statement a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bridgefield-statement a:hover {
  color: var(--warm-cream);
}

.footer-copyright {
  text-align: center;
  font-size: 0.875rem; /* 14px minimum */
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.02em;
}

.footer-copyright a {
  color: rgba(124, 189, 212, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-copyright a:hover {
  color: rgba(124, 189, 212, 0.85);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

/* ======================================
   Deliverables — 3-card centered layout
   ====================================== */
.deliverables-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.deliverables-grid-3 .deliverable-card {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .deliverables-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .deliverables-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   Team Training Callout Box
   ====================================== */
.team-callout {
  background: rgba(124, 189, 212, 0.06);
  border: 1px solid rgba(124, 189, 212, 0.3);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 28px;
}

.team-callout-title {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.team-callout p:last-child {
  color: rgba(250, 247, 242, 0.82);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ======================================
   Responsive Utilities
   ====================================== */
@media (max-width: 480px) {
  :root {
    --section-pad: 72px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 60px 20px 80px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }
}
