/* ==========================================================================
   LockedTee marketing site
   Palette: near-black #0E1116, warm ivory #F5F1E8, brass #C6A15B
   Deliberately not the teal/navy/green of the field. Private-club concierge.
   ========================================================================== */

:root {
  --ink:        #0E1116;
  --ink-2:      #12161C;
  --ink-3:      #171C24;
  --ink-4:      #1D232C;
  --ivory:      #F5F1E8;
  --ivory-dim:  #CBC5B7;
  --ivory-faint:#8C8778;
  --brass:      #C6A15B;
  --brass-bright:#DDBC7D;
  --brass-deep: #A9853F;
  --line:       rgba(198, 161, 91, 0.18);
  --line-soft:  rgba(245, 241, 232, 0.08);
  --shadow:     0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* subtle brass selection */
::selection { background: rgba(198, 161, 91, 0.28); color: var(--ivory); }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

.section-pad { padding: clamp(72px, 10vw, 132px) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.06; letter-spacing: -0.015em; margin: 0; }

h2.title {
  font-size: clamp(2.05rem, 4.4vw, 3.35rem);
  color: var(--ivory);
}
.section-head p.lede {
  margin: 20px 0 0;
  font-size: 1.12rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--brass-bright), var(--brass));
  color: #1a130a;
  box-shadow: 0 12px 30px -12px rgba(198, 161, 91, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(198, 161, 91, 0.75);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn svg { width: 17px; height: 17px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 48px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 14, 18, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
  padding-top: 14px;
  padding-bottom: 14px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ivory);
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.wordmark .lk { color: var(--ivory); }
.wordmark .tee { color: var(--brass); }
.wordmark .dot { color: var(--brass); font-size: 1.5rem; line-height: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivory-dim);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

/* the CTA inside the slide-down menu is for mobile only; hidden on desktop */
.nav-menu > .btn { display: none; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px; height: 44px;
  padding: 0;
  color: var(--ivory);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.6px; margin: 4px auto;
  background: var(--ivory); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 26s ease-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,14,18,0.94) 0%, rgba(11,14,18,0.78) 42%, rgba(11,14,18,0.42) 100%),
    linear-gradient(0deg, rgba(11,14,18,0.96) 2%, rgba(11,14,18,0.1) 42%);
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 220px 60px rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero h1 {
  font-size: clamp(2.9rem, 7.4vw, 5.35rem);
  line-height: 0.98;
  margin: 22px 0 0;
  color: var(--ivory);
}
.hero h1 .accent { color: var(--brass); font-style: italic; }

.hero-sub {
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: var(--ivory-dim);
  max-width: 560px;
  line-height: 1.62;
}

.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }

.proof {
  margin-top: 44px;
  display: inline-flex;
  align-items: stretch;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(23, 28, 36, 0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  max-width: 560px;
}
.proof-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--brass);
  margin-top: 7px;
  flex: none;
  box-shadow: 0 0 0 0 rgba(198,161,91,0.6);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(198,161,91,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(198,161,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,161,91,0); }
}
.proof p { margin: 0; font-size: 0.96rem; color: var(--ivory-dim); line-height: 1.5; }
.proof strong { color: var(--ivory); font-weight: 600; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-faint); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span { width: 1px; height: 40px; background: linear-gradient(var(--brass), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0% { opacity: 0; transform: scaleY(0.2); transform-origin: top; } 40% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: top; } }

/* ---------- marquee / assurance strip ---------- */
.assure {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.assure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.assure-item {
  background: var(--ink-2);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.assure-item .k { font-family: var(--font-display); font-size: 1.7rem; color: var(--brass); line-height: 1; }
.assure-item .v { font-size: 0.85rem; color: var(--ivory-dim); letter-spacing: 0.01em; }

/* ---------- why band ---------- */
.whyband {
  background:
    radial-gradient(120% 140% at 80% -20%, rgba(198, 161, 91, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(64px, 9vw, 118px) 0;
}
.whyband-inner { max-width: 900px; text-align: center; }
.whyband-eyebrow {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.72rem; color: var(--brass); margin: 0 0 18px;
}
.whyband-q {
  font-family: var(--font-display); font-weight: 500; color: var(--ivory);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0;
}
.whyband-a {
  max-width: 620px; margin: 22px auto 0; color: var(--ivory-dim);
  font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.6;
}

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-deep);
  opacity: 0.85;
  margin-bottom: 22px;
}
.step-icon {
  position: absolute; top: 34px; right: 30px;
  width: 30px; height: 30px; color: var(--brass); opacity: 0.55;
}
.step h3 { font-size: 1.4rem; color: var(--ivory); margin-bottom: 12px; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--ivory-dim); font-size: 0.99rem; line-height: 1.65; }
.step .step-note { margin-top: 16px; font-size: 0.85rem; color: var(--brass); font-weight: 500; letter-spacing: 0.01em; }

/* ---------- confirmation showcase ---------- */
.confirm { background: var(--ink); border-top: 1px solid var(--line-soft); }
.confirm-wrap { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(40px, 7vw, 84px); align-items: center; }
.confirm-media { display: flex; justify-content: center; width: 100%; }

/* clean CSS phone mockup (no photo, fully responsive, never overpowers the copy) */
.phone {
  width: 100%; max-width: 300px;
  background: linear-gradient(180deg, var(--ink-4), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: 34px; padding: 14px;
  box-shadow: var(--shadow);
}
.phone-screen {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-soft);
  border-radius: 24px; padding: 20px 16px 24px;
}
.sms-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.sms-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); }
.sms-time { font-size: 0.72rem; color: var(--ivory-faint); }
.sms-thread { display: flex; flex-direction: column; gap: 10px; }
.bubble {
  background: var(--ink-4); border: 1px solid var(--line-soft);
  border-radius: 14px 14px 14px 4px; padding: 12px 14px;
  font-size: 0.9rem; color: var(--ivory); line-height: 1.5; max-width: 94%;
}
.bubble-actions { display: flex; gap: 8px; margin-top: 4px; }
.chip {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  color: #1a130a; background: linear-gradient(135deg, var(--brass-bright), var(--brass));
  padding: 7px 16px; border-radius: 999px;
}
.confirm-copy h2 { margin-bottom: 20px; }
.confirm-list { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.confirm-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ivory-dim); }
.confirm-list li svg { width: 18px; height: 18px; color: var(--brass); flex: none; margin-top: 4px; }

