/* ═══════════════════════════════════════════════════════════
   mattchristou.com · Landing Page
   Design tokens pulled from ~/.claude/carousel-templates/style.css
   Brand: Black / White / Salmon coral (#E8615D)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Colors · locked BLC palette */
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --bg-card: #0d0d0d;
  --white: #FFFFFF;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-03: rgba(255, 255, 255, 0.03);
  --gray: #A0AEC0;
  --gray-dark: #4A5568;
  --accent: #E8615D;
  --accent-bright: #F07470;
  --accent-glow: rgba(232, 97, 93, 0.20);
  --accent-soft: rgba(232, 97, 93, 0.10);

  /* Spacing */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

/* ── Top accent bar (matches carousel) ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 40%, transparent 80%);
  z-index: 100;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-4) var(--s-4) 0;
  position: relative;
  z-index: 5;
}
.nav-brand {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.nav-logo {
  height: 42px;
  width: auto;
  opacity: 0.95;
}
.nav-links { display: flex; gap: var(--s-5); }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 0 0 var(--s-6);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,97,93,0.25) 0%, rgba(232,97,93,0.10) 30%, rgba(232,97,93,0.03) 55%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-6);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-7) var(--s-4) var(--s-6);
}

.hero-copy { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(232,97,93,0.2);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: var(--s-4);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-headline {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: var(--s-4);
}
.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--white-70);
  margin-bottom: var(--s-5);
  max-width: 580px;
}

/* ── Signup form ── */
.signup-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin-bottom: var(--s-2);
}
.signup-input {
  flex: 1;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-12);
  border-radius: 12px;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}
.signup-input::placeholder { color: var(--white-50); }
.signup-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.signup-button {
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 12px;
  box-shadow: 0 8px 32px var(--accent-glow), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.signup-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.4);
}
.signup-button:active { transform: translateY(0); }

.signup-microproof {
  font-size: 13px;
  color: var(--white-50);
  margin-top: var(--s-2);
}

/* ── Hero image ── */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 110%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.10) 30%, rgba(255,255,255,0.03) 55%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.hero-headshot {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.12)) drop-shadow(0 20px 60px rgba(0,0,0,0.8));
}

.hero-signature {
  position: absolute;
  top: 30%;
  left: 74%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 18px;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(10,10,10,0.75) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.5),
    0 1px 0 rgba(255,255,255,0.08) inset;
}
.hero-signature::before {
  content: '';
  width: 3px;
  align-self: stretch;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--accent-glow);
}
.hero-signature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero-signature-name {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.hero-signature-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--white-70);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Client logos (inside About section) ── */
.about-clients {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--white-06);
  text-align: center;
}
.about-clients-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-dark);
  margin-bottom: var(--s-4);
}
.about-clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-6);
}
.client-logo {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}
.client-logo--square { height: 44px; }
.client-logo:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: var(--s-8) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: var(--s-2);
}

.section-headline {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--s-3);
  max-width: 900px;
}
.section-headline .accent { color: var(--accent); }

.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--white-70);
  max-width: 720px;
  margin-bottom: var(--s-5);
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════════ */
.problem {
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 50%, transparent 100%);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-5);
}
.problem-grid p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--white-70);
  padding-left: var(--s-3);
  border-left: 2px solid var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   SYSTEMS GRID
   ═══════════════════════════════════════════════════════════ */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.system-card {
  position: relative;
  display: block;
  padding: var(--s-5) var(--s-4);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  color: inherit;
  overflow: hidden;
}
.system-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-10), transparent);
}

/* ── Free card (Facebook Group) ── */
.system-card--free {
  border-color: rgba(232,97,93,0.22);
  background: linear-gradient(135deg, rgba(232,97,93,0.07) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 8px 32px var(--accent-soft);
}
.system-card--free:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 48px var(--accent-glow), 0 0 0 1px rgba(232,97,93,0.3);
}

/* ── Locked card (Skool) ── */
.system-card--locked {
  background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
}
.system-card--locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.system-card--locked:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ── Badge (Free / Members only) ── */
.system-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.system-badge--free {
  color: var(--accent-bright);
  background: rgba(232,97,93,0.12);
  border: 1px solid rgba(232,97,93,0.28);
}
.system-badge--locked {
  color: #C9A84C;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.3);
}
.lock-icon {
  display: inline-block;
  vertical-align: middle;
}

