/* ══════════════════════════════════════════════════════
   CLAY BOWER — ASCEND PROGRAM
   White theme · Milker font · Rounded shadow cards
   ══════════════════════════════════════════════════════ */

/* ── Font: Milker ──
   Download from: https://www.dafont.com/milker.font
   Place Milker.woff2 (and Milker.woff) in the fonts/ folder
   Until then, falls back to Georgia/serif
*/
@font-face {
  font-family: 'Milker';
  src: url('../fonts/Milker.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Design Tokens ── */
:root {
  --font-display: 'Milker', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;

  --white:      #ffffff;
  --off-white:  #f7f7f7;
  --bg:         #ffffff;
  --bg-alt:     #f7f7f7;

  --text:       rgba(0, 0, 0, 0.82);
  --text-muted: rgba(0, 0, 0, 0.42);
  --text-light: rgba(0, 0, 0, 0.28);
  --text-dark:  rgba(0, 0, 0, 0.92);

  --black:      #0a0a0a;
  --border:     rgba(0, 0, 0, 0.08);
  --border-mid: rgba(0, 0, 0, 0.12);

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 28px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.10);

  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  24px;

  --transition: 0.2s ease;
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: normal;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 20px;
}

.body-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
}

.section-pad { padding: 110px 56px; }
.section-pad-sm { padding: 80px 56px; }

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px 36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.03) translateY(-1px);
  filter: brightness(0.85);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.btn:active { transform: scale(0.99); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
  box-shadow: none;
}

.btn-ghost:hover {
  background: transparent;
  border-color: rgba(0,0,0,0.3);
  color: var(--black);
  box-shadow: none;
}

.btn-lg { padding: 18px 48px; font-size: 13px; }
.btn-full { display: flex; width: 100%; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Zoom reveal — sections/images scale up as they scroll into view */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-zoom.visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s, border-color 0.3s, box-shadow 0.3s;
}

#nav .nav-brand {
  justify-self: start;
}

#nav .nav-links {
  justify-self: center;
}

.nav-right {
  justify-self: end;
}

#nav.scrolled {
  padding: 14px 48px;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-creator {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: var(--black);
}

.nav-program {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: normal;
  color: var(--black);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--black); }

.nav-cta { padding: 10px 22px; font-size: 10px; border-radius: 100px; }

/* ══════════════════════════════════════════════════════
   HERO — Centered column layout
   ══════════════════════════════════════════════════════ */
#hero {
  background: var(--white);
  padding-top: 110px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: visible;
  position: relative;
}

.hero-left {
  max-width: 680px;
  padding: 56px 32px 52px;
  z-index: 2;
  position: relative;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  font-weight: normal;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  justify-content: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Hero photo — below the text, full-width centered */
.hero-right { display: none; }

.hero-transform-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Single merged before/after container */
.hero-transform-single {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
  box-shadow: var(--shadow-lg);
}

.hero-transform-half {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  /* enforce equal heights via aspect ratio on the whole container */
}

.hero-transform-half img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Thin white divider between halves */
.hero-transform-divider {
  width: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.65);
  z-index: 3;
}

.transform-label {
  position: absolute;
  top: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.88);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.transform-label-left  { left: 14px; }
.transform-label-right { right: 14px; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll-cue svg { width: 16px; }

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════
   ABOUT / BIO
   ══════════════════════════════════════════════════════ */
#about {
  background: var(--bg-alt);
  padding: 110px 56px;
}

.about-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #eee;
  aspect-ratio: 3/4;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  border: 2px dashed #ccc;
}

.about-photo-placeholder span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }

.about-content { padding: 8px 0; }

.about-content .section-title { margin-bottom: 6px; }

.about-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.about-content p { margin-bottom: 18px; }

.about-cta { margin-top: 32px; }

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--transition), transform var(--transition);
}

.social-pill:hover {
  border-color: rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   WHAT'S INSIDE — CARD GRID
   ══════════════════════════════════════════════════════ */
#inside {
  background: var(--white);
  padding: 110px 56px;
}

.inside-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.inside-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.inside-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.inside-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.inside-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.inside-card-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.inside-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.inside-card-desc {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
}

.inside-cta { text-align: center; }

/* ══════════════════════════════════════════════════════
   HOW I THINK ABOUT FITNESS
   ══════════════════════════════════════════════════════ */
