/* chrisgoodwyn x coaching — Main Stylesheet */

/* ========================================
   DESIGN TOKENS
   ======================================== */

:root {
  /* Brand Colors */
  --color-cyan:   #00C4E0;
  --color-purple: #9B5BF5;
  --color-pink:   #F03878;
  --color-red:    #EF4444;

  /* Gradient (background use only — NEVER on text) */
  --gradient-brand: linear-gradient(105deg, #00C4E0 0%, #9B5BF5 50%, #F03878 100%);

  /* Dark Neutrals */
  --color-dark:    #1C1C2E;
  --color-dark-2:  #2A2A40;
  --color-dark-3:  #3D3D58;
  --color-mid:     #6B6B85;
  --color-light:   #9898AA;
  --color-lighter: #C8C8D8;

  /* Light Neutrals */
  --color-surface:   #F7F6FC;
  --color-surface-2: #EEEDF5;
  --color-surface-3: #DDDCE8;

  /* Typography */
  --font-primary: 'Jost', sans-serif;

  --text-display:  clamp(40px, 6vw, 80px);
  --text-h1:       clamp(32px, 4vw, 56px);
  --text-h2:       clamp(28px, 3.5vw, 48px);
  --text-h3:       20px;
  --text-body-lg:  20px;
  --text-body:     18px;
  --text-body-sm:  16px;
  --text-label:    14px;
  --text-micro:    12px;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold: 600;
  --weight-bold:    700;
  --weight-black:   800;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  96px;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-pill: 20px;

  /* Borders */
  --border-subtle:   0.5px solid rgba(155, 91, 245, 0.12);
  --border-standard: 0.5px solid var(--color-surface-3);
  --border-dark:     0.5px solid rgba(255, 255, 255, 0.1);

  /* Layout */
  --nav-height: 64px;
  --container-max: 1200px;
}


/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: #fff;
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}


/* ========================================
   CONTAINER
   ======================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5vw;
}


/* ========================================
   NAVIGATION
   ======================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-subtle);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: var(--weight-medium);
  color: var(--color-mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links a:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  background: var(--color-dark);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--color-dark-3);
}


/* ========================================
   SECTION BASE
   ======================================== */

section {
  padding: var(--space-xl) 0;
}

