/* ============================================================
   GET SHIT DONE HQ — Phase 3 Stylesheet
   Fonts: Bebas Neue (display) · Outfit (UI/body)
   Hero: Dark, centered, impactful (Phase 1)
   Sections: Bold, editorial, Orange ↔ White rhythm (Phase 2)
   ============================================================ */

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --orange: #ff5c00;
  --orange-hover: #ff8533;
  --orange-pale: #ffe8d6;
  --orange-light: rgba(255, 92, 0, 0.15);
  --midnight: #1e1e2e;
  --obsidian: #1a1a1a;
  --white: #ffffff;
  --cream: #f5f0eb;
  --green: #14b87a;
  --purple: #7c3aed;

  --font-display: "Bebas Neue", sans-serif;
  --font-ui: "Outfit", sans-serif;

  --max-w: 1200px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--obsidian);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Labels */
.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section__label--on-orange {
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
}

/* Headlines */
.section__headline {
  font-family: var(--font-ui);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--obsidian);
}
.section__headline--light {
  color: var(--white);
}

/* Color utilities */
.text--orange {
  color: var(--orange);
}
.text--orange-light {
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn--lg {
  padding: 18px 38px;
  font-size: 16px;
}
.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 92, 0, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  background: transparent;
  color: var(--obsidian);
  border-color: var(--obsidian);
}
.btn--outline:hover {
  background: var(--obsidian);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--obsidian);
  color: var(--white);
  border-color: var(--obsidian);
}
.btn--dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--trans);
}
.btn:hover .btn__arrow {
  transform: translateX(5px);
}

/* ============================================================
   4. NAVIGATION
   Nav defaults to transparent with white text (sits on dark hero)
   On scroll: white background with dark text
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition:
    background var(--trans),
    padding var(--trans),
    box-shadow var(--trans);
}

/* Default state: white text for dark hero */
.nav .nav__logo {
  color: var(--white);
}
.nav .nav__logo span {
  color: var(--orange);
}
.nav .nav__links a {
  color: rgba(255, 255, 255, 0.65);
}
.nav .nav__links a:hover {
  color: var(--white);
}
.nav .nav__hamburger span {
  background: var(--white);
}

/* Scrolled state: white bg, dark text */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
.nav.scrolled .nav__logo {
  color: var(--obsidian);
}
.nav.scrolled .nav__logo span {
  color: var(--orange);
}
.nav.scrolled .nav__links a {
  color: #888;
}
.nav.scrolled .nav__links a:hover {
  color: var(--obsidian);
}
.nav.scrolled .nav__hamburger span {
  background: var(--obsidian);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 3px;
  flex-shrink: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--trans);
}
.nav__logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  transition: color var(--trans);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--trans);
  border-radius: 1px;
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}
.nav__links a.is-active {
  color: var(--white);
}
.nav.scrolled .nav__links a.is-active {
  color: var(--obsidian);
}

.nav__cta {
  margin-left: 8px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: var(--trans);
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  background: var(--midnight);
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nav.scrolled .nav__mobile {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.nav__mobile.is-open {
  display: block;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav__mobile a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  font-weight: 600;
  transition: color var(--trans);
}
.nav__mobile a:hover {
  color: var(--white);
}
.nav.scrolled .nav__mobile a {
  color: #666;
}
.nav.scrolled .nav__mobile a:hover {
  color: var(--obsidian);
}
.nav__mobile .btn {
  display: inline-flex;
  margin-top: 8px;
}

/* ============================================================
   5. HERO — Dark, centered, full-impact (Phase 1 restored)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Subtle grid overlay */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 92, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Orange radial glow */
.hero__glow {
  position: absolute;
  width: 820px;
  height: 820px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 0, 0.13) 0%,
    rgba(255, 92, 0, 0.04) 45%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Centered content */
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroUp 0.6s ease forwards 0.2s;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(255, 92, 0, 0);
  }
}

/* Headline — Bebas Neue, massive */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 0.7s ease forwards 0.4s;
}

