/* ============================================================
   UNLOCKED FOUNDERS — styles.css
   Design system: anthonysandi.com
   Colors: #1a1a1a bg | #DDECCC accent | #FF4438 red | #fff fg
   Fonts: Anton (display) | Inter (body)
   ============================================================ */

/* -------------------------
   Reset & Base
-------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #1a1a1a;
  --bg-surface:   #232323;
  --bg-card:      #1a1a1a;
  --bg-footer:    #181818;
  --fg:           #ffffff;
  --accent:       #DDECCC;
  --accent-dim:   rgba(221, 236, 204, 0.12);
  --accent-hover: #c8ddb5;
  --red:          #FF4438;
  --muted:        #a0a0a0;
  --border:       rgba(255, 255, 255, 0.06);
  --border-hover: rgba(221, 236, 204, 0.2);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.4);
  --max-w:        1152px;
  --px:           clamp(1.25rem, 5vw, 2.5rem);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Font display */
.font-display,
h1, h2, h3, .nav__logo, .stat__number,
.protocol-card__num, .timeline__title,
.hiw__card-title, .founder__headline,
.footer__logo {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* -------------------------
   Utilities
-------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.text-accent { color: var(--accent); }
.text-red    { color: var(--red); }

/* -------------------------
   Scroll Reveal
-------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* -------------------------
   Buttons
-------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  border: none;
}

.btn--accent {
  background: var(--accent);
  color: var(--bg);
}
.btn--accent:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

.btn--sm  { font-size: 0.8rem; padding: 0.55rem 1.25rem; }
.btn--lg  { font-size: 1rem;   padding: 1.1rem 2.5rem; }
.btn--xl  { font-size: 1.15rem; padding: 1.35rem 3rem; border-radius: var(--radius-md); }

@media (max-width: 480px) {
  .btn--xl { font-size: 1rem; padding: 1.1rem 2rem; }
}

/* CTA pulse glow */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(221, 236, 204, 0.2), 0 8px 32px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 48px rgba(221, 236, 204, 0.4), 0 8px 32px rgba(0,0,0,0.3); }
}
.cta-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* -------------------------
   Video Container
-------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------
   Badge dot
-------------------------- */
.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* -------------------------
   NAV
-------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
  padding: 1.25rem 0;
}
.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: 0.15em;
  color: var(--fg);
  text-transform: uppercase;
}

/* -------------------------
   HERO
-------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #1a1a1a 0%,
    rgba(26, 26, 26, 0.9) 45%,
    rgba(26, 26, 26, 0.55) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero__content {
  max-width: 680px;
}

.hero__eyebrow {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: var(--fg);
}

.hero__subtext {
  max-width: 540px;
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero__subtext strong { color: var(--fg); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}
.hero__badge strong { color: var(--fg); }

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero__cta-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* -------------------------
   STATS BAR
-------------------------- */
.stats-bar {
  background: var(--accent);
  padding: 2.25rem 0;
}

.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 130px;
}

.stat__number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--bg);
  text-transform: uppercase;
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(26, 26, 26, 0.65);
  margin-top: 0.3rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 26, 26, 0.2);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-bar__grid { gap: 1.5rem; justify-content: center; }
  .stat { min-width: 45%; flex: none; }
}

/* -------------------------
   SECTION SHARED
-------------------------- */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section__eyebrow {
  font-family: 'Anton', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__heading {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--fg);
}

.section__subhead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section__subhead strong { color: var(--fg); }

/* -------------------------
   WHO THIS IS FOR
-------------------------- */
.who { background: var(--bg); }

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.criteria-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.25s ease;
}
.criteria-card:hover {
  border-color: var(--border-hover);
}

