/* =====================================================================
   Short Term Coops — Application Direct VSL Landing
   Mobile-first (375px base) → 768px → 1024px → 1440px
   Brand tokens from brand.json. CTA copper reserved for CTAs + trust stars.
   ===================================================================== */

:root {
  --cta:        #C47743;  /* primary — copper CTA identity. RESERVED. */
  --cta-top:    #D2853F;  /* CTA gradient highlight */
  --cta-deep:   #A8592C;  /* CTA gradient base — white text passes AA here */
  --cta-hover-top: #C8793A;
  --cta-hover-deep: #94491F;
  --pine:       #184C42;  /* secondary — dark section tone */
  --pine-2:     #1B564B;
  --green:      #257062;  /* tertiary — accent / VSL caption bars / eyebrows */
  --amber:      #FFBC7D;  /* highlight — non-CTA emphasis on dark */
  --ink:        #141515;  /* neutral_dark — body text */
  --paper:      #FBF9F5;  /* neutral_light — soft sections */
  --bg:         #FFFFFF;
  --line:       rgba(20,21,21,0.12);
  --ink-soft:   rgba(20,21,21,0.66);
  --on-dark:    rgba(255,255,255,0.86);
  --on-dark-soft: rgba(255,255,255,0.64);

  --display: "Outfit", system-ui, sans-serif;
  --body:    "Roboto", system-ui, sans-serif;

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 4px rgba(20,21,21,0.04), 0 24px 52px -22px rgba(20,21,21,0.28);
  --shadow-sm: 0 1px 3px rgba(20,21,21,0.05), 0 14px 30px -18px rgba(20,21,21,0.24);

  --overlap: 56px;
  --sect-pad: 56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow--ondark { color: var(--amber); }

.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-head__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 6.5vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--pine);
  text-wrap: balance;
}
.section-head__sub { margin-top: 16px; font-size: 16px; color: var(--ink-soft); text-wrap: pretty; }

/* =====================================================================
   CTA BUTTON — copper gradient, white text (high visibility)
   ===================================================================== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 430px;
  padding: 16px 28px;
  background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta) 42%, var(--cta-deep) 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 16px 34px -12px rgba(168,89,44,0.72), inset 0 1px 0 rgba(255,255,255,0.28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  min-height: 44px;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.96) saturate(1.05);
  box-shadow: 0 20px 38px -12px rgba(168,89,44,0.8), inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--pine); outline-offset: 3px; }
.btn__primary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 2px rgba(74,33,9,0.45);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn__icon { width: 20px; height: 20px; flex: none; }
.btn__sub {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 2px rgba(74,33,9,0.4);
}

/* =====================================================================
   1. CALLOUT BAR
   ===================================================================== */
.callout { background: var(--pine); color: #fff; padding: 11px 16px; }
.callout__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; }
.callout__text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
}
.callout__text strong { color: var(--amber); font-weight: 700; }
.callout__orn { width: 18px; height: 18px; flex: none; color: var(--amber); opacity: 0.9; }

/* =====================================================================
   2. HERO — real cabin photography behind a pine wash
   ===================================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,46,40,0.91) 0%, rgba(20,49,43,0.89) 38%, rgba(15,38,33,0.975) 100%),
    radial-gradient(120% 70% at 50% -10%, rgba(37,112,98,0.32) 0%, rgba(37,112,98,0) 55%),
    url("../assets/cabin-1.jpg") center 30% / cover no-repeat,
    var(--pine);
  color: #fff;
  padding: 24px 20px calc(var(--sect-pad) + var(--overlap));
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 200px 30px rgba(0,0,0,0.35);
}
.hero__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; text-align: center; }
.hero__eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.hero__headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 6.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero__headline .hl { color: var(--amber); }
.hero__sub {
  margin: 12px auto 0;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--on-dark);
  text-wrap: pretty;
}
.hero__sub strong { color: #fff; font-weight: 700; }

/* VSL */
.vsl { max-width: 660px; margin: 18px auto 0; box-shadow: 0 26px 60px -24px rgba(0,0,0,0.6); border-radius: var(--radius-sm); }
.vsl__cap {
  background: var(--green);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px 14px;
}
.vsl__cap--top { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.vsl__cap--bottom { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.vsl__frame { position: relative; aspect-ratio: 16 / 9; background: #0e2e28; overflow: hidden; }
.vsl__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.62);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 12px, rgba(255,255,255,0) 12px 24px);
}
.vsl__play { width: 64px; height: 64px; color: rgba(255,255,255,0.7); }
.vsl__note { font-family: var(--display); font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.78); }
.vsl__key { font-family: var(--body); font-size: 12px; color: rgba(255,255,255,0.5); }

