:root {
  --bg-tan: #f4b769;
  --bg-tan-soft: #f9c980;
  --pink: #ff7dac;
  --pink-light: #ffd3f0;
  --pink-lighter: #ffe8f9;
  --purple: #a259f7;
  --text-main: #17110d;
  --text-soft: #4b3b2d;

  /* fonts */
  --font-lexend: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-pixel: "DotGothic16", "Courier New", monospace;
  --font-irish: "Irish Grover", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-pill: 999px;
  --radius-lg: 32px;
  --radius-md: 16px;
  --shadow-soft: 0 28px 60px rgba(0,0,0,0.22);

  --transition-fast: 0.16s ease-out;
  --transition-med: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-lexend);
  background:
    radial-gradient(circle at top left, var(--bg-tan-soft) 0, transparent 45%),
    radial-gradient(circle at bottom right, var(--bg-tan-soft) 0, transparent 55%),
    var(--bg-tan);
  color: var(--text-main);
}

/* HEADER */

.site-header {
  padding: 16px 6vw 10px;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-lexend);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--text-main);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO LAYOUT */

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 6vw 40px;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE TYPE */

.hero-heading {
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: clamp(3rem, 4.2vw, 3.6rem);
  line-height: 1.16;
  margin: 0 0 24px;
}

.hero-line {
  display: block;
}

.hero-strong {
  font-weight: 700;
}

/* rotating middle phrase */

.hero-swap-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 3px 10px;
  margin-left: 2px;
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.32) 1px, transparent 1px);
  background-size: 6px 6px;
  background-position: 0 0;
  border-radius: 999px;
}

.hero-swap {
  font-family: var(--font-pixel);
  font-weight: 400;
  letter-spacing: 0.05em;
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.hero-swap-fade-out {
  opacity: 0;
  transform: translateY(-0.3em);
}

/* ads. highlight */

.hero-ads {
  font-family: var(--font-irish);
  font-size: 1.05em;
  margin-left: 6px;
  position: relative;
}

.hero-ads::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  height: 2px;
  background: currentColor;
  bottom: -3px;
}

/* BODY COPY */

.hero-sub {
  max-width: 30rem;
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0 0 26px;
}

/* BUTTONS */

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #111;
  background: var(--pink-light);
  box-shadow: 0 4px 0 #111;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-pill span {
  position: relative;
  z-index: 1;
}

.btn-creators {
  background: var(--pink-light);
}

.btn-brands {
  background: var(--pink-lighter);
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #111;
}

.btn-pill:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #111;
}

/* RIGHT SIDE: browser + comment */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.screen-frame {
  width: 100%;
  max-width: 540px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #ffe5c6;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff9aa2;
}
.dot-2 { background: #ffda83; }
.dot-3 { background: #b5e892; }

.screen-body {
  position: relative;
  padding: 56px 56px;
  background: #ffcce5;
}

.comment-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 22px 40px;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.avatar {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff, #e6e6e6 60%, #cfcfcf 100%);
}

.comment-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.82rem;
  font-family: var(--font-lexend);
}

.handle {
  margin: 0 0 3px;
  font-weight: 600;
}

.comment-line {
  margin: 0;
  color: #444;
}

/* PS text */

.hero-ps {
  text-align: center;
  font-size: 0.9rem;
}

.hero-ps-main {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-ps-sub {
  margin: 2px 0 0;
  font-family: var(--font-lexend);
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* =========================
   SECTION: WHY ADS FLOP
   ========================= */

.section-pain {
  padding: 64px 6vw 80px;
  background: #FFEFD6;
}

.section-pain-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  margin: 0 0 10px;
  font-family: var(--font-pixel);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.section-pain-heading {
  margin: 0 0 36px;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: 1.6rem;
}

.section-pain-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pain-row {
  position: relative;
  padding-bottom: 14px;
}

.pain-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0,0,0,0.35);
  opacity: 0.7;
}

.pain-row-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pain-row-label {
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.pain-title {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: 0.98rem;
}

.pain-body {
  margin: 6px 0 0;
  font-family: var(--font-lexend);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 40rem;
}

.section-pain-footnote {
  margin: 22px 0 0;
  font-family: var(--font-lexend);
  font-size: 0.84rem;
  color: var(--text-soft);
}

/* =========================
   SECTION: HOW IT WORKS
   ========================= */

.section-how {
  padding: 64px 6vw 80px;
  background: #FFF9EE;
}

.section-how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-how-heading {
  margin: 0 0 40px;
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: 1.6rem;
}

.section-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.how-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-number {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.how-title {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: 1.05rem;
}

.how-body {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* =========================
   SECTION: FOR BRANDS / FOR CREATORS
   ========================= */

.section-split {
  padding: 64px 6vw 80px;
  background: transparent;
}

.section-split-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.split-card {
  padding: 32px 28px;
  border-radius: 24px;
  border: 1.5px solid #111;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-card-brands {
  background: var(--pink-light);
}

.split-card-creators {
  background: var(--pink-lighter);
}

.split-card-title {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: lowercase;
}

.split-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.split-card-list li {
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-main);
  position: relative;
  padding-left: 20px;
}

.split-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--text-main);
}

.split-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #111;
  background: rgba(255,255,255,0.6);
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: transform var(--transition-fast), background var(--transition-fast);
  align-self: flex-start;
}

