/* ============================================================
   GSN Free Launch — shared stylesheet
   Brand: teal #009da0 on ivory #fafaf7, "Future is Female"
   ============================================================ */

:root {
  --teal: #009da0;
  --teal-dark: #00777a;
  --teal-light: #a8ebe8;
  --ink: #1a2325;
  --ink-2: #2c3a3d;
  --slate: #4a5558;
  --slate-2: #6b7479;
  --bg: #fafaf7;
  --bg-2: #f1f2ee;
  --border: #e4e6e3;
  --border-2: #cdd1cc;
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(7,30,36,0.07);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }
h1, h2, h3, h4 { font-family: inherit; color: var(--ink); margin: 0 0 .6em; line-height: 1.15; letter-spacing: -0.015em; }
h1 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 700; }
h2 { font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; color: var(--teal);
  font-size: 13px; letter-spacing: 0.03em;
}
.brand-stack { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-name {
  font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em;
}
.brand-fif {
  font-size: 12px; font-weight: 700; color: var(--teal-dark); letter-spacing: -0.04em;
}
.partnership {
  margin-left: 14px; padding-left: 14px;
  border-left: 1px solid var(--border-2);
  display: flex; align-items: center; gap: 10px;
}
.partnership .pl-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate-2);
  line-height: 1.15; max-width: 80px; text-align: right;
}
.partnership .wif-mark {
  display: inline-block;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid #1FE85F;
  color: #1FE85F;
  font-weight: 900; font-size: 13px;
  display: grid; place-items: center;
  letter-spacing: -0.05em;
}
@media (max-width: 1100px) { .partnership { display: none; } }

.nav-main { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-main a {
  display: inline-block; padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2); border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-main a:hover { background: var(--bg-2); color: var(--ink); }
.nav-main a.active { background: var(--ink); color: white; }
.nav-main a.cta {
  background: var(--teal); color: white;
  padding: 9px 16px;
}
.nav-main a.cta:hover { background: var(--teal-dark); color: white; }
@media (max-width: 760px) {
  .nav-main { gap: 0; flex-wrap: wrap; justify-content: flex-end; }
  .nav-main a { padding: 6px 10px; font-size: 13px; }
}

/* ===== Hero ===== */
.hero { padding: 36px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px; align-items: center;
  margin-bottom: 18px;
}
.hero-text h1 { margin: 0 0 12px; line-height: 1.05; }
.hero-text h1 em { font-style: italic; font-weight: 500; color: var(--teal-dark); }
.hero-text p { font-size: 16px; color: var(--slate); max-width: 760px; }
.hero-text p strong { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.hero-ctas .btn { min-width: 180px; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { min-width: 0; }
}
.hero-map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #eef4f6;
  box-shadow: var(--shadow-md);
}
.hero-map-card img, .hero-map-card svg { width: 100%; height: auto; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit; text-decoration: none;
}
.btn-lg { padding: 12px 22px; font-size: 15px; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); color: white; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); color: white; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* ===== Page header (inner pages) ===== */
.page-head {
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 24px;
}
.page-head h1 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 8px; }
.page-head .lede { font-size: 15px; color: var(--slate); max-width: 780px; margin: 0; }

/* ===== Sections ===== */
section.s { padding: 36px 0; }
section.s.alt { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 14px; }
.section-lede { font-size: 16px; color: var(--slate); max-width: 720px; margin-bottom: 26px; }