.hero__headline .text--orange {
  display: block;
  color: var(--orange);
  text-shadow: 0 0 80px rgba(255, 92, 0, 0.45);
}

/* Subline */
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
  opacity: 0;
  animation: heroUp 0.7s ease forwards 0.6s;
}

/* CTA buttons */
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: heroUp 0.7s ease forwards 0.8s;
}

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0;
  animation: heroUp 0.7s ease forwards 1s;
}
.hero__stat {
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat__div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Hero entrance keyframe */
@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   6. MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--orange);
  padding: 15px 0;
  overflow: hidden;
}
.marquee__track {
  overflow: hidden;
}
.marquee__content {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.marquee__content span {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.msep {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 9px !important;
}
.marquee-section:hover .marquee__content {
  animation-play-state: paused;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   7. PROBLEM — White, 3-column editorial
   ============================================================ */
.problem {
  padding: 120px 0;
  background: var(--white);
}
.problem__header {
  text-align: center;
  margin-bottom: 72px;
}
.problem__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.problem__item {
  padding-top: 24px;
}
.problem__num {
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--orange);
  opacity: 0.1;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  margin-bottom: -16px;
}
.problem__line {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 20px;
}
.problem__item h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--obsidian);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.problem__item p {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
}

/* ============================================================
   8. SOLUTION — Orange background
   ============================================================ */
.solution {
  padding: 120px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.solution__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(255, 255, 255, 0.05);
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1;
}
.solution__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.solution__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.solution__body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto 60px;
}
.solution__body strong {
  color: var(--white);
}
.solution__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.pillar {
  background: var(--midnight);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--trans);
}
.pillar:hover {
  background: #252538;
  border-color: rgba(255, 92, 0, 0.4);
  transform: translateY(-4px);
}
.pillar__icon {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}
.pillar h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ============================================================
   9. COURSE — Bento Grid, Cream background
   ============================================================ */
.learn {
  padding: 120px 0;
  background: var(--cream);
}
.learn__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.learn__sub {
  font-size: 17px;
  color: #888;
  margin-top: 16px;
  line-height: 1.6;
}

/* Bento layout */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows:
    minmax(210px, auto) minmax(180px, auto) minmax(180px, auto)
    auto;
  gap: 14px;
  grid-template-areas:
    "sm     sm     paid    content"
    "sm     sm     email   website"
    "lead   funnel seo     copy"
    "analyt funnel cta     cta";
}
.bento__item:nth-child(1) {
  grid-area: sm;
}
.bento__item:nth-child(2) {
  grid-area: paid;
}
.bento__item:nth-child(3) {
  grid-area: content;
}
.bento__item:nth-child(4) {
  grid-area: email;
}
.bento__item:nth-child(5) {
  grid-area: website;
}
.bento__item:nth-child(6) {
  grid-area: lead;
}
.bento__item:nth-child(7) {
  grid-area: funnel;
}
.bento__item:nth-child(8) {
  grid-area: seo;
}
.bento__item:nth-child(9) {
  grid-area: copy;
}
.bento__item:nth-child(10) {
  grid-area: analyt;
}
.bento__item:nth-child(11) {
  grid-area: cta;
}

/* Base card */
.bento__item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
  cursor: default;
}
.bento__item:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 6px 6px 0px var(--orange);
}
.bento__num {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 16px;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}
.bento__num--light {
  color: rgba(255, 255, 255, 0.12);
}
.bento__num--faint {
  color: rgba(255, 255, 255, 0.07);
}