.btn--hero { margin: 18px auto 0; }

/* glanceable stats */
.stats { list-style: none; display: grid; grid-template-columns: 1fr; gap: 14px; margin: 24px auto 0; max-width: 680px; }
.stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  backdrop-filter: blur(3px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(255,188,125,0.6); background: rgba(255,255,255,0.12); }
.stat__icon { width: 30px; height: 30px; color: var(--amber); margin-bottom: 2px; }
.stat__icon--star { fill: var(--amber); }
.stat__value { font-family: var(--display); font-weight: 800; font-size: 38px; line-height: 1; color: #fff; letter-spacing: -0.01em; }
.stat__unit { color: var(--amber); font-size: 26px; }
.stat__label { font-size: 13.5px; color: var(--on-dark-soft); line-height: 1.4; max-width: 26ch; }

/* trust badges */
.trustbadges { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 30px auto 0; flex-wrap: wrap; }
.trustbadges img { height: 44px; width: auto; opacity: 0.96; }
.trustbadges__img { height: 44px; }
.trustbadges__div { width: 1px; height: 34px; background: rgba(255,255,255,0.25); }
.vbadge { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; color: #fff; }
.vbadge__mark { font-family: var(--display); font-weight: 700; font-size: 29px; letter-spacing: 0.005em; }
.vbadge__role { font-family: var(--display); font-weight: 600; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-top: 5px; }

.hero__ridge { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 90px; z-index: 1; }

/* =====================================================================
   3. APPLICATION (overlaps hero)
   ===================================================================== */
.application { background: var(--bg); padding: 0 18px var(--sect-pad); }
.application__card {
  position: relative; z-index: 3;
  margin: calc(-1 * var(--overlap)) auto 0;
  max-width: 1040px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 22px;
  text-align: center;
}
.application__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 5.6vw, 30px);
  line-height: 1.2;
  color: var(--pine);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.application__sub { margin: 12px auto 24px; max-width: 66ch; font-size: 15.5px; color: var(--ink-soft); }
.form-embed { text-align: left; }
.form-skel {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 18px 22px;
}
.form-skel__badge {
  position: absolute; top: -11px; left: 18px;
  font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: var(--green);
  padding: 3px 10px; border-radius: 20px;
}
.form-skel__row { display: flex; flex-direction: column; gap: 7px; }
.form-skel__lbl { font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.02em; }
.form-skel__field { height: 46px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.form-skel__submit {
  margin-top: 4px; min-height: 50px;
  font-family: var(--display); font-weight: 700; font-size: 16px; color: #fff;
  background: linear-gradient(180deg, var(--cta-top), var(--cta-deep));
  border: none; border-radius: 8px; opacity: 0.6; cursor: not-allowed;
}
.form-embed__notice { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); text-align: center; }
.form-embed__notice code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 11px; background: var(--paper); padding: 2px 6px; border-radius: 5px; }