#philosophy {
  background: var(--bg-alt);
  padding: 110px 56px;
}

.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
}

.philosophy-inner .section-title { margin-bottom: 32px; }

.philosophy-inner .body-text { margin-bottom: 20px; }

.philosophy-quote {
  margin: 48px 0;
  padding: 40px 48px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--black);
}

.philosophy-quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.philosophy-quote-attr {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   PHONE MOCKUP (App UI preview)
   ══════════════════════════════════════════════════════ */
#app-preview {
  background: var(--black);
  padding: 110px 56px;
  overflow: hidden;
}

.app-preview-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}

.app-preview-text .eyebrow { color: rgba(255,255,255,0.42); }
.app-preview-text .section-title { color: rgba(255,255,255,0.92); }
.app-preview-text .body-text { color: rgba(255,255,255,0.58); margin-bottom: 16px; }
.app-preview-text .btn { background: var(--white); color: var(--black); }
.app-preview-text .btn:hover { filter: brightness(0.92); }

.app-feature-list {
  list-style: none;
  margin: 32px 0 40px;
}

.app-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.app-feature-list li:last-child { border-bottom: none; }

.app-feature-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

/* Phone frame */
.phone-frame {
  width: 280px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 16px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 32px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.phone-notch {
  width: 90px;
  height: 26px;
  background: #111;
  border-radius: 14px;
  margin: 0 auto 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-notch::before {
  content: '';
  width: 10px; height: 10px;
  background: #222;
  border-radius: 50%;
  border: 1px solid #333;
}

.phone-screen {
  background: #f5f5f5;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
}

.phone-screen-header {
  background: var(--white);
  padding: 16px 18px 12px;
  border-bottom: 1px solid #eee;
}

.phone-screen-logo {
  font-family: var(--font-display);
  font-size: 16px;
  color: #111;
}

.phone-screen-tagline {
  font-size: 9px;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}

.phone-module-list { padding: 12px; }

.phone-module {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.phone-module-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.phone-module-info {}
.phone-module-title { font-size: 11px; font-weight: 700; color: #111; margin-bottom: 2px; }
.phone-module-sub { font-size: 9px; color: #999; }

.phone-module-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 12px;
}

.phone-screen-footer {
  padding: 8px 12px 16px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  background: white;
}

.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: #bbb;
}

.phone-tab.active { color: #111; }
.phone-tab-icon { font-size: 16px; }

/* ══════════════════════════════════════════════════════
   BEFORE/AFTER CAROUSEL
   ══════════════════════════════════════════════════════ */
#results {
  background: var(--bg-alt);
  padding: 110px 0;
}

.results-header {
  text-align: center;
  padding: 0 56px;
  margin-bottom: 56px;
}

.carousel-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 16px 56px;
  width: max-content;
  animation: scroll-carousel 50s linear infinite;
}

.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll-carousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.result-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.result-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 320px;
  position: relative;
}

.result-photos::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.15);
}

.result-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-photo-placeholder {
  height: 100%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-label {
  position: absolute;
  top: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  background: rgba(255,255,255,0.85);
  padding: 3px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.result-label.before { left: 8px; }
.result-label.after  { right: 8px; }

.result-info {
  padding: 16px 18px;
}

.result-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.result-stat {
  font-size: 11px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
#testimonials {
  background: var(--white);
  padding: 110px 0;
}

.testimonials-header {
  text-align: center;
  padding: 0 56px;
  margin-bottom: 56px;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  padding: 16px 56px 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track.dragging { cursor: grabbing; user-select: none; }

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 28px 28px 28px;
}

.testimonial-stars {
  font-size: 13px;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
  object-fit: cover;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.testimonial-handle { font-size: 11px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   FINAL CTA BAND
   ══════════════════════════════════════════════════════ */
#cta-band {
  background: var(--black);
  padding: 100px 56px;
  text-align: center;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  color: rgba(255,255,255,0.92);
  line-height: 1;
  margin-bottom: 32px;
}

.cta-band-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-band .btn { background: var(--white); color: var(--black); }
.cta-band .btn:hover { filter: brightness(0.92); }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
#faq {
  background: var(--bg-alt);
  padding: 110px 56px;
}

.faq-inner {
  max-width: 680px;
  margin: 56px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--black); }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 17px;
  transition: transform var(--transition), border-color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--black);
  color: var(--black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 260px; }

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 56px 32px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-logo-wrap .nav-creator { margin-bottom: 2px; }

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-alt);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-mid);
  transition: border-color var(--transition), transform var(--transition);
}