.section-label {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-headline {
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 20px;
}

.section-body {
  font-size: var(--text-body);
  color: var(--color-mid);
  line-height: 1.7;
}


/* ========================================
   HERO
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-grad-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.hero-bg-orb {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 91, 245, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-orb2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 224, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-brand);
  padding: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scaleX(-1);
}

.hero-eyebrow {
  font-size: var(--text-micro);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: var(--text-display);
  font-weight: var(--weight-black);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 12px;
}

.hero-headline em {
  font-style: italic;
  font-weight: var(--weight-medium);
  color: var(--color-pink);
}

.hero-sub {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: var(--weight-regular);
  color: var(--color-light);
  max-width: 520px;
  margin: 20px 0 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--color-pink);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: opacity 0.2s;
  font-family: var(--font-primary);
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-pink);
  outline-offset: 4px;
}

.btn-ghost {
  color: var(--color-lighter);
  border: 1px solid rgba(200, 200, 216, 0.5);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(200, 200, 216, 0.6);
}

.btn-ghost:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 4px;
}

.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 5vw;
  background: rgba(255, 255, 255, 0.06);
  border: var(--border-dark);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22D37A;
  flex-shrink: 0;
}

.badge-text {
  font-size: var(--text-label);
  color: var(--color-lighter);
}

.badge-text strong {
  color: #fff;
  font-weight: var(--weight-semibold);
  display: block;
}


/* ========================================
   TENSION
   ======================================== */

.tension {
  background: var(--color-surface);
}

.tension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.tension .section-label {
  color: var(--color-purple);
}

.tension-quote {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.tension-quote span {
  color: var(--color-purple);
  font-style: italic;
}

.tension-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tension-list li {
  padding: 16px 20px;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid var(--color-cyan);
  font-size: var(--text-body-sm);
  color: var(--color-dark-3);
  line-height: 1.5;
}

.tension-list li strong {
  display: block;
  font-weight: var(--weight-semibold);
  color: var(--color-dark);
  margin-bottom: 3px;
}


/* ========================================
   HOW IT WORKS
   ======================================== */

.how {
  background: #fff;
}

.how .section-label {
  color: var(--color-cyan);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.how-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: var(--border-standard);
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.how-card.c1::before {
  background: var(--color-cyan);
}

.how-card.c2::before {
  background: var(--color-purple);
}

.how-card.c3::before {
  background: var(--color-pink);
}

.how-num {
  font-size: var(--text-micro);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.how-card.c1 .how-num {
  color: var(--color-cyan);
}

.how-card.c2 .how-num {
  color: var(--color-purple);
}

.how-card.c3 .how-num {
  color: var(--color-pink);
}

.how-title {
  font-size: var(--text-body-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
  color: var(--color-dark);
}

.how-desc {
  font-size: var(--text-body-sm);
  color: var(--color-mid);
  line-height: 1.65;
}


/* ========================================
   PACKAGES
   ======================================== */

.packages {
  background: var(--color-dark);
}

.packages .section-label {
  color: var(--color-purple);
}

.packages .section-headline {
  color: #fff;
}

.packages .section-body {
  color: var(--color-light);
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: var(--space-lg);
}

.pkg-card {
  background: var(--color-dark-2);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 0.5px solid rgba(155, 91, 245, 0.2);
  position: relative;
  overflow: hidden;
}

.pkg-name {
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 8px;
}

.pkg-subtitle {
  font-size: var(--text-body);
  font-style: italic;
  color: var(--color-light);
  margin-bottom: 16px;
}

.pkg-body {
  font-size: var(--text-body-sm);
  color: var(--color-lighter);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pkg-divider {
  border: none;
  border-top: var(--border-dark);
  margin: 20px 0;
}

.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pkg-list li {
  font-size: var(--text-body-sm);
  color: var(--color-lighter);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-list li::before {
  content: '→';
  color: var(--color-cyan);
  font-weight: var(--weight-semibold);
  flex-shrink: 0;
}

.pkg-footer {
  font-size: var(--text-body-sm);
  color: var(--color-light);
  line-height: 1.6;
  font-style: italic;
}

.pkg-cta-wrapper {
  margin-top: var(--space-lg);
  text-align: center;
}

.pkg-cta-main {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.pkg-cta-main:hover {
  opacity: 0.88;
}

.pkg-cta-main:focus-visible {
  outline: 2px solid var(--color-pink);
  outline-offset: 4px;
}


/* ========================================
   ABOUT
   ======================================== */

.about {
  background: #fff;
}

.about .section-label {
  color: var(--color-cyan);
  grid-column: 2;
}

.about .section-headline {
  grid-column: 2;
}

.about-grid {
  display: flex;
  justify-content: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0px;
  align-items: center;
  width: 100%;
}

.about-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 380px;
  grid-column: 1;
  grid-row: 1 / span 5;
}

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

.about-body {
  font-size: var(--text-body);
  color: var(--color-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  grid-column: 2;
}

.about-creds {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  grid-column: 2;
}

.cred {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: var(--text-label);
  color: var(--color-dark-3);
  font-weight: var(--weight-medium);
  border: var(--border-standard);
}

.cred strong {
  color: var(--color-purple);
  display: block;
  font-size: var(--text-body);
  font-weight: var(--weight-bold);
}


/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background: var(--color-surface);
}

.testimonials .section-label {
  color: var(--color-purple);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: var(--space-lg);
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: var(--border-standard);
  position: relative;
}

.testi-quote {
  font-size: 15px;
  color: var(--color-dark-3);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-quote::before {
  content: '\201C';
  color: var(--color-purple);
  font-size: 28px;
  font-style: normal;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 2px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-dark);
}

.testi-role {
  font-size: var(--text-label);
  color: var(--color-mid);
}


/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
  background: var(--color-dark);
  text-align: center;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-grad {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.07;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta .section-label {
  color: var(--color-cyan);
  display: block;
  margin-bottom: var(--space-sm);
}

.final-cta h2 {
  font-size: var(--text-h1);
  font-weight: var(--weight-black);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 auto 16px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--color-pink);
}

.final-cta p {
  font-size: var(--text-body);
  color: var(--color-light);
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.88;
}

.cta-btn:focus-visible {
  outline: 2px solid var(--color-pink);
  outline-offset: 4px;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
  background: #111120;
  padding: 40px 0;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 30px;
  width: auto;
}

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

.footer-links a {
  font-size: var(--text-label);
  color: var(--color-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-lighter);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-copy {
  font-size: var(--text-label);
  color: var(--color-mid);
  width: 100%;
  margin-top: 4px;
}


/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-image {
    display: none;
  }

  .tension-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about .section-label,
  .about .section-headline,
  .about-body,
  .about-creds {
    grid-column: auto;
  }

  .about-photo {
    max-width: 100%;
    width: 100%;
    margin: var(--space-md) 0;
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .hero-badge {
    position: static;
    margin-top: var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --nav-height: 56px;
  }

  .nav-links {
    display: none;
  }

  .nav-container {
    justify-content: center;
  }

  .logo-img {
    height: auto;
    width: 90%;
    max-width: 280px;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 0 40px;
    min-height: auto;
    position: relative;
  }

  .hero-badge {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 64px 0;
  }

  .about-photo {
    max-width: 240px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .footer-copy {
    margin-top: var(--space-sm);
  }
}