.system-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.system-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(232,97,93,0.35);
}
.system-reviews {
  font-size: 12px;
  font-weight: 700;
  color: var(--white-50);
  letter-spacing: 0.3px;
}
.system-card--locked .system-stars {
  color: rgba(232,97,93,0.75);
  text-shadow: none;
}
.system-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
}
.system-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-70);
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.system-cta {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}
.system-cta--free { color: var(--accent); }
.system-cta--locked { color: var(--white-50); }

/* Locked card text slightly dimmer to reinforce the gate */
.system-card--locked h3 { color: var(--white-90); }
.system-card--locked p { color: var(--white-50); }

/* ═══════════════════════════════════════════════════════════
   LEAD MAGNET
   ═══════════════════════════════════════════════════════════ */
.lead-magnet {
  position: relative;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(232,97,93,0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.lead-magnet-card {
  position: relative;
  padding: var(--s-7) var(--s-6);
  border-radius: 32px;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white-12);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 1px 0 rgba(255,255,255,0.08) inset;
}

.lead-magnet-bullets {
  margin: var(--s-4) 0 var(--s-5);
  display: grid;
  gap: 14px;
}
.lead-magnet-bullets li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white-90);
  padding-left: 28px;
  position: relative;
}
.lead-magnet-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 50%, transparent 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-6);
  align-items: center;
}
.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.02) 55%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}
.about-headshot {
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.12)) drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}
.about-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--white-70);
  margin-bottom: var(--s-3);
}
.about-copy p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   COMMUNITY
   ═══════════════════════════════════════════════════════════ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.community-card {
  display: block;
  padding: var(--s-5) var(--s-4);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.community-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(232,97,93,0.06) 0%, rgba(255,255,255,0.01) 100%);
}
.community-icon {
  margin-bottom: var(--s-3);
  color: var(--white-70);
  transition: color 0.2s ease;
}
.community-card:hover .community-icon { color: var(--accent); }
.community-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: var(--s-2);
}
.community-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--white-70);
  margin-bottom: var(--s-3);
}
.community-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: var(--s-6) 0 var(--s-5);
  border-top: 1px solid var(--white-06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
}
.footer-logo {
  height: 36px;
  opacity: 0.6;
  margin-bottom: var(--s-1);
}
.footer-tagline {
  font-size: 14px;
  color: var(--white-50);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  font-size: 13px;
  color: var(--white-50);
}
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-dot { color: var(--white-20); }
.footer-copyright {
  font-size: 12px;
  color: var(--gray-dark);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 680px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .signup-form { margin-left: auto; margin-right: auto; }
  .hero-image {
    order: -1;
    margin-bottom: var(--s-3);
    flex-direction: column;
    align-items: center;
  }
  .hero-headshot { max-width: 300px; }
  .hero-signature {
    position: relative;
    top: auto;
    left: auto;
    justify-content: center;
    margin-top: var(--s-2);
  }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .community-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-headshot { margin: 0 auto; max-width: 260px; }
}

@media (max-width: 640px) {
  :root { --s-7: 48px; --s-8: 64px; }
  .section { padding: var(--s-7) 0; }
  .hero-inner { padding: var(--s-4) var(--s-4) var(--s-3); gap: var(--s-3); }
  .nav-links { display: none; }
  .nav-logo { height: 32px; }
  .eyebrow-dot { display: none; }
  .eyebrow { padding: 8px 16px; font-size: 11px; letter-spacing: 2px; }
  .hero-image { margin-bottom: var(--s-2); }
  .hero-headshot { max-width: 260px; }
  .hero-signature {
    position: relative;
    top: auto;
    left: auto;
    justify-content: center;
    margin-top: var(--s-1);
    padding: 10px 16px 10px 12px;
    gap: 10px;
  }
  .hero-signature-name { font-size: 16px; }
  .hero-signature-title { font-size: 8px; letter-spacing: 1.5px; }
  .hero-headline { letter-spacing: -1.5px; font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: 16px; margin-bottom: var(--s-3); }
  .signup-form { flex-direction: column; }
  .signup-button { width: 100%; }
  .systems-grid { grid-template-columns: 1fr; }
  .lead-magnet-card { padding: var(--s-5) var(--s-4); }
  .about-clients-logos { gap: var(--s-4); }
  .client-logo { height: 28px; }
  .client-logo--square { height: 36px; }
}
