/* ============================================================
   Rivena — design system
   Colors and type pulled directly from the pitch deck theme.
   ============================================================ */

:root {
  --dark: #0F2318;       /* primary dark, backgrounds/headers */
  --dark-2: #1C3A2C;     /* secondary dark green, cards on dark */
  --accent: #5FA98A;     /* sage-emerald accent */
  --accent-dark: #3F8168;/* hover state for accent */
  --tint-1: #E7EFEC;     /* light mint background */
  --tint-2: #CFE3DB;     /* light sage, cards on white */
  --body: #4A4A4A;       /* body text on light */
  --secondary: #7A7A7A;  /* captions, source lines */
  --white: #FFFFFF;
  --near-black: #0A0A0A;
  --border-light: rgba(15, 35, 24, 0.12);
  --border-dark: rgba(231, 239, 236, 0.14);

  --font-display: Cambria, Georgia, 'Times New Roman', serif;
  --font-body: Calibri, 'Segoe UI', 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-varsity: 'Oswald', 'Arial Narrow', var(--font-body);

  --max: 1160px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

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

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9em;
  display: block;
}

.lede {
  font-size: 1.15rem;
  color: var(--body);
  max-width: 640px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none !important;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--near-black);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); }

.btn-on-dark.btn-primary { color: var(--dark); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(95, 169, 138, 0.12); }

.btn-text {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent-dark);
  font-weight: bold;
  border-radius: 0;
}
.btn-text:hover { text-decoration: underline; }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / nav ---------- */

.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  color: var(--white);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-full { display: block; width: 120px; height: auto; }
.site-header .logo-full { width: 185px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--tint-1);
  font-size: 0.83rem;
  font-weight: 600;
  opacity: 0.86;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; text-decoration: none; color: var(--accent); }
.nav-links a.current { color: var(--accent); opacity: 1; }

.nav-cta { display: none; padding: 10px 18px; font-size: 0.83rem; white-space: nowrap; }
.nav-cta-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1.1rem;
}

@media (min-width: 1280px) {
  .nav-cta { display: inline-flex; }
}

@media (max-width: 1279px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--border-dark);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta-mobile { display: inline-flex; margin-top: 6px; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--tint-1);
  padding: 96px 0 84px;
}
.hero h1 { color: var(--white); }
.hero .lede { color: var(--tint-1); opacity: 0.92; font-size: 1.2rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 34px; }
.hero-actions .btn-text { color: var(--tint-1); }

.hero.compact { padding: 66px 0 56px; }

/* ---------- Countdown / hook section ---------- */

.hook {
  background: var(--dark);
  color: var(--tint-1);
}
.hook h2 { color: var(--white); }
.hook .lede { color: var(--tint-1); max-width: 720px; font-size: 1.1rem; }

.countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 12px;
}
.countdown-figure {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  min-width: 96px;
  text-align: center;
}
.countdown-figure .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.countdown-figure .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tint-1);
  opacity: 0.75;
}
.source-line {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 18px;
}
.hook .source-line { color: rgba(231,239,236,0.65); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.step {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border-dark);
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--near-black);
  font-weight: bold;
  font-family: var(--font-display);
  margin-bottom: 14px;
}
.step p { color: var(--tint-1); opacity: 0.92; margin: 0; font-size: 0.97rem; }

/* ---------- Sections on light background ---------- */

.section-light { background: var(--white); }
.section-tint { background: var(--tint-1); }

.section-head { max-width: 720px; margin-bottom: 44px; }

/* ---------- Card grids ---------- */

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}
.card h3 { margin-bottom: 0.5em; }
.card p { color: var(--body); margin-bottom: 0; font-size: 0.97rem; }

.card-tint { background: var(--tint-2); border-color: transparent; }
.card-dark { background: var(--dark-2); border-color: var(--border-dark); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: var(--tint-1); opacity: 0.9; }

.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--tint-2);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.card-dark .card-icon { background: var(--accent); color: var(--near-black); }

/* ---------- Proof / credibility strip ---------- */

.proof-strip {
  background: var(--dark);
  color: var(--tint-1);
}
.proof-strip h2 { color: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.proof-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 22px;
}
.proof-card .name { font-weight: bold; color: var(--white); display: block; margin-bottom: 4px; }
.proof-card .role { color: var(--accent); font-size: 0.88rem; display: block; margin-bottom: 10px; }
.proof-card p { color: var(--tint-1); opacity: 0.88; font-size: 0.92rem; margin: 0; }

