/* ================================================================
   CoParent AI — Main Stylesheet
   Brand: Warm Coral / Cream / Sage Green (Brand Strategy v2)
   Fonts: Quicksand (headlines) · Nunito (body)
   ================================================================ */

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

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

/* ── BRAND TOKENS ───────────────────────────────────────────── */
:root {
  /* Primary palette */
  --cream:          #FDF8F3;
  --coral:          #E8A87C;
  --coral-dark:     #D4895A;
  --coral-light:    #FAF0E8;
  --sage:           #85A88E;
  --sage-dark:      #6A9175;
  --sage-light:     #EBF2EC;

  /* Secondary palette */
  --sky:            #A8D5E5;
  --peach:          #F5E6DC;
  --lavender:       #D4C5E2;

  /* Neutrals */
  --ink:            #2C2416;
  --ink-soft:       #5C4F3D;
  --ink-muted:      #9C8E7D;
  --warm-border:    #EDE3D8;
  --white:          #FFFFFF;

  /* Shadows */
  --shadow-sm:      0 2px 12px rgba(44, 36, 22, 0.07);
  --shadow-md:      0 8px 32px rgba(44, 36, 22, 0.10);
  --shadow-lg:      0 20px 60px rgba(44, 36, 22, 0.13);

  /* Spacing */
  --section-padding: 110px 24px;
  --radius-sm:      12px;
  --radius-md:      20px;
  --radius-lg:      28px;
  --radius-pill:    100px;
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── LAYOUT CONTAINERS ──────────────────────────────────────── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--coral-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}

.body-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}

.body-text:last-child { margin-bottom: 0; }

.body-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── LABEL BADGES ───────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: var(--coral-light);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.label-inverted {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.label-sage {
  background: rgba(133, 168, 142, 0.2);
  color: var(--sage-dark);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #2C2416;
  color: var(--white);
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(232, 168, 124, 0.4);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 124, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  -webkit-transition: color 0.2s, gap 0.2s;
  -moz-transition: color 0.2s, gap 0.2s;
  -ms-transition: color 0.2s, gap 0.2s;
  -o-transition: color 0.2s, gap 0.2s;
}

.btn-ghost:hover {
  color: var(--coral-dark);
  gap: 11px;
}

.btn-top-gap {
  margin-top: 8px;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 248, 243, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--warm-border);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--coral-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--coral-dark);
}

.nav-cta {
  background: #2C2416;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 3px 14px rgba(232, 168, 124, 0.35);
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 168, 124, 0.4) !important;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Organic background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(133, 168, 142, 0.14) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
  animation: drift 15s ease-in-out infinite alternate-reverse;
}

.hero-blob-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 213, 229, 0.15) 0%, transparent 70%);
  top: 40%;
  right: 15%;
  animation: drift 10s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 20px) scale(1.05); }
}

/* Dot pattern decoration */
.hero-dots {
  position: absolute;
  top: 140px;
  right: 60px;
  width: 120px;
  height: 120px;
  opacity: 0.12;
  background-image: radial-gradient(var(--coral-dark) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 1s ease both;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 26px;
}

.hero-title em {
  font-style: italic;
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  color: var(--coral-dark);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 540px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 64px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--warm-border);
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-right: -10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--peach);
}

.proof-text {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.proof-text strong {
  color: var(--coral-dark);
}

/* ── REALITY SECTION ─────────────────────────────────────────── */
.reality {
  background: var(--ink);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.reality::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232, 168, 124, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(133, 168, 142, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.reality-quote-mark {
  font-family: 'Quicksand', sans-serif;
  font-size: 8rem;
  color: rgba(232, 168, 124, 0.12);
  line-height: 1;
  margin-bottom: -40px;
  display: block;
}

.reality h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.reality p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
  margin-bottom: 18px;
}

.reality p:last-child { margin-bottom: 0; }

.reality p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* ── BUILDING SECTION ───────────────────────────────────────── */
.building {
  padding: var(--section-padding);
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin: 44px 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:nth-child(1)::before { background: var(--coral); }
.feature-card:nth-child(2)::before { background: var(--sage); }
.feature-card:nth-child(3)::before { background: var(--sky); }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card:nth-child(1) .feature-icon { background: var(--coral-light); }
.feature-card:nth-child(2) .feature-icon { background: var(--sage-light); }
.feature-card:nth-child(3) .feature-icon { background: #EBF5FA; }

.feature-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.65;
}

.building-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-style: italic;
  padding: 16px 20px;
  background: var(--peach);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--coral);
}

/* ── WHY YOUR INPUT MATTERS ──────────────────────────────────── */
.why {
  background: var(--peach);
  padding: var(--section-padding);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}

.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 26px;
  border: 1px solid var(--warm-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.stat-card:hover { transform: translateY(-2px); }

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--coral-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.5;
}

/* ── SURVEY CTA ──────────────────────────────────────────────── */
.survey {
  background: var(--cream);
  padding: var(--section-padding);
  text-align: center;
}

.survey-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.survey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sage), var(--sky));
}