/* Typeform embed slot — wide, ready to drop the embed into */
.tf-slot { margin-top: 6px; border: 1px dashed var(--line); border-radius: var(--radius-sm); background: var(--paper); min-height: 540px; display: flex; align-items: center; justify-content: center; }
.tf-slot__inner { text-align: center; color: var(--ink-soft); display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; }
.tf-slot__icon { width: 54px; height: 54px; color: var(--green); }
.tf-slot__note { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--pine); }
.tf-slot__key { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12px; color: var(--ink-soft); background: #fff; padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line); }

/* =====================================================================
   4. KEY OUTCOMES (+ mid-page CTA)
   ===================================================================== */
.outcomes { background: var(--paper); padding: var(--sect-pad) 18px; }
.outcomes__inner { max-width: var(--maxw); margin: 0 auto; }
.outcome-grid { list-style: none; display: grid; grid-template-columns: 1fr; gap: 20px; }
.o-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.o-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.o-card__media { width: 100%; height: 168px; overflow: hidden; }
.o-card__media img { width: 100%; height: 100%; object-fit: cover; }
.o-card__pad { padding: 22px 24px 26px; }
.o-card__title {
  font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1.25;
  color: var(--pine); margin-bottom: 10px; text-wrap: balance;
}
.o-card__body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

.midcta { margin-top: 44px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.midcta__title {
  font-family: var(--display); font-weight: 700; font-size: clamp(23px, 5.8vw, 32px);
  line-height: 1.2; color: var(--pine); letter-spacing: -0.01em; max-width: 18ch; text-wrap: balance;
}
.midcta__sub { margin: 14px auto 24px; max-width: 56ch; font-size: 16px; color: var(--ink-soft); }

/* =====================================================================
   5. SOCIAL PROOF (dark)
   ===================================================================== */
.proof { background: linear-gradient(180deg, var(--pine) 0%, #143f37 100%); color: #fff; padding: var(--sect-pad) 18px; }
.proof__inner { max-width: var(--maxw); margin: 0 auto; }
.proof .eyebrow { text-align: center; }
.proof__title {
  font-family: var(--display); font-weight: 700; font-size: clamp(26px, 6.5vw, 38px);
  line-height: 1.18; text-align: center; letter-spacing: -0.01em; margin-bottom: 34px; text-wrap: balance;
}
.proof-grid { list-style: none; display: grid; grid-template-columns: 1fr; gap: 18px; }
.t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 24px 52px -22px rgba(0,0,0,0.5); }
.t-card__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-card__stars svg { width: 18px; height: 18px; fill: var(--cta); }   /* stars: approved CTA-color use */
.t-card__takeaway {
  font-family: var(--display); font-weight: 700; font-size: 18px; line-height: 1.3;
  color: #fff; margin-bottom: 12px; text-wrap: balance;
}
.t-card__quote { font-size: 15px; color: var(--on-dark); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.t-card__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-card__photo { width: 52px; height: 52px; flex: none; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid rgba(255,255,255,0.45); }
.t-card__name { font-family: var(--display); font-weight: 600; font-size: 15px; color: #fff; display: flex; flex-direction: column; }
.t-card__name small { font-family: var(--body); font-weight: 400; font-size: 13px; color: var(--on-dark-soft); }
.ftc { margin: 26px auto 0; max-width: 720px; text-align: center; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.52); }

/* =====================================================================
   6. WHO THIS IS FOR
   ===================================================================== */
.whofor { background: var(--bg); padding: var(--sect-pad) 18px; }
.whofor__inner { max-width: 960px; margin: 0 auto; }
.whofor .eyebrow { text-align: center; }
.whofor-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.wf-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 22px; }
.wf-col--for { border-top: 4px solid var(--green); }
.wf-col--not { border-top: 4px solid rgba(20,21,21,0.22); }
.wf-col__head { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--pine); margin-bottom: 16px; }
.wf-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.wf-list li { position: relative; padding-left: 34px; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.wf-mark { position: absolute; left: 0; top: 1px; width: 22px; height: 22px; }
.wf-mark--yes { color: var(--green); }
.wf-mark--no { color: rgba(20,21,21,0.4); }
.whofor__close {
  margin: 28px auto 0; max-width: 60ch; text-align: center;
  font-family: var(--display); font-weight: 500; font-size: 17px; color: var(--pine); line-height: 1.45; text-wrap: balance;
}
.whofor__cta { display: flex; justify-content: center; margin-top: 24px; }

/* =====================================================================
   7. GUARANTEES
   ===================================================================== */
.guarantees { background: var(--paper); padding: var(--sect-pad) 18px; }
.guarantees__inner { max-width: var(--maxw); margin: 0 auto; }
.guarantees .eyebrow { text-align: center; }
.g-grid { list-style: none; display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 34px; }
.g-card {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 38px 24px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.g-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.g-card__num {
  position: absolute; top: -23px; left: 22px;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--green) 0%, var(--pine) 100%);
  color: var(--amber);
  font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: 0;
  border: 3px solid #fff;
  box-shadow: 0 12px 24px -8px rgba(24,76,66,0.55);
}
.g-card__title { font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.25; color: var(--pine); margin: 2px 0 9px; text-wrap: balance; }
.g-card__body { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.guarantees__close { margin: 28px auto 0; max-width: 64ch; text-align: center; font-size: 16px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }

/* =====================================================================
   8. RELATIONAL EQUITY
   ===================================================================== */
.founder { background: var(--bg); padding: var(--sect-pad) 18px; }
.founder__card {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px 22px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.founder__photo {
  aspect-ratio: 4 / 5; width: 100%; max-width: 360px; margin: 0 auto;
  border-radius: var(--radius-sm);
  background: repeating-linear-gradient(45deg, rgba(24,76,66,0.05) 0 14px, rgba(24,76,66,0) 14px 28px), var(--bg);
  border: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(24,76,66,0.45); text-align: center; padding: 16px;
}
.founder__photo svg { width: 64px; height: 64px; }
.founder__photo-note { font-size: 12px; color: var(--ink-soft); }
.founder__img {
  aspect-ratio: 4 / 5; width: 100%; max-width: 360px; margin: 0 auto;
  object-fit: cover; object-position: center 22%;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.founder__headline { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 6vw, 34px); line-height: 1.18; color: var(--pine); letter-spacing: -0.01em; text-wrap: balance; }
.founder__tagline { font-family: var(--display); font-weight: 500; font-size: 15px; color: var(--green); margin: 8px 0 18px; }
.founder__bio { font-size: 15.5px; color: var(--ink-soft); line-height: 1.62; margin-bottom: 14px; }
.founder__bio:last-child { margin-bottom: 0; }
.founder__bio strong { color: var(--ink); font-weight: 700; }

/* =====================================================================
   9. FINAL CTA (dark)
   ===================================================================== */
.finalcta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,46,40,0.94), rgba(15,38,33,0.985)),
    radial-gradient(120% 90% at 50% 0%, rgba(37,112,98,0.3) 0%, rgba(37,112,98,0) 55%),
    url("../assets/cabin-3.jpg") center 40% / cover no-repeat, var(--pine);
  color: #fff;
  padding: calc(var(--sect-pad) + 8px) 20px;
  overflow: hidden;
}
.finalcta::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  box-shadow: inset 0 0 200px 30px rgba(0,0,0,0.35);
}
.finalcta__inner { position: relative; z-index: 1; }
.finalcta__inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.finalcta__headline { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 7vw, 44px); line-height: 1.14; letter-spacing: -0.02em; text-wrap: balance; text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.finalcta__sub { margin: 18px auto 28px; max-width: 58ch; font-size: 16.5px; color: var(--on-dark); line-height: 1.55; text-wrap: pretty; }