.criteria-card__check {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.criteria-card__check svg { width: 100%; height: 100%; }

.criteria-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.criteria-card strong { color: var(--fg); }

/* -------------------------
   PROBLEM
-------------------------- */
.problem { background: var(--bg-surface); }

.problem__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(221,236,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.problem__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .problem__content { grid-template-columns: 1fr; gap: 2.5rem; }
}

.problem__lead {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem__text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.problem__text strong { color: var(--fg); }

/* Gap visual */
.gap-visual { display: flex; flex-direction: column; gap: 1.25rem; }

.gap-visual__row { display: flex; flex-direction: column; gap: 0.5rem; }

.gap-visual__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.gap-visual__bar {
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.gap-visual__fill {
  height: 100%;
  width: var(--w);
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: left;
}

@keyframes barGrow {
  from { width: 0; opacity: 0; }
  to   { width: var(--w); opacity: 1; }
}

.gap-visual__bar--accent .gap-visual__fill {
  background: var(--accent);
  color: var(--bg);
}
.gap-visual__bar--red .gap-visual__fill {
  background: var(--red);
  color: var(--fg);
}

.gap-visual__caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* -------------------------
   SOLUTION / PROTOCOL
-------------------------- */
.solution { background: var(--bg); }

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.protocol-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.protocol-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.protocol-card__num {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.protocol-card__title {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.protocol-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.solution__cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* -------------------------
   TRANSFORMATION TIMELINE
-------------------------- */
.transformation { background: var(--bg-surface); }

.transformation__glow {
  position: absolute;
  top: 40%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(221,236,204,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(221,236,204,0.15);
  margin-top: 5px;
}

.timeline__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 0.5rem;
}

.timeline__week {
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.timeline__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.timeline__tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.timeline__tag--accent {
  background: rgba(221,236,204,0.1);
  border-color: rgba(221,236,204,0.3);
  color: var(--accent);
}

/* -------------------------
   HOW IT WORKS
-------------------------- */
.hiw { background: var(--bg); }

.hiw__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.hiw__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.hiw__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.hiw__card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hiw__card-icon svg { width: 100%; height: 100%; }

.hiw__card-title {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.hiw__card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* -------------------------
   WHY DIFFERENT — COMPARISON
-------------------------- */
.why { background: var(--bg-surface); }

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 680px) {
  .comparison {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }
  .comparison__vs {
    padding: 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
}

.comparison__col {
  padding: 2.5rem 2rem;
}

.comparison__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.comparison__header h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.comparison__header--accent h3 { color: var(--accent); }

.comparison__col--others {
  border-right: 1px solid var(--border);
}
@media (max-width: 680px) {
  .comparison__col--others { border-right: none; }
}

.comparison__col--unlocked {
  background: rgba(221, 236, 204, 0.03);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.comparison__icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-style: normal;
  font-weight: 700;
}
.comparison__icon--no  { color: var(--red); }
.comparison__icon--yes { color: var(--accent); }

.comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
@media (max-width: 680px) {
  .comparison__vs { writing-mode: horizontal-tb; }
}

/* -------------------------
   TESTIMONIALS
-------------------------- */
.testimonials { background: var(--bg-surface); }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
}

.testimonial-card__result {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to right, rgba(221,236,204,0.06), transparent);
}

.testimonial-card__number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1;
}

.testimonial-card__subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.35rem;
}

.testimonial-card__info {
  padding: 1rem 1.25rem;
}

.testimonial-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.testimonial-card__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(221,236,204,0.55);
  transition: color 0.2s ease;
}
.testimonial-card__social:hover { color: var(--accent); }

/* -------------------------
   FOUNDER
-------------------------- */
.founder { background: var(--bg); }

.founder__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.founder__portrait-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.founder__portrait-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(221,236,204,0.12);
}

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

.founder__headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}

.founder__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.founder__body strong { color: var(--fg); }

.founder__attribution {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* -------------------------
   FINAL CTA SECTION
-------------------------- */
.cta-section { background: var(--bg-surface); }

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(221,236,204,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__heading {
  margin-top: 0.5rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.cta-section__subhead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section__list {
  text-align: left;
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.cta-section__list-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-section__list ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cta-section__list ul li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.cta-section__list ul li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.cta-section__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.cta-section__note strong { color: var(--fg); }

/* -------------------------
   FOOTER
-------------------------- */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}

.footer__brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer__logo {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--fg);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(221,236,204,0.6);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--accent); }

.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.footer__disclaimer {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__disclaimer p {
  font-size: 0.68rem;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

/* -------------------------
   Responsive tweaks
-------------------------- */
@media (max-width: 480px) {
  .hero__headline { font-size: 2.75rem; }
  .criteria-grid { grid-template-columns: 1fr; }
  .protocol-grid { grid-template-columns: 1fr; }
  .hiw__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .comparison__col { padding: 1.75rem 1.25rem; }
}