.footer-social:hover {
  border-color: rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a { color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--black); }

/* ══════════════════════════════════════════════════════
   CHECKOUT PAGE (checkout.html)
   ══════════════════════════════════════════════════════ */
.checkout-page {
  background: var(--bg-alt);
  min-height: 100vh;
  padding-top: 88px;
}

.checkout-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 64px 56px;
  text-align: center;
}

.checkout-hero .eyebrow { margin-bottom: 10px; }

.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  color: var(--black);
  line-height: 1;
  margin-bottom: 16px;
}

.checkout-price-display {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 10px;
}

.checkout-note {
  font-size: 13px;
  color: var(--text-muted);
}

.checkout-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  gap: 24px;
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 36px 40px;
}

.checkout-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.checkout-feature-list {
  list-style: none;
}

.checkout-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.checkout-feature-list li:last-child { border-bottom: none; }

.checkout-check {
  width: 22px; height: 22px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkout-check svg { width: 11px; fill: white; }

.checkout-cta-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.checkout-cta-card .checkout-card-title {
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.checkout-cta-price {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 6px;
}

.checkout-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

.checkout-cta-card .btn {
  background: var(--white);
  color: var(--black);
  padding: 18px 56px;
  font-size: 13px;
}

.checkout-cta-card .btn:hover { filter: brightness(0.92); }

.checkout-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  line-height: 1.7;
}

.checkout-legal {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
}

.checkout-legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════
   THANK YOU PAGE (thankyou.html)
   ══════════════════════════════════════════════════════ */
.thankyou-page {
  background: var(--bg-alt);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px 60px;
}

.thankyou-badge {
  width: 64px; height: 64px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  color: white;
}

.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  color: var(--black);
  text-align: center;
  margin-bottom: 10px;
}

.thankyou-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
}

.thankyou-card {
  max-width: 600px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.thankyou-card-header {
  padding: 24px 36px;
  border-bottom: 1px solid var(--border);
}

.thankyou-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 28px 36px 0;
}

.thankyou-video-list { list-style: none; }

.thankyou-video-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 36px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.thankyou-video-item:last-child { border-bottom: none; }
.thankyou-video-item:hover { background: var(--bg-alt); }

.thankyou-video-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.thankyou-video-info { flex: 1; }
.thankyou-video-title { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.thankyou-video-desc { font-size: 11px; color: var(--text-muted); }

.thankyou-video-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  padding: 7px 14px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.thankyou-video-link:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.thankyou-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 36px 28px;
}

.thankyou-extra {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.thankyou-extra:hover { border-color: rgba(0,0,0,0.2); transform: translateY(-2px); }

.thankyou-extra-icon { font-size: 20px; margin-bottom: 8px; }
.thankyou-extra-name { font-size: 12px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.thankyou-extra-desc { font-size: 11px; color: var(--text-muted); }

.thankyou-support {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.thankyou-support a { color: var(--black); font-weight: 600; }

#access-denied {
  display: none;
  text-align: center;
  max-width: 480px;
}

#access-denied .thankyou-title { margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links li:not(:last-child) { display: none; }

  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 0;
    min-height: auto;
  }

  .hero-right { display: none; }
  .hero-left { padding-right: 0; padding-bottom: 60px; }
  .hero-stats { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-card { max-width: 360px; aspect-ratio: 1/1; }

  .inside-grid { grid-template-columns: 1fr 1fr; }

  .app-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-frame { display: none; }

  .section-pad, #about, #inside, #philosophy, #app-preview,
  #results, #testimonials, #faq, #cta-band, footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .results-header, .testimonials-header { padding: 0 24px; }
  .carousel-track { padding: 16px 24px; }
  .testimonials-track { padding: 16px 24px 32px; }

  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .checkout-body { padding: 40px 16px; }
  .checkout-hero { padding: 48px 24px; }
  .checkout-card { padding: 28px 24px; }

  .thankyou-extras { grid-template-columns: 1fr; }
  .thankyou-section-label, .thankyou-video-item { padding-left: 24px; padding-right: 24px; }
  .thankyou-extras { padding: 0 24px 24px; }
  .thankyou-card-header { padding: 20px 24px; }
}

@media (max-width: 600px) {
  .inside-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
}