.bento__item h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--obsidian);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.bento__item p {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.bento__tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.bento__tag--dark {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.bento__tag--orange {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Bento variants */
.bento__item--hero {
  background: var(--obsidian);
  border-color: var(--obsidian);
}
.bento__item--hero:hover {
  border-color: var(--orange);
  box-shadow: 6px 6px 0px var(--orange);
}
.bento__item--hero h3 {
  color: var(--white);
}
.bento__item--hero p {
  color: rgba(255, 255, 255, 0.5);
}

.bento__item--orange {
  background: var(--orange);
  border-color: var(--orange);
}
.bento__item--orange:hover {
  border-color: var(--obsidian);
  box-shadow: 6px 6px 0px var(--obsidian);
}
.bento__item--orange h3 {
  color: var(--white);
}
.bento__item--orange p {
  color: rgba(255, 255, 255, 0.75);
}

.bento__item--dark {
  background: var(--midnight);
  border-color: var(--midnight);
}
.bento__item--dark:hover {
  border-color: var(--orange);
  box-shadow: 6px 6px 0px var(--orange);
}
.bento__item--dark h3 {
  color: var(--white);
}
.bento__item--dark p {
  color: rgba(255, 255, 255, 0.5);
}

.bento__item--cta {
  background: var(--cream);
  border: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.bento__item--cta:hover {
  background: var(--orange-pale);
  box-shadow: 6px 6px 0px var(--orange);
}
.bento__item--cta h3 {
  color: var(--obsidian);
  font-size: 22px;
}
.bento__item--cta p {
  color: #777;
}

/* ============================================================
   10. COMMUNITY — White, Discord-focused
   ============================================================ */
.community {
  padding: 120px 0;
  background: var(--white);
}
.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community__body {
  font-size: 16px;
  color: #777;
  line-height: 1.85;
  margin: 24px 0 36px;
  max-width: 460px;
}
.community__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.community__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--obsidian);
}
.feat__check {
  width: 26px;
  height: 26px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Discord mockup */
.discord__mockup {
  background: #1e1f22;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.discord__header {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.discord__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}
.discord__channel {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}
.discord__feed {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}

.dc__msg {
  display: flex;
  gap: 14px;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background var(--trans);
}
.dc__msg:hover {
  background: rgba(255, 255, 255, 0.03);
}

.dc__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.dc__av--orange {
  background: var(--orange);
}
.dc__av--green {
  background: var(--green);
}
.dc__av--purple {
  background: var(--purple);
}
.dc__av--dark {
  background: #4a4a6a;
}

.dc__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.dc__time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  margin-left: 8px;
}
.dc__body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================================
   11. TESTIMONIALS — Orange background
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.testimonials__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(150px, 28vw, 360px);
  color: rgba(255, 255, 255, 0.05);
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.06em;
  line-height: 1;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testi__card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 3px solid var(--white);
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.testi__card:hover {
  transform: translateY(-7px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.18);
}
.testi__card--dark {
  background: var(--obsidian);
  border-color: var(--obsidian);
}
.testi__stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testi__quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--obsidian);
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}
.testi__card--dark .testi__quote {
  color: rgba(255, 255, 255, 0.75);
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.tav--orange {
  background: var(--orange);
}
.tav--green {
  background: var(--green);
}
.testi__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--obsidian);
}
.testi__card--dark .testi__name {
  color: var(--white);
}
.testi__role {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 3px;
}
.testi__card--dark .testi__role {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   12. FINAL CTA — White background, Bebas Neue graphic type
   ============================================================ */
.final-cta {
  padding: 140px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fcta__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(60px, 13vw, 170px);
  color: rgba(255, 92, 0, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.04em;
  line-height: 1;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
}
.fcta__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0 28px;
}
.fcta__line1,
.fcta__line2 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 128px);
  color: var(--obsidian);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
}
.fcta__line2 .text--orange {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255, 92, 0, 0.25);
}
.fcta__sub {
  font-size: 18px;
  color: #888;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.fcta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.fcta__note {
  font-size: 13px;
  color: #bbb;
  font-weight: 500;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--obsidian);
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 40px;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}
.nav__logo.footer__logo {
  color: var(--white);
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--trans);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__socials a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--trans);
}
.footer__col a:hover {
  color: var(--white);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  transition: color var(--trans);
}
.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   14. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.12s;
}
.reveal--delay-2 {
  transition-delay: 0.22s;
}
.reveal--delay-3 {
  transition-delay: 0.32s;
}
.reveal--delay-4 {
  transition-delay: 0.42s;
}