/* ---------- pricing ---------- */
.pricing { background: var(--ink-2); border-top: 1px solid var(--line-soft); }
.pay-only { text-align: center; color: var(--brass); font-weight: 600; letter-spacing: 0.02em; margin: 0 0 8px; font-size: 0.95rem; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
}
.plan {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 32px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--line); }
.plan.featured {
  border-color: var(--brass);
  box-shadow: var(--shadow), 0 0 0 1px var(--brass) inset;
  position: relative;
}
.plan.featured::before {
  content: "Most popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brass-bright), var(--brass));
  color: #1a130a; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 1.55rem; color: var(--ivory); }
.plan-blurb { color: var(--ivory-faint); font-size: 0.9rem; margin: 6px 0 22px; min-height: 40px; }
.plan-price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 4px; }
.plan-price .amt { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--ivory); }
.plan-price .per { color: var(--ivory-faint); font-size: 0.95rem; margin-bottom: 8px; }
.plan-fee { font-size: 0.85rem; color: var(--brass); margin: 0 0 26px; letter-spacing: 0.01em; }
.plan ul { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--ivory-dim); line-height: 1.45; }
.plan li svg { width: 17px; height: 17px; color: var(--brass); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; }
.plan-cta-note { text-align: center; font-size: 0.78rem; color: var(--ivory-faint); margin: 12px 0 0; }

/* ---------- trust / pledge ---------- */
.trust { background: var(--ink); position: relative; }
.pledge {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(40px, 6vw, 68px);
  background:
    radial-gradient(140% 120% at 12% 0%, rgba(198,161,91,0.10), transparent 55%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  overflow: hidden;
}
.pledge-mark {
  width: 54px; height: 54px; color: var(--brass); margin-bottom: 26px;
}
.pledge h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: var(--ivory);
  max-width: 900px;
}
.pledge h2 em { font-style: italic; color: var(--brass); }
.pledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.pledge-point { border-top: 1px solid var(--line); padding-top: 20px; }
.pledge-point h4 { margin: 0 0 8px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.pledge-point p { margin: 0; color: var(--ivory-dim); font-size: 0.96rem; line-height: 1.6; }

.guarantee {
  margin-top: 46px;
  text-align: center;
  border: 1px solid var(--brass-line, rgba(198,161,91,0.28));
  border-radius: var(--radius);
  background: radial-gradient(120% 160% at 50% -40%, rgba(198, 161, 91, 0.12), transparent 60%), var(--ink-2);
  padding: clamp(28px, 4vw, 44px);
}
.guarantee-badge {
  display: inline-block; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.7rem; color: var(--brass); border: 1px solid var(--brass-line, rgba(198,161,91,0.28));
  border-radius: 999px; padding: 5px 14px; margin-bottom: 16px;
}
.guarantee-line {
  max-width: 720px; margin: 0 auto; color: var(--ivory-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.6;
}
.guarantee-line b { color: var(--ivory); }

/* ---------- check your course ---------- */
.checkcourse { background: var(--ink-2); border-top: 1px solid var(--line-soft); }
.checkcourse-card { max-width: 680px; margin: 40px auto 0; }
#check-form { display: flex; gap: 12px; flex-wrap: wrap; }
#check-url {
  flex: 1 1 320px; min-width: 0; background: var(--ink); color: var(--ivory);
  border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; font-size: 1rem; font-family: var(--font-body);
}
#check-url::placeholder { color: var(--ivory-faint); }
#check-url:focus { outline: none; border-color: var(--brass); }
#check-form .btn { flex: 0 0 auto; }
.checkcourse-result {
  margin-top: 20px; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  background: var(--ink); text-align: left;
}
.checkcourse-result.ok { border-color: var(--brass-line, rgba(198,161,91,0.4)); }
.checkcourse-result h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.25rem; color: var(--ivory); }
.checkcourse-result p { margin: 0 0 14px; color: var(--ivory-dim); font-size: 0.98rem; line-height: 1.55; }
.checkcourse-result .wl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.checkcourse-result input[type=email] {
  flex: 1 1 240px; min-width: 0; background: var(--ink-2); color: var(--ivory);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 0.98rem; font-family: var(--font-body);
}
.checkcourse-result input[type=email]:focus { outline: none; border-color: var(--brass); }
.checkcourse-result .done { color: var(--brass); font-weight: 600; }

