/* ========================
   RESET & BASE
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #29ABE2;
  --orange: #F7941D;
  --dark: #0F0F0F;
  --dark2: #171717;
  --white: #FFFFFF;
  --muted: #C5C1B9;
  --border: rgba(255,255,255,0.08);
  --cream: #1A1A1A;
  --ink: #111111;
  --ink-muted: #888888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #ccc;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 500;
}
.btn-outline-dark:hover { border-color: var(--ink); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-outline-light:hover { border-color: var(--white); }

/* ========================
   NAV
======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(15,15,15,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-logo-img { height: 28px; width: 28px; }

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

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.nav-cta-short { display: none; }
.nav-cta-full { display: inline; }

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}


.hero-content { padding: 60px 24px; position: relative; z-index: 1; }

.hero-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  display: block;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-accent {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* ========================
   LIGHT SECTION
======================== */
.section-light {
  background: #FFFFFF;
  padding: 100px 0;
}

.section-cream {
  background: var(--cream);
  padding: 100px 0;
}

.section-left { max-width: 720px; }

/* ========================
   LABELS & HEADLINES (light bg)
======================== */
.label-dark {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.headline-dark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 36px;
}

.body-muted {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 520px;
}

/* ========================
   DASH LIST (THE MOVEMENT)
======================== */
.dash-list { margin: 36px 0; }

.dash-item {
  font-size: 1.15rem;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid #e8e6e2;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.dash-item:first-child { border-top: 1px solid #e8e6e2; }

.divider {
  height: 1px;
  background: #e8e6e2;
  margin: 40px 0;
}

.closing-statement {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--ink);
  margin-top: 0;
}
.closing-statement span {
  color: var(--ink);
  font-weight: 400;
}

/* ========================
   NUMBERED LINES (THE PROBLEM)
======================== */
.numbered-lines { margin: 36px 0 32px; }

.numbered-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.numbered-line:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.num {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  min-width: 28px;
}

.line-bar {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.line-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.line-label.struck {
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.65);
  text-decoration-thickness: 1.5px;
}

.closing-bold {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

/* ========================
   TWO COLUMN (NOT LINKEDIN)
======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

.numbered-col-list { padding-top: 8px; }

.ncl-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e6e2;
}
.ncl-item:first-child { border-top: 1px solid #e8e6e2; }

.ncl-num {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
  min-width: 28px;
  padding-top: 2px;
}

.ncl-divider { display: none; }

.ncl-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

/* ========================
   PILLARS (PHILOSOPHY)
======================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; gap: 0; }
  .pillar {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .pillar:last-child { border-bottom: none; }
  .pillar-divider { display: none; }
}

.pillar-num {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.pillar-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.pillar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================
   AUDIENCE GRID
======================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 48px;
}

@media (max-width: 900px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.audience-item p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ========================
   WHAT YOU GET (dark alt)
======================== */
.section-dark-alt {
  background: var(--dark2);
  padding: 100px 0;
}

.label-light {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

@media (max-width: 768px) { .get-grid { grid-template-columns: 1fr; } }

.get-item {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.get-num {
  display: block;
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.get-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.get-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ========================
   CTA SECTION (BLUE)
======================== */
.section-blue {
  background: var(--blue);
  padding: 120px 0;
  text-align: center;
}

.headline-white {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.body-white {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input {
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 15px;
  width: 280px;
  max-width: 100%;
  outline: none;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s;
}
.email-input::placeholder { color: rgba(255,255,255,0.35); }
.email-input:focus { background: rgba(255,255,255,0.13); }

.hero-waitlist .email-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-tagline { color: var(--muted); font-size: 14px; }

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-copy { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ========================
   SUCCESS STATE
======================== */
.success-msg {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
}

/* ========================
   RESPONSIVE
======================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 12px 16px; }
  .nav-hamburger { display: flex; margin-left: auto; margin-right: 8px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link {
    padding: 14px 24px;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-logo span { font-size: 15px; }
  .nav .btn {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 20px;
    min-width: unset;
    width: auto;
  }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; text-align: center; }
  .waitlist-form { flex-direction: column; align-items: center; }
  .email-input { width: 100%; max-width: 320px; }
}
