/* ===========================================================
   Dual Force Coaching — Landing Page
   Clean & minimal · Black on white · Purple accents
   =========================================================== */

:root {
  --black: #0a0a0b;
  --ink: #16161a;
  --grey-900: #1f1f23;
  --grey-600: #5a5a63;
  --grey-400: #9a9aa3;
  --grey-200: #e6e6ea;
  --grey-100: #f4f4f6;
  --white: #ffffff;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --purple-soft: #f3eeff;

  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-head: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }

::selection { background: var(--purple); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 0.8em; transition: transform .35s var(--ease); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

.btn-primary { background: var(--black); color: #fff; }
.btn-primary:hover { background: var(--purple); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124,58,237,.32); }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--grey-200); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; letter-spacing: 0.02em; }
.brand-mark::after { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--purple); margin-left: 4px; vertical-align: super; }
.brand-full { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey-600); font-weight: 600; margin-top: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  border-color: var(--grey-200);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  font-size: 0.9rem; font-weight: 600; color: var(--grey-600); position: relative;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--purple); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-dark); background: var(--purple-soft);
  padding: 7px 15px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,.5); } 70% { box-shadow: 0 0 0 8px rgba(124,58,237,0); } }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 22px 0; }
.hero h1 .accent { color: var(--purple); }
.hero-sub { font-size: 1.12rem; color: var(--grey-600); max-width: 520px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 40px; }

.hero-trust { display: flex; gap: 38px; padding-top: 28px; border-top: 1px solid var(--grey-200); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; }
.hero-trust span { font-size: 0.82rem; color: var(--grey-600); }

.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(10,10,11,.5); }
.hero-frame img { width: 100%; height: 600px; object-fit: cover; }
.hero-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); pointer-events: none; }
.hero-badge {
  position: absolute; bottom: 22px; left: 22px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  padding: 14px 18px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-badge i { color: var(--purple); font-size: 1.3rem; }
.hero-badge span { font-size: 0.82rem; font-weight: 700; line-height: 1.25; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--grey-200);
  display: grid; place-items: center; color: var(--grey-600);
  animation: bob 2s infinite var(--ease);
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 16px;
}
.kicker-light { color: #b794ff; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-lead { margin-top: 18px; color: var(--grey-600); font-size: 1.08rem; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.about-body p { font-size: 1.1rem; color: var(--grey-600); margin-bottom: 20px; }
.about-body strong { color: var(--ink); }

/* Dark section */
.section-dark { background: var(--black); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-lead { color: var(--grey-400); }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.compare-card { border-radius: var(--radius-lg); padding: 38px 34px; }
.compare-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-card li { display: flex; align-items: center; gap: 13px; font-size: 1.05rem; font-weight: 500; }
.compare-card li i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; flex-shrink: 0; }

.compare-old { background: var(--grey-900); }
.compare-old .compare-label { color: var(--grey-400); }
.compare-old li { color: var(--grey-400); }
.compare-old li i { background: rgba(255,255,255,.08); color: var(--grey-400); }

.compare-new { background: linear-gradient(160deg, var(--purple-dark), var(--purple)); position: relative; }
.compare-new .compare-label { color: rgba(255,255,255,.85); }
.compare-new li { color: #fff; }
.compare-new li i { background: rgba(255,255,255,.22); color: #fff; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.feature-card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: 0 24px 50px -28px rgba(124,58,237,.5); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--purple-soft); color: var(--purple-dark); font-size: 1.3rem; margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { color: var(--grey-600); font-size: 0.97rem; }


/* Coaches */
.section-soft {
    background: var(--grey-100);
}

.coaches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 56px auto 0;
    align-items: stretch;
}

.coach-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 18px;
    text-align: center;
    border: 1px solid var(--grey-200);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -34px rgba(10,10,11,.4);
}

.coach-photo {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 22px;
    background: #111;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform .6s var(--ease);
}

.coach-card:hover .coach-photo img {
    transform: scale(1.03);
}

.coach-card h3 {
    font-size: 1.35rem;
}

.coach-role {
    display: inline-block;
    color: var(--purple);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 6px 0 12px;
}

.coach-card p {
    color: var(--grey-600);
    font-size: .97rem;
    padding: 0 14px 14px;
    margin-top: auto;
}

/* CTA band */

.cta-band { position: relative; padding: 120px 0; background-size: cover; background-position: center; text-align: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,10,11,.92), rgba(109,40,217,.82)); }
.cta-inner { position: relative; color: #fff; max-width: 720px; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.12rem; margin: 18px 0 32px; }
.cta-band .btn-primary { background: #fff; color: var(--black); }
.cta-band .btn-primary:hover { background: var(--purple); color: #fff; }

/* Footer */
.site-footer { background: var(--black); color: #fff; padding: 70px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 340px; }
.footer-brand .brand-full { color: var(--grey-400); }
.footer-brand p { color: var(--grey-400); font-size: 0.95rem; margin-top: 16px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: flex-start; }
.footer-links a { color: var(--grey-400); font-weight: 600; font-size: 0.95rem; transition: color .25s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 26px; font-size: 0.85rem; color: var(--grey-400); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-frame img { height: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open { background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.05); }
  .nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 24px 24px; border-top: 1px solid var(--grey-200);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.2);
  }
  .nav.open a { padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid var(--grey-100); }
  .nav.open a::after { display: none; }
  .hero { padding: 130px 0 70px; }
  .hero-trust { gap: 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
}

/* FORCE hero logo to fit inside the right-hand card */
.hero-frame {
  height: 520px !important;
  min-height: 520px !important;
  padding: 40px !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-frame img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}