/* founding-member.css — Founding Member page-only styles (hero, eligibility banner, pricing lock-in, benefits, terms two-column, final CTA).
   Foundation rules (:root, reset, layout, buttons, nav, dropdown, footer, reveal) come from tokens.css + base.css.
   The hero type rules below are kept because the founding hero uses a bare <h1>/.lead/.eyebrow
   (not .hero-title/.measure), so they carry font-size and centering base.css doesn't provide. */

/* ----------  Hero  ---------- */
.hero {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem) clamp(2.5rem, 6vw, 4rem);
}
.eyebrow {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 1rem;
}
h1 { font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.lead { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--ink-soft); margin-top: 1.1rem; max-width: 40rem; margin-inline: auto; }

/* ----------  Button size modifier (btn-lg is page-local; base.css has no size variants)  ---------- */
.btn-lg { min-height: 54px; padding: 0 2rem; font-size: 1.0625rem; }

/* ---------- Eligibility banner (founding-banner pattern from pricing page) ---------- */
.founding-banner {
  background: var(--accent-tint); border: 1px solid #EAB308;
  border-radius: var(--radius-sm); padding: 12px 22px;
  text-align: center; font-size: 0.95rem; color: var(--accent-ink);
  margin-top: 1.75rem; font-weight: 500;
  max-width: 40rem; margin-inline: auto;
}
.founding-banner strong { font-weight: 700; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section.alt { background: var(--surface); }
.section-head { text-align: center; max-width: 42rem; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 500; letter-spacing: -0.02em; }
.section-head p { margin-top: 0.85rem; font-size: 1.0625rem; color: var(--ink-soft); }

/* ---------- Benefit cards ---------- */
.benefit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; align-items: start; max-width: 920px; margin-inline: auto;
}
@media (max-width: 760px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-card {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; background: var(--bg);
  display: flex; flex-direction: column;
}
.benefit-card h3 { font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.01em; }
.benefit-card .benefit-sub { font-size: 0.85rem; color: var(--ink-faint); margin-top: 2px; }
.benefit-card hr.divider { border: none; border-top: 1px solid var(--line); margin-block: 16px; width: 100%; }
/* Stacked tick items: bold label on its own line, description below it */
.tick-list.stacked li { margin-bottom: 14px; }
.tick-list.stacked .bcol { display: flex; flex-direction: column; gap: 3px; }
.tick-list.stacked .bd { font-size: 0.85rem; color: var(--ink-faint); font-weight: 400; line-height: 1.45; }

/* ---------- Tick lists (canonical) ---------- */
.tick-list { list-style: none; }
.tick-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.45;
}
.tick-list li:last-child { margin-bottom: 0; }
.tick-list li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7-7' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.tick-list li b { color: var(--ink); font-weight: 600; }

/* ---------- Pricing lock-in block (pricing-style emphasis) ---------- */
.lockin {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 380px; margin-inline: auto;
}
@media (max-width: 640px) { .lockin { grid-template-columns: 1fr; } }
.lockin-card {
  border: 1.5px solid var(--accent); background: var(--accent-tint);
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-soft);
  text-align: center;
}
.lockin-card .lockin-tier { font-size: 1.0625rem; font-weight: 500; }
.lockin-card .lockin-sub { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.lockin-card .lockin-price {
  margin-top: 1.1rem; font-size: 2.5rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: var(--ink);
}
.lockin-card .lockin-price small { font-size: 1rem; font-weight: 400; color: var(--ink-faint); }
.lockin-card .lockin-was { margin-top: 6px; font-size: 0.9rem; color: var(--accent-ink); font-weight: 500; }
.lockin-card .lockin-was s { color: var(--ink-faint); font-weight: 400; }
.lockin-note { text-align: center; font-size: 0.875rem; color: var(--ink-faint); margin-top: 1.5rem; max-width: 42rem; margin-inline: auto; }
.lockin-note a { color: var(--accent-ink); }

/* ---------- Terms / two-column give-and-get ---------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 760px) { .twocol { grid-template-columns: 1fr; } }
.terms-card {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; background: var(--bg);
}
.terms-card.get { border-color: var(--accent); background: var(--accent-tint); }
.terms-card h3 { font-size: 1.125rem; font-weight: 500; letter-spacing: -0.01em; }
.terms-card .terms-lead { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.5rem; margin-bottom: 1.1rem; line-height: 1.5; }
.terms-card hr.divider { border: none; border-top: 1px solid var(--line); margin-block: 16px; width: 100%; }
.terms-card.get hr.divider { border-top-color: #EAB308; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); border-top: 1px solid var(--line); }
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 500; letter-spacing: -0.025em; }
.final-cta p { margin-top: 1rem; font-size: 1.0625rem; color: var(--ink-soft); max-width: 38rem; margin-inline: auto; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 2rem; flex-wrap: wrap; }

/* ---------- Animated bidirectional beam (the two-way partnership: You <-> GingerBIM) ---------- */
.beam {
  position: relative; width: 100%; aspect-ratio: 500 / 70; min-height: 88px;
  margin: clamp(1.75rem, 4vw, 2.75rem) auto clamp(2rem, 5vw, 3.25rem);
}
.beam-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.beam-wire { stroke: var(--line); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 12 7; opacity: 0.75; }
.beam-flow { stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 12 7; }
/* Nodes sit on the SAME 2-column grid as the .twocol cards below, so each icon
   centres over its card ("What you get" / "What we ask in return"). */
.beam-row {
  position: relative; z-index: 2; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
}
.beam-node {
  justify-self: center;
  width: 3.25rem; height: 3.25rem; border-radius: 999px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.35);
}
.beam-you { color: var(--accent-ink); }
.beam-ginger { padding: 0.6rem; }
.beam-ginger img { width: 100%; height: 100%; object-fit: contain; }
@media (prefers-reduced-motion: reduce) { .beam-flow { display: none; } }
