/* NaijaHook — shared styles (Home first; more pages later) */
:root {
  --bg: #0d0d0d;
  --bg-elevated: #141414;
  --surface: #1a1a1a;
  --surface-2: #252525;
  --text: #ffffff;
  --muted: #9e9e9e;
  --hint: #616161;
  --coral: #e8445a;
  --coral-dark: #c2354a;
  --purple: #8b5cf6;
  --purple-deep: #5b21b6;
  --green: #22c55e;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1600px;
  --nav-h: 72px;
  --nav-pad-top: 0px;
  --shadow-glow: 0 24px 60px rgba(232, 68, 90, 0.22);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --pad-x: 1rem;
  --pad-x-mobile: 1.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
}

/* —— Brand mark —— */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 110;
}

.brand__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand__icon--sm {
  width: 28px;
  height: 28px;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand__text span {
  color: var(--coral);
}

.brand--drawer .brand__text {
  font-size: 1.25rem;
}

/* —— Atmosphere —— */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  will-change: transform;
}

.ambient__blob--1 {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: radial-gradient(circle, rgba(232, 68, 90, 0.55), transparent 70%);
  top: -10%;
  right: -8%;
}

.ambient__blob--2 {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
  bottom: 20%;
  left: -12%;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* —— Nav —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--nav-h) + var(--nav-pad-top));
  padding-top: var(--nav-pad-top);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