/* ===== Stats ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--ink);
  border-radius: 14px;
  padding: 20px 24px;
  color: white;
}
.stat .num { font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.stat .num .plus { color: var(--teal-light); font-weight: 500; font-size: 0.7em; margin-left: 1px; }
.stat .label { display: block; margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 720px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }

/* ===== Cards / Grids ===== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card:hover { border-color: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card .card-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 6px; }
.card h3 { margin: 0 0 8px; }
.card p { color: var(--slate); margin: 0; }

/* ===== Team grid ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.team-avatar {
  width: 88px; height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
}
.team-card .name { font-weight: 700; font-size: 17px; }
.team-card .role { color: var(--slate); font-size: 14px; margin: 2px 0 8px; }
.team-card .bio { font-size: 13.5px; color: var(--slate); }

.team-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.team-pending {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 26px;
  background: white;
  border: 1px dashed var(--border-2);
  border-radius: 14px;
  color: var(--slate);
}
.team-pending-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--slate-2);
  display: grid; place-items: center;
  font-size: 22px;
  letter-spacing: 0.1em;
}
.team-pending p { margin: 0; font-size: 14.5px; line-height: 1.5; }

.advisors-list { display: flex; flex-direction: column; gap: 8px; }
.advisor-chip {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.advisor-chip strong { color: var(--ink); font-weight: 700; }

/* ===== News list ===== */
.news-list { display: grid; gap: 14px; }
.news-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: flex-start;
}
.news-item .date {
  background: var(--bg-2);
  color: var(--slate);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 72px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.news-item .date .day { display: block; font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: 0; }
.news-item h3 { margin: 0 0 6px; font-size: 17px; }
.news-item p { color: var(--slate); margin: 0; font-size: 14.5px; }
.news-item .tag { display: inline-block; font-size: 11px; padding: 2px 9px; border-radius: 4px; background: rgba(0,157,160,0.10); color: var(--teal-dark); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 8px; }

/* ===== Community page screenshot ===== */
.community-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
  box-shadow: var(--shadow-md);
}
.community-shot img { width: 100%; display: block; }
.community-shot .badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(26,35,37,0.92); color: white;
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.community-shot .badge::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #ff6b6b; margin-right: 6px; vertical-align: middle; }
.community-cta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding: 22px 26px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
}
.community-cta h3 { margin: 0 0 4px; font-size: 18px; }
.community-cta p { margin: 0; color: var(--slate); font-size: 14px; }
.community-cta .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== Contact form ===== */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  max-width: 640px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,157,160,0.18);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-fineprint { font-size: 12px; color: var(--slate); margin: 14px 0 0; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 36px 0 24px;
  margin-top: 48px;
  font-size: 14px;
}
.site-footer a { color: rgba(255,255,255,0.9); }
.site-footer a:hover { color: white; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-grid h4 { color: white; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,0.6);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Utility ===== */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(0,157,160,0.08);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.muted { color: var(--slate); }
.success-banner {
  background: rgba(31,159,90,0.12);
  border: 1px solid rgba(31,159,90,0.3);
  color: #14724a;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
}


/* ============================================================
   v1.1 additions: match v1.12 home + team styling
   ============================================================ */
/* Hero v17 — light bg, two-column title block, map card */
.hero-v17 {
  background: var(--bg);
  padding: 36px 0 24px;
}
.hero-v17 .hero-title-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin-bottom: 18px;
}
.hero-v17 .hero-title-block .text-col { max-width: 820px; }
.hero-v17 .hero-title-block h1 {
  font-size: clamp(26px, 3.6vw, 40px);
  margin: 0 0 10px;
  line-height: 1.06;
}
.hero-v17 .hero-title-block h1 em {
  font-style: italic; font-weight: 500; color: var(--teal-dark);
}
.hero-v17 .hero-title-block p {
  font-size: 15px; line-height: 1.45;
  max-width: 760px;
  margin: 0;
  color: var(--slate);
}
.hero-v17 .hero-title-block p strong { color: var(--ink); font-weight: 600; }
.hero-v17 .hero-title-block .hero-ctas-stack {
  display: flex; flex-direction: column; gap: 10px;
}
.hero-v17 .hero-title-block .hero-ctas-stack .btn { min-width: 200px; }
@media (max-width: 880px) {
  .hero-v17 .hero-title-block { grid-template-columns: 1fr; gap: 16px; }
  .hero-v17 .hero-title-block .hero-ctas-stack { flex-direction: row; flex-wrap: wrap; }
  .hero-v17 .hero-title-block .hero-ctas-stack .btn { min-width: 0; }
}