.survey-card h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.survey-card p {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
}

.survey-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.survey-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.survey-meta-item span:first-child { font-size: 0.9rem; }

/* ── EARLY ACCESS ────────────────────────────────────────────── */
.early-access {
  background: var(--coral);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.early-access::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.early-access-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.early-access h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 14px;
}

.early-access p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  margin-bottom: 40px;
}

.signup-wrap {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-input {
  flex: 1;
  min-width: 230px;
  padding: 15px 22px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.signup-input:focus { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15); }
.signup-input::placeholder { color: var(--ink-muted); }
.signup-input.error { box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.5); }

.signup-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.signup-btn:hover {
  background: #3D3020;
  transform: translateY(-1px);
}

.signup-success {
  display: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
}

.signup-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
}

/* ── CREDIBILITY ─────────────────────────────────────────────── */
.credibility {
  background: var(--sage-light);
  padding: var(--section-padding);
  border-top: 1px solid rgba(133, 168, 142, 0.3);
}

.credibility-title {
  font-size: 1.6rem !important;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(133, 168, 142, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cred-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.cred-icon { font-size: 1.3rem; }

.cred-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.6;
}

/* ── CREDIBILITY EXTRAS ──────────────────────────────────────── */
.cred-item--highlight {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, #FFFBF0, var(--white));
}

.cred-item--highlight .cred-text strong { color: #8B6914; }

.cred-extra {
  margin-top: 32px;
  font-size: 0.92rem;
  color: var(--sage-dark);
  font-weight: 500;
  font-style: italic;
  padding: 14px 20px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
}

/* ── FOR ORGANISATIONS ───────────────────────────────────────── */
.orgs {
  background: var(--peach);
  padding: var(--section-padding);
  border-top: 1px solid var(--warm-border);
}

.orgs-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.orgs-text h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.orgs-text p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-bottom: 14px;
}

.orgs-text p:last-of-type { margin-bottom: 24px; }

.btn-orgs {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(133,168,142,0.35);
}

.btn-orgs:hover { background: var(--sage-dark); transform: translateY(-1px); }

.orgs-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
}

.orgs-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}

.orgs-emoji { font-size: 1.4rem; }

.orgs-icon-item span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  font-family: 'Quicksand', sans-serif;
}

/* ── PRIVACY MODAL ───────────────────────────────────────────── */
.privacy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}

.privacy-overlay.open { display: flex; }

.privacy-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  width: 100%;
  margin: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease both;
}

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

.privacy-close {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--warm-border);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.privacy-close:hover { background: var(--coral-light); color: var(--coral-dark); }

.privacy-modal h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.privacy-date { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 28px; }

.privacy-modal h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-modal p,
.privacy-modal li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}

.privacy-modal ul { padding-left: 20px; }
.privacy-modal a { color: var(--coral-dark); text-decoration: underline; }

.privacy-link,
.footer-privacy-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-link { color: rgba(255,255,255,0.75); }
.privacy-link:hover { color: var(--white); }
.footer-privacy-btn { color: rgba(255,255,255,0.45); }
.footer-privacy-btn:hover { color: rgba(255,255,255,0.8); }

/* ── FOUNDER TRUST ───────────────────────────────────────────── */
.founder {
  background: var(--cream);
  padding: var(--section-padding);
  border-top: 1px solid var(--warm-border);
}

.founder-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.founder-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--coral-light);
  border: 2px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral-dark);
  flex-shrink: 0;
}

.founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--coral);
  flex-shrink: 0;
}

.founder-text { flex: 1; }

.founder-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 20px;
}

.founder-name span {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.85rem;
  display: block;
}

/* ── HERO CREDIBILITY LINE ───────────────────────────────────── */
.hero-credibility-line {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-credibility-line::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--coral);
  flex-shrink: 0;
}

/* ── FRICTION REDUCER ────────────────────────────────────────── */
.friction-reducer {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 14px;
  margin-bottom: 0;
}

/* ── BUILDING CLOSING LINE ───────────────────────────────────── */
.building-closing {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--coral);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 48px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--coral);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-copy {
  width: 100%;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 20px;
  }

  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .survey-card { padding: 40px 24px; }
  .hero-dots { display: none; }
  footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .founder-card { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .footer-links a { font-size: 0.78rem; }
  .orgs-card { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .orgs-icons { grid-template-columns: repeat(4, 1fr); }
  .privacy-modal { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .signup-wrap { flex-direction: column; }
  .signup-input { min-width: unset; width: 100%; }
  .orgs-icons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .signup-wrap { flex-direction: column; }
  .signup-input { min-width: unset; width: 100%; }
}