body.nav-is-open .site-header {
  z-index: 220;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Desktop: top space under notch + side padding (user-tuned) */
@media (min-width: 901px) {
  :root {
    --nav-pad-top: 16px;
    --pad-x: 4.5rem;
    --max: 1720px;
  }
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.nav__desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(232, 68, 90, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(232, 68, 90, 0.4);
}

.nav__cta--drawer {
  width: 100%;
  margin-top: auto;
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

/* Mobile drawer — hidden on desktop */
.nav__drawer {
  display: none;
}

.nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.nav__drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fancy hamburger */
.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 130;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav__toggle:hover {
  border-color: rgba(232, 68, 90, 0.45);
  box-shadow: 0 8px 28px rgba(232, 68, 90, 0.2);
}

.nav__toggle-box {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.nav__toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.35s cubic-bezier(0.68, -0.4, 0.32, 1.4),
    opacity 0.2s ease, top 0.35s ease, width 0.35s ease, left 0.35s ease;
}

.nav__toggle-line:nth-child(1) { top: 0; }
.nav__toggle-line:nth-child(2) { top: 6px; width: 70%; }
.nav__toggle-line:nth-child(3) { top: 12px; }

.nav__toggle[aria-expanded="true"] {
  background: linear-gradient(145deg, rgba(232, 68, 90, 0.25), rgba(139, 92, 246, 0.15));
  border-color: rgba(232, 68, 90, 0.5);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* —— Hero (one composition) —— */
.hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + var(--nav-pad-top) + 1.5rem) 0 3rem;
  display: grid;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.15rem;
}

.hero__brand .brand__text {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.025em;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 20ch;
  margin-bottom: 0.9rem;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone-frame {
  width: min(100%, 320px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow-glow);
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s ease;
  background: #0a0a0a;
}

.phone-frame:hover {
  transform: rotateY(-2deg) rotateX(0deg) translateY(-6px);
}

.phone-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center top;
  background: #0a0a0a;
}

.hero__glow {
  position: absolute;
  width: 70%;
  height: 50%;
  bottom: 5%;
  left: 15%;
  background: radial-gradient(circle, rgba(232, 68, 90, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* —— Trust strip —— */
.trust {
  padding: 1.25rem 0 3rem;
}

.trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.trust__pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.trust__pill i.coral {
  background: var(--coral);
  box-shadow: 0 0 10px rgba(232, 68, 90, 0.5);
}

.trust__pill i.purple {
  background: var(--purple);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section__eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.section__lead {
  color: var(--muted);
  max-width: 44ch;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.section__head {
  margin-bottom: 2.5rem;
}

/* Feature spotlight (dynamic — JS swaps images) */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.spotlight__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.spotlight__tab {
  text-align: left;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.spotlight__tab:hover {
  background: rgba(255, 255, 255, 0.03);
}

.spotlight__tab.is-active {
  background: linear-gradient(135deg, rgba(232, 68, 90, 0.12), rgba(139, 92, 246, 0.1));
  border-color: rgba(232, 68, 90, 0.35);
}

.spotlight__tab h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.spotlight__tab p {
  color: var(--muted);
  font-size: 0.92rem;
}

.spotlight__stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.spotlight__phone {
  width: min(100%, 280px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: #0a0a0a;
  position: relative;
  aspect-ratio: 9 / 16;
}

.spotlight__phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease;
  background: #0a0a0a;
}

.spotlight__phone img.is-active {
  opacity: 1;
}

.pricing-teaser__phone {
  width: min(100%, 260px);
  margin-inline: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  background: #0a0a0a;
}

.pricing-teaser__phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center top;
  background: #0a0a0a;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pricing teaser */
.pricing-teaser {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(139, 92, 246, 0.25), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(232, 68, 90, 0.2), transparent 45%),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-teaser__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.price-chip {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 140px;
}

.price-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-chip span {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-chip--best {
  border-color: rgba(232, 68, 90, 0.45);
  box-shadow: inset 0 0 0 1px rgba(232, 68, 90, 0.15);
}

/* Safety band */
.safety-band {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(61, 220, 151, 0.08), rgba(13, 13, 13, 0.2));
  border: 1px solid rgba(61, 220, 151, 0.15);
}

.safety-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.safety-band p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--pad-x);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 2rem;
  margin-top: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.footer__brand .brand__text {
  font-size: 1.15rem;
}

.footer__blurb {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 28ch;
}

.footer__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 0.85rem;
}

.footer__col a {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--hint);
  font-size: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .container {
    width: min(100% - (var(--pad-x-mobile) * 2), var(--max));
  }

  .hero__grid,
  .spotlight,
  .pricing-teaser,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 1.25rem) 0 2.5rem;
  }

  .hero__grid {
    text-align: center;
    gap: 2rem;
  }

  .hero__brand {
    justify-content: center;
  }

  .hero__headline,
  .hero__lead,
  .section__title,
  .section__lead,
  .footer__blurb {
    margin-inline: auto;
  }

  .hero__headline {
    max-width: 22ch;
  }

  .hero__lead {
    max-width: 32ch;
  }

  .cta-row {
    justify-content: center;
  }

  .phone-frame {
    transform: none;
    width: min(100%, 260px);
  }

  .phone-frame:hover {
    transform: translateY(-4px);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .spotlight__stage {
    order: -1;
  }

  .section {
    padding: 3rem 0;
  }

  .pricing-teaser {
    padding: 1.35rem;
  }

  .final-cta {
    padding-left: var(--pad-x-mobile);
    padding-right: var(--pad-x-mobile);
    padding-top: clamp(3rem, 7vw, 4rem);
    padding-bottom: clamp(3rem, 7vw, 4rem);
  }

  .final-cta h2 {
    padding-inline: 0.25rem;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__desktop {
    display: none;
  }

  /* Backdrop BELOW drawer (must not block taps) */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 1.25rem 1.5rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background:
      radial-gradient(ellipse at 100% 0%, rgba(232, 68, 90, 0.22), transparent 45%),
      radial-gradient(ellipse at 0% 100%, rgba(139, 92, 246, 0.18), transparent 50%),
      #121016;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
    transform: translate3d(110%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 230;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }

  .nav__drawer.is-open {
    transform: translate3d(0, 0, 0);
  }

  .nav__drawer .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    flex: 1;
  }

  .nav__drawer .nav__links a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    padding: 0.95rem 1rem;
    border-radius: 14px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav__drawer .nav__links a:hover,
  .nav__drawer .nav__links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .nav__drawer .nav__links a[aria-current="page"] {
    background: linear-gradient(135deg, rgba(232, 68, 90, 0.2), rgba(139, 92, 246, 0.12));
    border: 1px solid rgba(232, 68, 90, 0.3);
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x-mobile: 1.85rem;
  }

  .container {
    width: min(100% - (var(--pad-x-mobile) * 2), var(--max));
  }

  .brand__icon {
    width: 34px;
    height: 34px;
  }

  .brand__text {
    font-size: 1.05rem;
  }

  .hero__brand .brand__text {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .nav__drawer {
    width: min(92vw, 360px);
    padding: 1.15rem 1.35rem 1.75rem;
  }
}

/* Coming-soon pages stub (linked but not built yet) */
.page-stub {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
}