/* Map card */
.hero-map-card {
  position: relative;
  background: linear-gradient(180deg, #eef4f6 0%, #e3edef 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(7,30,36,0.08);
  margin-top: 16px;
  aspect-ratio: 1000 / 500;
  max-height: 52vh;
}
.hero-map-card svg.world-svg {
  width: 100%; height: 100%; display: block;
  position: absolute; inset: 0;
}
.hero-map-card .land path {
  fill: rgba(7,70,80,0.10);
  stroke: rgba(7,70,80,0.22);
  stroke-width: 0.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.hero-map-card .map-bubble circle {
  fill: #009DA0;
  fill-opacity: 0.78;
  stroke: white;
  stroke-width: 1.2;
}
.hero-map-card .bubble-label {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 11px; font-weight: 700;
  fill: white;
  text-anchor: middle; dominant-baseline: central;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.45); stroke-width: 2; stroke-linejoin: round;
}

/* Stat cards overlaid in oceans */
.hero-map-card .map-stat {
  position: absolute;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(7,30,36,0.06);
  min-width: 96px;
  pointer-events: none;
}
.hero-map-card .map-stat .num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-map-card .map-stat .num .plus { color: var(--teal); font-weight: 500; font-size: 0.8em; margin-left: 1px; }
.hero-map-card .map-stat .label {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}
.hero-map-card .map-stat.s1 { left: 44%; top: 56%; }
.hero-map-card .map-stat.s2 { left: 39%; top: 74%; }
.hero-map-card .map-stat.s3 { left: 70.5%; top: 59%; }
.hero-map-card .map-stat.s4 { left: 70.5%; top: 76%; }

.hero-map-card .map-legend {
  position: absolute;
  left: 16px; bottom: 14px;
  display: flex; align-items: center; gap: 14px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  color: var(--slate);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.hero-map-card .map-legend .dot { display: inline-block; border-radius: 50%; background: #009DA0; border: 1.5px solid white; }
.hero-map-card .map-legend .d-s { width: 6px; height: 6px; }
.hero-map-card .map-legend .d-m { width: 10px; height: 10px; }
.hero-map-card .map-legend .d-l { width: 16px; height: 16px; }
.hero-map-card .map-legend .label-tip { color: var(--slate); opacity: 0.7; text-transform: uppercase; letter-spacing: 0.12em; font-size: 10.5px; }

@media (max-width: 760px) {
  .hero-map-card .map-stat { padding: 6px 8px; min-width: 70px; }
  .hero-map-card .map-stat .num { font-size: 14px; }
  .hero-map-card .map-stat .label { font-size: 8.5px; }
  .hero-map-card .bubble-label { font-size: 8px; }
  .hero-map-card .map-legend { display: none; }
}

/* Features section — match v1.12 .feature-card pattern */
.feature-card {
  display: block; padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.feature-card:hover { border-color: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow-md); color: inherit; }
.feature-card .icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(0,157,160,0.10);
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.feature-card .icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 17px; margin: 0 0 8px; }
.feature-card .feature-go { color: var(--teal); margin-left: 4px; }
.feature-card p { color: var(--slate); margin: 0; font-size: 14px; }


/* ============================================================
   v1.2: football icon + stacked Future is/Female + remove partnership
   ============================================================ */
.brand { gap: 10px; }
.brand-name-inline {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.brand .brand-football-icon {
  display: block;
  width: 30px; height: 30px;
  margin: 0 4px 0 4px;
  flex-shrink: 0;
}
.brand-fif-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  white-space: nowrap;
}
.brand-fif-stack .bf-line:nth-child(1) {
  font-size: 11px; font-weight: 600;
  color: var(--slate-2); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-fif-stack .bf-line:nth-child(2) {
  font-size: 15px; font-weight: 800;
  color: var(--teal-dark); letter-spacing: -0.03em;
}
.partnership { display: none !important; }

@media (max-width: 880px) {
  .brand-name-inline { display: none; }
  .brand .brand-football-icon { width: 24px; height: 24px; }
  .brand-fif-stack .bf-line:nth-child(1) { font-size: 9.5px; }
  .brand-fif-stack .bf-line:nth-child(2) { font-size: 12.5px; }
}


/* ============================================================
   v1.3: real brand assets from prototype + bigger teal FiF
   ============================================================ */
.brand { gap: 8px; }
.brand img.brand-letters {
  height: 40px; width: auto; display: block;
}
.brand img.brand-football {
  height: 42px; width: 42px; display: block;
  margin: 0 4px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-fif-stack {
  display: inline-flex; flex-direction: column;
  gap: 0; line-height: 1;
  white-space: nowrap;
}
.brand-fif-stack .bf-line {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--teal-dark);
  letter-spacing: -0.025em;
  line-height: 1;
}
.brand-fif-stack .bf-line:nth-child(1) {
  font-size: 16px; font-weight: 600;
}
.brand-fif-stack .bf-line:nth-child(2) {
  font-size: 24px; font-weight: 800;
}

/* hide leftover v1.0/v1.2 brand pieces */
.brand-mark, .brand-name, .brand-name-inline, .brand-fif, .brand-stack, .brand-football-icon { display: none !important; }
.partnership { display: none !important; }

@media (max-width: 700px) {
  .brand img.brand-letters { height: 32px; }
  .brand img.brand-football { height: 32px; width: 32px; margin: 0 3px; }
  .brand-fif-stack .bf-line:nth-child(1) { font-size: 12px; }
  .brand-fif-stack .bf-line:nth-child(2) { font-size: 18px; }
}

/* Team-pending dashed boxes inside team-grid (v1.13-style empty grids) */
.team-grid .team-pending { grid-column: 1 / -1; }

/* ============================================================
   v1.4: unified FiF brand text + new home sections + sign-up form
   ============================================================ */
/* Both FiF lines: same font, weight, size, colour, case (Title Case) */
.brand-fif-stack .bf-line:nth-child(1),
.brand-fif-stack .bf-line:nth-child(2) {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--teal-dark) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.05 !important;
  text-transform: none !important;
}
@media (max-width: 700px) {
  .brand-fif-stack .bf-line:nth-child(1),
  .brand-fif-stack .bf-line:nth-child(2) { font-size: 14px !important; }
}

/* GSN / FiF sister-communities band */
.gsn-fif-band { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gsn-fif-visual { display: flex; flex-direction: column; gap: 14px; }
.gfv-card {
  border-radius: 14px;
  padding: 22px 26px;
  border: 1px solid var(--border);
}
.gfv-gsn { background: linear-gradient(135deg, rgba(0,157,160,0.08), rgba(0,157,160,0.02)); border-color: rgba(0,157,160,0.25); }
.gfv-fif { background: linear-gradient(135deg, rgba(255,107,170,0.06), rgba(255,107,170,0.01)); border-color: rgba(255,107,170,0.25); }
.gfv-num { font-size: 32px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.gfv-name { font-size: 15px; font-weight: 700; color: var(--teal-dark); margin: 6px 0 4px; }
.gfv-desc { font-size: 13.5px; color: var(--slate); line-height: 1.45; }

/* Testimonial band */
.testimonial-band {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonial-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,157,160,0.18), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(168,235,232,0.10), transparent 60%);
}
.testimonial-band .container {
  position: relative;
  text-align: center;
  max-width: 780px;
  padding: 60px 24px 60px;
}
.testimonial-band .quote-mark {
  font-size: 88px;
  color: var(--teal-light);
  line-height: 0.4;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
}
.testimonial-band blockquote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: white;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.testimonial-band cite {
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.quote-dots { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.quote-dot:hover { background: rgba(255,255,255,0.45); }
.quote-dot.active { background: var(--teal-light); width: 24px; border-radius: 4px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  text-align: center;
  padding: 48px 0;
}
.cta-band h2 { color: white; margin: 0 0 8px; font-size: clamp(24px, 3vw, 32px); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 24px; font-size: 16px; }
.cta-band .btn { background: white; color: var(--teal-dark); border-color: white; }
.cta-band .btn:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* Team avatar photos (real images for Founders + Board) */
.team-avatar-photo { padding: 0; background: none; overflow: hidden; }
.team-avatar-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.team-card { padding: 24px 22px; }
.team-card h4 { font-size: 17px; font-weight: 700; margin: 4px 0; color: var(--ink); }
.team-card .team-role { color: var(--slate); font-size: 13px; margin-bottom: 12px; font-weight: 500; }
.team-card .team-bio { padding: 0; margin: 0; list-style: none; text-align: left; }
.team-card .team-bio li { font-size: 13.5px; color: var(--slate); line-height: 1.5; padding: 4px 0 4px 16px; position: relative; }
.team-card .team-bio li::before { content: '•'; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }

@media (max-width: 880px) {
  .gsn-fif-visual { gap: 12px; }
  .testimonial-band .container { padding: 40px 24px; }
}

/* ============================================================
   v1.4: full v1.14-style sign-up form
   Shim missing CSS variables first, then port form rules.
   ============================================================ */
:root {
  --bg-card: #ffffff;
  --teal-50: rgba(0,157,160,0.06);
  --teal-100: rgba(0,157,160,0.18);
  --slate-3: #9aa3a8;
  --accent-warm: #c4302b;
  --radius-pill: 999px;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  --shadow-lg: 0 16px 48px rgba(7,30,36,0.10);
}

.signup-section { padding: 36px 0 60px; }
.signup-section .container { max-width: 900px; }

.form-grid { display: grid; gap: 18px; }
.signup-form { gap: 20px; }

/* Override card form padding for stacked fieldsets */
.signup-form .form-card { display: none; }

.signup-form .fs {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px 26px;
  background: white;
  margin: 0;
}
.signup-form .fs legend {
  padding: 2px 12px;
  margin-left: -4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-dark);
  background: white;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center;
}
.legend-num {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal); color: white;
  font-size: 12px; font-weight: 700;
  margin-right: 10px;
}
.fs-opt, .fs-req {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: var(--radius-pill);
  margin-left: 8px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fs-opt { background: var(--bg-2); color: var(--slate); }
.fs-req { background: var(--accent-warm); color: white; }

.signup-form .fs .form-row { margin-top: 14px; }
.signup-form .fs .form-row:first-of-type { margin-top: 4px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: block; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: white; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-50);
}
.form-group textarea { min-height: 110px; resize: vertical; }

.signup-form .group-label { font-size: 13px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 10px; }
.req { color: var(--accent-warm); font-weight: 700; margin-left: 2px; }
.opt { font-size: 11px; font-weight: 500; color: var(--slate-2); text-transform: lowercase; letter-spacing: 0.01em; margin-left: 6px; }

/* Step-nav */
.step-nav {
  display: flex; gap: 4px;
  margin-bottom: 24px; padding: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
}
.step-nav .step {
  flex: 1 0 auto; min-width: 110px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--slate); font-size: 13px;
  text-decoration: none; transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.step-nav .step:hover { background: var(--bg-2); color: var(--ink); }
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-2); color: var(--slate-2);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.step-nav .step:hover .step-num { background: var(--teal); color: white; }
.step-label { font-weight: 500; }

/* Check grids */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.check-grid.pills { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 6px; }
.check-grid.pills .check-item { padding: 8px 10px; font-size: 12.5px; }

.check-item {
  display: flex; gap: 16px; align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer; font-size: 13.5px;
  line-height: 1.45;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.check-item:hover { border-color: var(--teal); background: white; }
.check-item input { flex-shrink: 0; accent-color: var(--teal); width: 16px; height: 16px; margin: 0 4px 0 0; }
.check-item > span { padding-left: 2px; flex: 1; }
.check-item:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-50);
}