/* ============================================================
   NEW: FAQ — Cream background, accordion
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.faq__sub {
  font-size: 17px;
  color: #888;
  margin-top: 16px;
  line-height: 1.6;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}

.faq__item:first-child {
  border-top: 2px solid rgba(0, 0, 0, 0.07);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--obsidian);
  text-align: left;
  transition: color var(--trans);
  line-height: 1.35;
}

.faq__q:hover {
  color: var(--orange);
}
.faq__item.is-open .faq__q {
  color: var(--orange);
}

.faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--trans);
  flex-shrink: 0;
  line-height: 1;
  font-family: var(--font-ui);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__a {
  max-height: 300px;
}

.faq__a p {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  padding-bottom: 28px;
  padding-right: 40px;
}

/* ============================================================
   NEW: EMAIL OPT-IN — Midnight background
   ============================================================ */
.optin {
  padding: 120px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.optin__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 320px);
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.04em;
  line-height: 1;
}

.optin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left side */
.optin__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 74px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.optin__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.optin__includes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.optin__includes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.optin__check {
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right side: Form card */
.optin__card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px;
  position: relative;
}

/* Orange offset shadow on the card */
.optin__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--orange);
  border-radius: var(--r-xl);
  transform: translate(8px, 8px);
  z-index: -1;
  opacity: 0.4;
}

.optin__card-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.optin__card-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--obsidian);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.optin__card-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 28px;
}

.optin__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.optin__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.optin__field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--obsidian);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.optin__field input {
  padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r);
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--obsidian);
  background: var(--white);
  outline: none;
  transition:
    border-color var(--trans),
    box-shadow var(--trans);
  width: 100%;
}

.optin__field input::placeholder {
  color: #bbb;
}

.optin__field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.1);
}

.optin__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.optin__privacy {
  font-size: 12px;
  color: #bbb;
  text-align: center;
  font-weight: 500;
  margin-top: 4px;
}

/* --- Goal dropdown (matches input styling) --- */
.optin__select {
  padding: 14px 44px 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r);
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--obsidian);
  background-color: var(--white);
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition:
    border-color var(--trans),
    box-shadow var(--trans);
  /* single chevron — no-repeat is what stops it from tiling */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}
.optin__select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.1);
}
.optin__select:invalid {
  color: #bbb;
}

/* --- Consent checkbox --- */
.optin__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: #777;
  margin-top: 2px;
}
.optin__consent input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition:
    background var(--trans),
    border-color var(--trans);
}
.optin__consent input:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.optin__consent input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.optin__consent input:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.18);
}

/* --- Success state --- */
.optin__card.is-submitted .optin__form,
.optin__card.is-submitted .optin__privacy {
  display: none;
}
.optin__success {
  text-align: center;
  padding: 18px 0 8px;
  animation: optinFade 0.45s ease both;
}
.optin__success-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green, #14b87a);
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.optin__success-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--obsidian);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.optin__success-body {
  font-size: 15px;
  color: #888;
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto;
}
.optin__success-body strong {
  color: var(--orange);
}
@keyframes optinFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Hidden form sink (keeps visitor on page) --- */
.gsd-sio-sink {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* Section label variant for dark backgrounds */
.section__label--on-dark {
  background: rgba(255, 92, 0, 0.15);
  color: var(--orange);
}

/* ============================================================
   15. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "sm     sm"
      "sm     sm"
      "paid   content"
      "email  website"
      "lead   funnel"
      "seo    copy"
      "analyt cta";
  }
  .solution__pillars {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials__grid .testi__card:last-child {
    grid-column: 1 / -1;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   16. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat__div {
    width: 40px;
    height: 2px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .problem__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution__pillars {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "sm" "paid" "content" "email"
      "website" "lead" "funnel" "seo"
      "copy" "analyt" "cta";
  }

  .optin__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .optin__card::after {
    display: none;
  }

  .community__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .fcta__sub br {
    display: none;
  }
}