/* ---------- Promise box ---------- */

.promise-box {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-dark);
}
.promise-box p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
}
.promise-box .cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 16px;
  display: block;
}

/* ---------- Plans / pricing ---------- */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,35,24,0.18);
}
.plan.featured h3, .plan.featured .plan-price, .plan.featured .plan-for { color: var(--white); }
.plan.featured p, .plan.featured li { color: var(--tint-1); }
.plan.featured .plan-tag { background: var(--accent); color: var(--near-black); }
.plan-tag {
  align-self: flex-start;
  background: var(--tint-2);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  margin: 6px 0 2px;
}
.plan-price span { font-size: 1rem; font-family: var(--font-body); color: var(--secondary); }
.plan.featured .plan-price span { color: rgba(231,239,236,0.7); }
.plan-for { font-size: 0.9rem; color: var(--secondary); margin-bottom: 18px; }
.plan.featured .plan-for { color: rgba(231,239,236,0.75); }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex-grow: 1;
}
.plan li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.94rem;
  border-top: 1px solid var(--border-light);
}
.plan.featured li { border-top-color: var(--border-dark); }
.plan li:first-child { border-top: none; }
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: bold;
}
.plan.featured li::before { color: var(--accent); }

/* one-off services table */
.svc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.svc-table th, .svc-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}
.svc-table th {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark);
  font-size: 1rem;
}
.svc-table td.price { color: var(--dark); font-weight: bold; white-space: nowrap; }
.table-wrap { overflow-x: auto; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--accent);
  color: var(--near-black);
  text-align: center;
}
.cta-band h2 { color: var(--near-black); }
.cta-band .lede { color: var(--near-black); opacity: 0.85; margin: 0 auto 30px; }
.cta-band .btn-primary { background: var(--dark); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--near-black); }

/* ---------- Split layout ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* ---------- Team ---------- */

.person {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--tint-2);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Form ---------- */

.form-wrap {
  background: var(--tint-1);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: bold;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--near-black);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-note { font-size: 0.85rem; color: var(--secondary); margin-top: 16px; }
.confirm-msg {
  display: none;
  background: var(--dark-2);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 18px;
}
.confirm-msg.show { display: block; }

/* ---------- Stat table (investors) ---------- */

.stat-table {
  width: 100%;
  border-collapse: collapse;
}
.stat-table th, .stat-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}
.stat-table th { color: var(--secondary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-row .stat { padding: 20px; }
.stat .stat-num { font-family: var(--font-display); font-size: 2.1rem; color: var(--dark); display: block; }
.stat .stat-lbl { color: var(--secondary); font-size: 0.85rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--tint-1);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
.footer-grid .logo { margin-bottom: 14px; }
.footer-grid p { color: rgba(231,239,236,0.75); font-size: 0.92rem; }
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(231,239,236,0.82); font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }

.disclosure {
  margin-top: 28px;
  padding-top: 4px;
  font-size: 0.82rem;
  color: rgba(231,239,236,0.65);
  max-width: 900px;
  line-height: 1.6;
}
.disclosure strong { color: rgba(231,239,236,0.85); }

.footer-bottom {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(231,239,236,0.55);
}
.footer-bottom a { color: rgba(231,239,236,0.7); }

/* ---------- Misc ---------- */

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.tag {
  background: var(--tint-2);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.divider { height: 1px; background: var(--border-light); margin: 60px 0; border: none; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.two-col-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.roadmap-step {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
}
.roadmap-step .n { color: var(--accent-dark); font-weight: bold; font-size: 0.85rem; letter-spacing: 0.05em; }

.legal-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.legal-section { max-width: 780px; }
.legal-section h2 { margin-top: 2.2em; padding-top: 0.3em; border-top: 1px solid var(--border-light); }
.legal-section h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-section h3 { font-size: 1.05rem; margin-top: 1.8em; margin-bottom: 0.5em; }
.legal-section ul, .legal-section ol { padding-left: 22px; }
.legal-section li { margin-bottom: 8px; }

/* ============================================================
   Vintage sports layer — real photography, halftone texture,
   varsity numerals, floating stat badge. Added per redesign pass.
   ============================================================ */

/* Varsity / scoreboard numeral treatment */
.eyebrow {
  font-family: var(--font-varsity);
  font-weight: 600;
  letter-spacing: 0.16em;
}
.countdown-figure .num { font-family: var(--font-varsity); font-weight: 600; letter-spacing: 0.02em; }
.plan-tag { font-family: var(--font-varsity); letter-spacing: 0.08em; }
.stat .stat-num { font-family: var(--font-varsity); font-weight: 600; }

/* Halftone dot texture — vintage print feel, used on dark sections */
.halftone {
  position: relative;
  isolation: isolate;
}
.halftone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: radial-gradient(rgba(231, 239, 236, 0.14) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.15) 70%, transparent);
}
.halftone > .container { position: relative; z-index: 1; }

/* Photo hero — real vintage sports photography, duotoned to the brand green */
.photo-hero {
  position: relative;
  color: var(--tint-1);
  overflow: hidden;
}
.photo-hero .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.55) contrast(1.08) brightness(0.85);
}
.photo-hero .photo-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15,35,24,0.96) 20%, rgba(15,35,24,0.75) 55%, rgba(15,35,24,0.55) 100%),
    linear-gradient(180deg, rgba(15,35,24,0.2), rgba(15,35,24,0.55) 100%);
  mix-blend-mode: multiply;
}
.photo-hero .container { position: relative; z-index: 2; }

