/* ══════════════════════════════════════════════════════
   MAKER MODE V2 — Pre-launch condensed site
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --clr-hero: #3730A3;
  --clr-hero-mid: #4338CA;
  --clr-hero-text: #FFFFFF;
  --clr-hero-sub: rgba(255, 255, 255, 0.80);

  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-cta-band: #EEF0FB;
  --bg-waitlist: #1E1B4B;

  --clr-text: #1E293B;
  --clr-text-2: #475569;
  --clr-text-3: #94A3B8;

  --clr-accent: #10B981;
  --clr-accent-dark: #059669;
  --clr-accent-text: #FFFFFF;

  --clr-border: rgba(0, 0, 0, 0.07);
  --clr-border-med: rgba(0, 0, 0, 0.12);

  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-btn: 0 1px 3px rgba(16, 185, 129, 0.3);
  --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.06);

  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 9999px;
  --radius-input: 8px;

  --max-w: 1060px;
  --nav-h: 60px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
}

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

em {
  font-style: italic;
}

/* ── Typography helpers ──────────────────────────────── */
.highlight-green {
  color: var(--clr-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-accent-text);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-attach {
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  padding: 0 24px;
}

.btn-outline {
  background: transparent;
  color: var(--clr-hero-text);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

/* ── Announce Bar ────────────────────────────────────── */
.announce-bar {
  background: var(--clr-hero);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}

.announce-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.announce-check {
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 13px;
}

.announce-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  background: var(--clr-hero);
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.25s;
}

.nav.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--clr-hero);
  flex-shrink: 0;
}

.nav-brand-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-hero-text);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  padding-left: 24px;
}

.nav-links-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  transition: color 0.15s;
}

.nav-links-desktop a:hover {
  color: #fff;
}

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

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-hero-text);
  padding: 4px;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-hero);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.nav.is-open .nav-overlay {
  display: flex;
  opacity: 1;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  padding: 24px;
}

.nav-mobile-links a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-hero-text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.3s ease both;
  animation-delay: var(--delay, 0s);
  text-decoration: none;
}

.nav-mobile-links a:last-child {
  border-bottom: none;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero ────────────────────────────────────────────── */
.section-hero {
  background: var(--clr-hero);
  padding: 56px 24px 100px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: -48px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--clr-hero-text);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--clr-hero-sub);
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.7;
}

/* Beehiiv embed wrapper */
.beehiiv-wrap {
  max-width: 460px;
  margin-bottom: 18px;
}

.beehiiv-wrap iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 52px;
  border: none;
  border-radius: var(--radius-input);
  background-color: transparent;
}

.beehiiv-waitlist {
  max-width: 480px;
  margin: 0 auto 18px;
}

.beehiiv-waitlist iframe {
  height: 52px;
}

/* Hero proof line */
.hero-proof-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.hero-proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Hero Visual Card ────────────────────────────────── */
.hero-visual {
  flex-shrink: 0;
  position: relative;
}

.visual-card {
  background: #1E1B4B;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-header {
  background: #2E2B5F;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.visual-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.visual-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 8px;
  flex: 1;
}

.visual-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.6;
}

.visual-prompt {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--clr-accent);
  width: 100%;
}

.visual-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0;
}

.visual-result {
  color: #34D399;
  font-weight: 600;
  font-size: 13.5px;
}

.visual-check {
  font-weight: 700;
  flex-shrink: 0;
}

.visual-time {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 4px;
}

.visual-badge {
  position: absolute;
  bottom: -14px;
  right: 14px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

/* ── Problem / Bridge ────────────────────────────────── */
.section-problem {
  background: var(--bg-page);
  padding: 88px 24px 56px;
  position: relative;
  z-index: 0;
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-inner > h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 32px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.problem-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--clr-border);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--clr-text);
}

.problem-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-card li {
  font-size: 14px;
  color: var(--clr-text-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.problem-wrong li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--clr-text-3);
  font-weight: 700;
}

.problem-right li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

.problem-right {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, var(--bg-white) 100%);
}

/* ── What You'll Learn ───────────────────────────────── */
.section-learn {
  background: var(--bg-page);
  padding: 56px 24px;
  border-top: 1px solid var(--clr-border);
}

.learn-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.learn-inner > h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 10px;
}

.learn-sub {
  font-size: 15.5px;
  color: var(--clr-text-2);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.learn-card {
  background: var(--bg-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.learn-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.learn-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--clr-accent);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.learn-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-text);
}

.learn-card p {
  font-size: 13.5px;
  color: var(--clr-text-2);
  line-height: 1.65;
  max-width: 340px;
}

/* ── Consulting CTA ─────────────────────────────────── */
.section-consulting {
  background: var(--bg-page);
  padding: 56px 24px;
  border-top: 1px solid var(--clr-border);
}

.consulting-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.consulting-text > h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 14px;
}

.consulting-text p {
  font-size: 15.5px;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}

.consulting-card {
  background: #1E1B4B;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

.consulting-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.consulting-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.consulting-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.consulting-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.consulting-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

.consulting-card .btn {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
}

/* ── Waitlist CTA ────────────────────────────────────── */
.section-waitlist {
  background: var(--bg-waitlist);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.section-waitlist::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-waitlist::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 0.02em;
}

.section-waitlist h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 900;
  color: var(--clr-hero-text);
}

.waitlist-sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  line-height: 1.7;
}


.waitlist-features {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.wf-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.wf-check {
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 12px;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--bg-page);
  border-top: 1px solid var(--clr-border);
  padding: 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  background: var(--clr-hero);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.footer-brand .nav-brand-name {
  color: var(--clr-text);
  font-size: 14px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--clr-text-3);
  transition: color 0.15s;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  color: var(--clr-text-3);
  transition: color 0.15s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--clr-text);
}

.footer-copy {
  max-width: var(--max-w);
  margin: 16px auto 0;
  font-size: 12px;
  color: var(--clr-text-3);
  text-align: center;
}

/* ── Reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .section-hero {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding-bottom: 80px;
  }

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

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

  .consulting-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .announce-bar {
    gap: 12px;
    padding: 8px 16px;
  }

  .announce-item:nth-child(3) {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .waitlist-features {
    gap: 16px;
  }
}