.split-card-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.85);
}

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

.hero-simple {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 80px 6vw 60px;
}

.hero-simple-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-simple-heading {
  margin: 0 0 20px;
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.hero-simple-sub {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* PROCESS SECTION */

.section-process {
  padding: 64px 6vw 80px;
  background: #FFEFD6;
}

.section-process-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-heading {
  margin: 0 0 48px;
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: 1.6rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-step {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-pixel);
  font-size: 2.5rem;
  font-weight: 400;
  opacity: 0.3;
  letter-spacing: 0.05em;
}

.step-title {
  margin: 0 0 16px;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: 1.2rem;
}

.step-body {
  margin: 0 0 12px;
  font-family: var(--font-lexend);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.step-body:last-child {
  margin-bottom: 0;
}

/* WHY THIS WORKS */

.section-why {
  padding: 64px 6vw 80px;
  background: #FFF9EE;
}

.section-why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-title {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: 1.05rem;
}

.why-body {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* CTA SECTION */

.section-cta {
  padding: 80px 6vw;
  background: transparent;
}

.section-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  margin: 0 0 32px;
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: 1.8rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   ABOUT US PAGE
   ========================= */

.section-story {
  padding: 64px 6vw 80px;
  background: #FFEFD6;
}

.section-story-inner {
  max-width: 800px;
  margin: 0 auto;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-para {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* WHY WE GET IT */

.section-why-us {
  padding: 64px 6vw 80px;
  background: #FFF9EE;
}

.section-why-us-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.why-us-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-us-title {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 600;
  font-size: 1.05rem;
}

.why-us-body {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* THE MISSION */

.section-mission {
  padding: 64px 6vw 80px;
  background: transparent;
}

.section-mission-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-para {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* =========================
   CREATOR BENEFITS SECTION
   ========================= */

.section-benefits {
  padding: 64px 6vw 80px;
  background: transparent;
}

.section-benefits-inner {
  max-width: 900px;
  margin: 0 auto;
}

.benefits-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  position: relative;
  padding-left: 28px;
}

.benefits-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--text-main);
}

/* WHO WE WORK WITH */

.section-who {
  padding: 64px 6vw 80px;
  background: #FFEFD6;
}

.section-who-inner {
  max-width: 800px;
  margin: 0 auto;
}

.who-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-para {
  margin: 0;
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* =========================
   APPLICATION FORM
   ========================= */

.section-form {
  padding: 80px 6vw;
  background: #FFF9EE;
}

.section-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.creator-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-main);
}

.form-input,
.form-textarea {
  font-family: var(--font-lexend);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  color: var(--text-main);
  transition: border-color 0.2s ease-out, background 0.2s ease-out;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

select.form-input {
  cursor: pointer;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.form-note {
  margin: 16px 0 0;
  font-family: var(--font-lexend);
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
}

/* GEN-Z GAP SECTION (BRAND PAGE - LIGHTER BACKGROUND) */

.section-genz {
  padding: 64px 6vw 80px;
  background: #FFF9EE; /* lighter than regular story section */
}

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

.site-footer {
  padding: 48px 6vw 32px;
  background: #e8b77d;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-text {
  font-family: var(--font-pixel);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-weight: 400;
  color: var(--text-main);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.logo-dot {
  color: var(--pink);
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1.5px solid #111;
  color: var(--text-main);
  transition: background 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
  text-decoration: none;
}

.social-link:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.15);
  text-align: center;
}

.footer-copyright {
  margin: 0;
  font-family: var(--font-lexend);
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Button wiggle */

@keyframes btn-wiggle {
  0%   { transform: translateY(0); }
  33%  { transform: translateY(-2px); }
  66%  { transform: translateY(1px); }
  100% { transform: translateY(0); }
}

.btn-wiggle {
  animation: btn-wiggle 0.18s ease-out;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    order: 2;
  }

  .screen-body {
    padding: 40px 32px;
  }

  .section-how-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-split-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 5vw;
  }

  .main-nav {
    gap: 20px;
    font-size: 0.85rem;
  }

  .hero {
    padding-inline: 5vw;
  }

  .hero-heading {
    font-size: clamp(2.3rem, 7vw, 2.7rem);
  }

  .screen-frame {
    max-width: 100%;
  }

  .screen-body {
    padding: 30px 20px 40px;
  }

  .section-pain {
    padding-inline: 5vw;
  }

  .section-pain-heading {
    font-size: 1.35rem;
  }

  .section-how {
    padding-inline: 5vw;
  }

  .section-how-heading {
    font-size: 1.35rem;
  }

  .section-split {
    padding-inline: 5vw;
  }

  .split-card {
    padding: 28px 24px;
  }

  .split-card-title {
    font-size: 1.15rem;
  }

  .hero-simple {
    padding: 60px 5vw 40px;
  }

  .section-process {
    padding-inline: 5vw;
  }

  .process-step {
    padding-left: 0;
    padding-top: 40px;
  }

  .step-number {
    position: static;
    margin-bottom: 12px;
  }

  .section-why {
    padding-inline: 5vw;
  }

  .section-cta {
    padding-inline: 5vw;
  }

  .cta-heading {
    font-size: 1.5rem;
  }

  .section-story {
    padding-inline: 5vw;
  }

  .section-genz {
    padding-inline: 5vw;
  }

  .section-why-us {
    padding-inline: 5vw;
  }

  .section-mission {
    padding-inline: 5vw;
  }

  .story-para,
  .mission-para {
    font-size: 0.95rem;
  }

  .section-benefits {
    padding-inline: 5vw;
  }

  .section-who {
    padding-inline: 5vw;
  }

  .section-form {
    padding-inline: 5vw;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-list li {
    font-size: 0.95rem;
  }

  .who-para {
    font-size: 0.95rem;
  }

  .site-footer {
    padding-inline: 5vw;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .footer-social {
    align-self: center;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px 6px 10px 0;
  cursor: pointer;
  z-index: 100;
}
.hamburger-bar {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--text-main);
  transition: all 0.2s;
}

/* Hamburger visible on mobile */
@media (max-width: 720px) {
  .nav-hamburger {
    display: flex;
    position: absolute;
    top: 22px;
    right: 6vw;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    background: #ffe8f9;
    box-shadow: -2px 0 18px rgba(0,0,0,0.12);
    height: 100vh;
    min-width: 220px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.27s cubic-bezier(0.65,0,0.35,1);
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    align-items: flex-start;
    padding: 80px 38px 28px 28px;
    font-size: 1.1rem;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  body.menu-open {
    overflow: hidden;
  }
}

/* Fade background when open */
@media (max-width: 720px) {
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(244,183,105,0.13);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* =========================
   GEN-Z STATS SECTION
   ========================= */

.section-stats {
  padding: 80px 6vw;
  background: #FFEFD6; /* same tan as your pain section */
}

.section-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-intro {
  margin-bottom: 64px;
  text-align: center;
}

.stats-heading {
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin: 0 auto;
  max-width: 700px;
  color: var(--text-main);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.stat-number {
  font-family: var(--font-lexend);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 0;
  color: var(--text-main);
}

.stat-label {
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: var(--text-soft);
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .section-stats {
    padding: 60px 5vw;
  }

  .stats-intro {
    margin-bottom: 48px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stat-number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
}