/* Floating proof/stat badge in a hero, adsgency-style call-out */
.stat-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(231, 239, 236, 0.08);
  border: 1px solid rgba(231, 239, 236, 0.28);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 26px;
}
.stat-badge .stat-badge-num {
  font-family: var(--font-varsity);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.stat-badge .stat-badge-lbl {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tint-1);
  opacity: 0.8;
}

/* Hero rule + trust line, dual CTA pattern */
.hero-rule {
  border: none;
  height: 1px;
  background: rgba(231, 239, 236, 0.22);
  margin: 28px 0 26px;
  max-width: 560px;
}
.trust-line {
  margin-top: 34px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(231, 239, 236, 0.62);
}
.trust-line strong { color: rgba(231, 239, 236, 0.9); font-weight: 600; }

/* Sport mosaic strip */
.sport-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
}
.sport-tile {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.5) contrast(1.1) brightness(0.8);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.sport-tile:hover { filter: grayscale(0) contrast(1.1) brightness(0.95); transform: scale(1.02); }
.sport-tile .sport-tile-veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,35,24,0.92) 10%, transparent 55%);
}
.sport-tile .sport-tile-label {
  position: absolute;
  left: 14px; bottom: 12px;
  color: var(--white);
  font-family: var(--font-varsity);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 700px) {
  .sport-mosaic { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

/* Small vintage banner used on secondary-page heroes */
.photo-hero.compact-photo { padding: 76px 0 64px; }
.photo-hero .lede { color: var(--tint-1); opacity: 0.94; }

/* Sport icon badges — line-art SVG, used in place of generic checkmarks */
.sport-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tint-2);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.sport-icon svg { width: 24px; height: 24px; }
.card-dark .sport-icon, .photo-hero .sport-icon { background: var(--accent); color: var(--near-black); }

/* Outline button readable on photo hero */
.btn-outline.btn-on-photo {
  border-color: rgba(231,239,236,0.55);
  color: var(--white);
}
.btn-outline.btn-on-photo:hover { background: rgba(231,239,236,0.12); }

/* Simple stitched divider, vintage sporting-goods feel */
.stitch-divider {
  border: none;
  border-top: 2px dashed rgba(15,35,24,0.18);
  margin: 0;
}
.stitch-divider.on-dark { border-top-color: rgba(231,239,236,0.22); }

/* ============================================================
   Process explainer, stat callout, and founder photo cards.
   ============================================================ */

.stat-callout {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--dark);
  color: var(--tint-1);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-dark);
}
.stat-callout-num {
  font-family: var(--font-varsity);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.stat-callout-text p { color: var(--tint-1); margin-bottom: 8px; }
.stat-callout-text p:last-child { margin-bottom: 0; }
.stat-callout .source-line { color: rgba(231,239,236,0.6); margin-top: 10px; }
@media (max-width: 640px) {
  .stat-callout { flex-direction: column; align-items: flex-start; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 36px;
  max-width: 720px;
}
.team-card { text-align: center; }
.team-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--dark-2);
  border: 3px solid var(--accent);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo .team-fallback {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--tint-1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.team-card .name { display: block; font-weight: bold; color: var(--white); font-size: 1.05rem; margin-bottom: 2px; }
.team-card .role { display: block; color: var(--accent); font-size: 0.85rem; margin-bottom: 10px; }
.team-card p { color: var(--tint-1); opacity: 0.88; font-size: 0.92rem; margin: 0; }