/* =====================================================================
   10. FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 44px 20px 40px; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.site-footer__logo { height: 52px; width: auto; margin: 0 auto; }
.site-footer__tag { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-top: 12px; }
.site-footer__contact { margin-top: 22px; font-size: 13.5px; line-height: 1.6; }
.site-footer__contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer__contact a:hover { color: #fff; }
.site-footer__links { margin-top: 18px; display: flex; gap: 24px; justify-content: center; }
.site-footer__links a { font-family: var(--display); font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__copy { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.55); }
.site-footer__compliance { margin: 18px auto 0; max-width: 880px; font-size: 11.5px; line-height: 1.6; color: rgba(255,255,255,0.4); }

/* =====================================================================
   TABLET ≥ 768px
   ===================================================================== */
@media (min-width: 768px) {
  :root { --sect-pad: 84px; --overlap: 80px; }
  .hero { padding: 30px 24px calc(var(--sect-pad) + var(--overlap)); }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat__label { font-size: 13px; }
  .outcome-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .tf-slot { min-height: 600px; }
  .whofor-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .g-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .founder__card { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 36px; padding: 40px 38px; }
  .founder__photo, .founder__img { max-width: none; }
  .application__card { padding: 40px 40px; }
  .form-skel { padding: 28px 24px 24px; }
}

/* =====================================================================
   DESKTOP ≥ 1024px
   ===================================================================== */
@media (min-width: 1024px) {
  :root { --sect-pad: 104px; --overlap: 90px; }
  .hero { padding: 34px 24px calc(var(--sect-pad) + var(--overlap)); }
  .hero__sub { font-size: 17px; }
  .vsl { margin-top: 20px; }
  .section-head__sub, .midcta__sub { font-size: 17px; }
  .o-card__body, .g-card__body, .wf-list li { font-size: 15.5px; }
  .o-card__media { height: 188px; }
  .founder__card { padding: 52px 56px; gap: 48px; }
}

@media (min-width: 1440px) { .hero__inner { max-width: 1060px; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