/* ---------- founder ---------- */
.founder-wrap { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.founder-copy .eyebrow { }
.founder-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--ivory); margin-bottom: 22px; }
.founder-copy p { color: var(--ivory-dim); margin: 0 0 18px; line-height: 1.72; }
.founder-copy p strong { color: var(--ivory); font-weight: 600; }
.founder-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.founder-stats .fs { display: flex; flex-direction: column; }
.founder-stats .fs b { font-family: var(--font-display); font-size: 2.2rem; color: var(--brass); line-height: 1; }
.founder-stats .fs span { font-size: 0.82rem; color: var(--ivory-faint); margin-top: 6px; letter-spacing: 0.02em; }

.founder-media {
  position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.founder-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.founder-media .tag {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(11,14,18,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px;
  font-size: 0.86rem; color: var(--ivory-dim);
}
.founder-media .tag b { color: var(--ivory); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { background: var(--ink-2); border-top: 1px solid var(--line-soft); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; color: var(--ivory);
  padding: 26px 44px 26px 0; font-size: 1.12rem; font-family: var(--font-display); font-weight: 500;
  position: relative; letter-spacing: -0.01em; line-height: 1.35;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.5rem; color: var(--brass); transition: transform 0.3s var(--ease);
  font-weight: 300;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 44px 26px 0; color: var(--ivory-dim); font-size: 0.99rem; line-height: 1.7; }

/* ---------- final CTA ---------- */
.final { position: relative; overflow: hidden; text-align: center; }
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(198,161,91,0.14), transparent 60%);
}
.final .container { position: relative; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--ivory); max-width: 820px; margin: 0 auto 22px; }
.final h2 em { font-style: italic; color: var(--brass); }
.final p { color: var(--ivory-dim); max-width: 560px; margin: 0 auto 36px; font-size: 1.1rem; }
.final .hero-actions { justify-content: center; }
.final small { display: block; margin-top: 22px; color: var(--ivory-faint); font-size: 0.85rem; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--ink); padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--ivory-faint); font-size: 0.9rem; margin: 14px 0 0; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { margin: 0 0 16px; font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory-faint); font-weight: 600; }
.footer-col a { display: block; color: var(--ivory-dim); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--ivory-faint); font-size: 0.84rem;
}

/* ---------- toast (local checkout feedback) ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 24px);
  background: var(--ink-4); border: 1px solid var(--brass); color: var(--ivory);
  padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; z-index: 200;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); max-width: 92vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast b { color: var(--brass); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .steps, .plans, .pledge-grid { grid-template-columns: 1fr; }
  .assure-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-media { max-width: 440px; }
  .plan.featured { order: -1; }
  .confirm-wrap { grid-template-columns: 1fr; }
  .confirm-media { margin-bottom: 22px; }
}

@media (max-width: 960px) {
  body { font-size: 16px; }
  /* Below 960 the six-item desktop nav + CTA no longer fit (tablets like 820 wrapped and overlapped),
     so the whole nav collapses to the hamburger + slide-down menu. */
  /* hide only the desktop inline CTA; the .nav-links list rides inside the
     slide-down menu (which is transformed off-screen until opened) */
  .nav-cta .btn-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 auto 0; top: 0;
    background: rgba(11,14,18,0.97); backdrop-filter: blur(18px);
    padding: 96px 28px 36px; z-index: 55;
    transform: translateY(-102%); transition: transform 0.45s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav-menu ul li { width: 100%; }
  .nav-menu ul a { display: block; padding: 15px 0; font-size: 1.15rem; color: var(--ivory); border-bottom: 1px solid var(--line-soft); width: 100%; }
  .nav-menu > .btn { display: inline-flex; margin-top: 24px; width: 100%; }
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 90px; }
  /* On a portrait crop the golfer (left-center of the frame) falls under the text scrim; shift the framing
     so he sits on the lighter right side and stays visible on phones. */
  .hero-media video, .hero-media img { object-position: 20% center; }
  .proof { flex-wrap: nowrap; }
  .assure-grid { grid-template-columns: 1fr 1fr; }
  .founder-stats { gap: 28px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 420px) {
  .container { padding: 0 20px; }
  .assure-item { padding: 24px 20px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-media video, .hero-media img { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