/* Hidden extras */
.hidden-extra {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}
.hidden-extra.open { display: block; }
.hidden-extra label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.hidden-extra .group-label { margin-bottom: 10px; }
.hidden-extra .form-row { margin-top: 14px; }

/* Consent box */
.consent-box { background: var(--teal-50); border-color: var(--teal-100); }
.consent-box legend { background: var(--teal-50); }
.consent-box .legend-num { background: var(--teal-dark); }
.consent-item {
  background: white;
  margin-bottom: 8px;
  align-items: flex-start;
  padding: 12px 14px;
  font-size: 13px; color: var(--ink);
  line-height: 1.5;
}
.consent-item.optional { background: var(--bg); }
.consent-item input[type=checkbox] { margin-top: 2px; }

/* Form actions */
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; align-items: center; }
.signup-submit { padding: 4px 0; }
.fine-print { font-size: 12.5px; color: var(--slate-2); margin: 4px 0 0; flex-basis: 100%; }

@media (max-width: 720px) {
  .signup-form .fs { padding: 16px 16px 18px; }
  .signup-form .fs legend { font-size: 14px; padding: 2px 8px; }
  .legend-num { width: 20px; height: 20px; font-size: 11px; margin-right: 8px; }
  .step-nav { padding: 6px; gap: 2px; margin-bottom: 18px; }
  .step-nav .step { min-width: auto; padding: 7px 9px; font-size: 12px; }
  .step-nav .step .step-label { display: none; }
  .check-grid, .check-grid.pills { grid-template-columns: 1fr 1fr; gap: 6px; }
  .check-item { padding: 9px 10px; font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .check-grid, .check-grid.pills { grid-template-columns: 1fr; }
}

/* ============================================================
   v1.5 polish: feature card images, GSN/FiF logos, tighter team,
                signup intro line
   ============================================================ */

/* Feature card image header (replaces the small icon block) */
.feature-card { padding: 0; overflow: hidden; }
.feature-card .card-image {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.feature-card h3, .feature-card p { padding: 0 24px; }
.feature-card h3 { padding-top: 18px; padding-bottom: 0; }
.feature-card p { padding-bottom: 22px; }
.feature-card { display: flex; flex-direction: column; }

/* GSN/FiF sister-card logos */
.gfv-card { position: relative; padding-right: 84px; }
.gfv-logo {
  position: absolute;
  top: 18px; right: 18px;
  width: 56px; height: 36px;
  object-fit: contain;
  opacity: 0.92;
}
.gfv-fif .gfv-logo { width: 44px; height: 44px; }

/* Tighter team page */
.team-grid { gap: 18px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card { padding: 16px 16px 18px; }
.team-card .team-avatar,
.team-card .team-avatar-photo { width: 88px; height: 88px; margin: 0 auto 10px; }
.team-card h4 { font-size: 16px; margin: 2px 0; }
.team-card .team-role { font-size: 12.5px; margin-bottom: 8px; }
.team-card .team-bio { display: none; } /* tightened — bios available on the prototype */
.team-card .team-bio.compact { display: block; }
.team-card .team-bio.compact li { font-size: 12.5px; padding: 2px 0 2px 14px; }
.team-card .team-bio.compact li::before { left: 2px; }

/* Tighter section heads on team page */
.s .team-section-title-tight {
  font-size: 18px; margin-bottom: 14px;
}

/* Signup section 6 intro line */
.opt-questions-intro {
  margin: 8px 0 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* ============================================================
   v1.5 polish round 2: photos, smaller GSN/FiF logos, horizontal team cards
   ============================================================ */

/* Photo-style card images: bigger, taller, no fade */
.feature-card .card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* GSN/FiF sister cards: small logo on the LEFT, text on the right */
.gfv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  padding-right: 22px;  /* override v1.5 round-1 right padding */
}
.gfv-logo {
  position: static;
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 1;
}
.gfv-fif .gfv-logo { width: 40px !important; height: 40px !important; }
.gfv-text { flex: 1; min-width: 0; }
.gfv-num { font-size: 24px; }
.gfv-name { margin: 4px 0 4px; }

/* Horizontal team cards: photo left, content right */
.team-grid-h {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
@media (max-width: 1100px) { .team-grid-h { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px)  { .team-grid-h { grid-template-columns: 1fr !important; } }

.team-grid-h .team-card {
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
}
.team-grid-h .team-card .team-avatar,
.team-grid-h .team-card .team-avatar-photo {
  width: 88px;
  height: 88px;
  margin: 0;
  flex-shrink: 0;
}
.team-grid-h .team-card .team-content {
  flex: 1;
  min-width: 0;
}
.team-grid-h .team-card h4 {
  font-size: 15px;
  margin: 0;
  line-height: 1.15;
}
.team-grid-h .team-card .team-role {
  font-size: 12px;
  margin: 2px 0 6px;
  font-weight: 500;
  color: var(--slate);
}
.team-grid-h .team-card .team-bio {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-grid-h .team-card .team-bio li {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--slate);
  padding: 1px 0 1px 12px;
  position: relative;
}
.team-grid-h .team-card .team-bio li::before {
  content: '•';
  position: absolute;
  left: 2px;
  color: var(--teal);
  font-weight: 700;
}

/* ============================================================
   v1.5 polish round 3: partners strip
   ============================================================ */
.partners-strip {
  padding: 36px 0 28px;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.partner-badge img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.2s, opacity 0.2s;
}
.partner-badge:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.partner-sub {
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
}
@media (max-width: 700px) {
  .partners-grid { grid-template-columns: 1fr; gap: 22px; }
  .partner-badge img { height: 56px; }
}

/* Card images: better object-fit for SVG illustrations */
.feature-card .card-image { background-size: cover; }
