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

:root {
  --emerald: #0f8a5f;
  --emerald-dk: #0a6b4a;
  --emerald-xdk: #074d35;
  --navy: #14213d;
  --gold: #f4b400;
  --gold-dk: #c8930a;
  --ivory: #fafaf7;
  --ivory-md: #f1efe8;
  --ivory-dk: #e8e6df;
  --ink: #1a1a18;
  --ink-60: rgba(26, 26, 24, 0.6);
  --ink-40: rgba(26, 26, 24, 0.4);
  --ink-20: rgba(26, 26, 24, 0.14);
  --white: #ffffff;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-80: rgba(255, 255, 255, 0.8);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  /* background: var(--ivory); */
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY SCALE
───────────────────────────────────────── */
.display-xl {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.display-sm {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
}
.body-md {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}
.body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 400;
}
.label {
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--emerald-dk);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-20);
}
.btn-outline-dark:hover {
  border-color: var(--ink);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.btn-store-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.btn-store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.btn-store-sup {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
}
.btn-store-name {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}
.btn-store-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-store-dark:hover {
  background: #2d2d2b;
}

.btn-store-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.btn-store-white:hover {
  background: var(--ivory-md);
}

.btn-store-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-store-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}
#nav.scrolled {
  background: rgba(250, 250, 247, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ivory-dk);
}
#nav .nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
#nav.scrolled .nav-logo {
  color: var(--ink);
}

.nav-logo span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: super;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
#nav.scrolled .nav-links a {
  color: var(--ink-60);
}
.nav-links a:hover {
  color: var(--white);
}
#nav.scrolled .nav-links a:hover {
  color: var(--ink);
}

.nav-dl-btn {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 2px;
  background: var(--emerald);
  color: var(--white);
  transition: background 0.2s;
}
.nav-dl-btn:hover {
  background: var(--emerald-dk);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr.d1 {
  transition-delay: 0.1s;
}
.sr.d2 {
  transition-delay: 0.2s;
}
.sr.d3 {
  transition-delay: 0.3s;
}
.sr.d4 {
  transition-delay: 0.4s;
}
.sr.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   ① HERO — Full-viewport cinematic
───────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #050e16;
}

/* Cinematic image layer — using CSS gradient to simulate Lagos cityscape */
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      #0a1525 0%,
      #0c1a2e 35%,
      #0a1825 72%,
      #050e19 100%
    ),
    radial-gradient(
        ellipse 120% 60% at 60% 30%,
        #0d3028 0%,
        #0b2218 25%,
        #081620 55%,
        #050e16 100%
      ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 38px,
      rgba(244, 180, 0, 0.04) 38px,
      rgba(244, 180, 0, 0.04) 40px
    );
  background-size: cover, cover, auto;
}

/* City lights layer */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 180% 55% at 50% 78%,
      rgba(244, 155, 20, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 30% at 30% 85%,
      rgba(244, 130, 0, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse 50% 25% at 72% 80%,
      rgba(244, 180, 0, 0.15) 0%,
      transparent 40%
    );
}

/* Horizon glow */
.hero-image::after {
  content: "";
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 155, 30, 0.2) 30%,
    rgba(244, 155, 30, 0.4) 50%,
    rgba(244, 155, 30, 0.2) 70%,
    transparent 100%
  );
}

/* City silhouette */
.hero-city-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42%;
  overflow: hidden;
}
.hero-city-silhouette svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 5% 7vh;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: 100px;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 32px;
  margin-top: 130px;
  max-width: 900px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 520px;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--white-80);
  margin-bottom: 40px;
  font-weight: 300;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-60);
  font-family: "DM Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scanline 2.4s ease-in-out infinite;
}
@keyframes scanline {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ─────────────────────────────────────────
   ② THE PROBLEM — editorial storytelling
───────────────────────────────────────── */
#problem {
  padding: 120px 0;
  background: var(--ivory);
}

.problem-header {
  padding: 0 5%;
  max-width: 1280px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.problem-header-left .section-eyebrow {
  margin-bottom: 20px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow-rule {
  width: 28px;
  height: 1px;
  background: var(--emerald);
  flex-shrink: 0;
}
.section-eyebrow-text {
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
}
.problem-intro {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
}

.problem-scenarios {
  padding: 0 5%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ivory-dk);
}
.scenario {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--ivory-dk);
  border-bottom: 1px solid var(--ivory-dk);
}
.scenario:nth-child(3) {
  border-right: none;
  padding-right: 0;
}
.scenario:nth-child(4),
.scenario:nth-child(5),
.scenario:nth-child(6) {
  border-bottom: none;
}
.scenario:nth-child(4) {
  padding-left: 0;
}
.scenario:nth-child(5) {
  padding: 48px 40px;
}
.scenario:nth-child(6) {
  padding: 48px 0 48px 40px;
  border-right: none;
}

.scenario-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--ivory-dk);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.scenario h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.scenario p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-60);
}

/* ─────────────────────────────────────────
   ③ CATEGORIES — large photography tiles
───────────────────────────────────────── */
#categories {
  padding: 0;
  background: var(--ink);
}
.categories-header {
  padding: 96px 5% 64px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.categories-header-right {
  max-width: 360px;
  color: var(--white-60);
  font-size: 1rem;
  line-height: 1.7;
  flex-shrink: 0;
}
#categories .section-eyebrow-text {
  color: rgba(255, 255, 255, 0.45);
}
#categories .section-eyebrow-rule {
  background: rgba(255, 255, 255, 0.25);
}
#categories .display-md {
  color: var(--white);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 260px;
  gap: 3px;
  padding: 0 5% 96px;
  max-width: 1280px;
  margin: 0 auto;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.cat-tile:first-child {
  grid-column: 1 / 3;
  grid-row: 1;
}
.cat-tile:nth-child(2),
.cat-tile:nth-child(3) {
  grid-row: 1;
}
.cat-tile:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}
.cat-tile:nth-child(5),
.cat-tile:nth-child(6),
.cat-tile:nth-child(7),
.cat-tile:nth-child(8) {
  grid-row: 2;
}

.cat-tile-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-tile-bg img {
  width: 100%;
  height: 70%;
}
.cat-tile:hover .cat-tile-bg {
  transform: scale(1.05);
}

/* Each category tile gets its own color story */
.cat-tile:nth-child(1) .cat-tile-bg {
  background: linear-gradient(
    160deg,
    #1a3a2a 0%,
    #0d2418 40%,
    #162030 80%,
    #0a1520 100%
  );
}
.cat-tile:nth-child(1) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 80% at 60% 70%,
      rgba(244, 120, 0, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 80%,
      rgba(244, 180, 0, 0.15) 0%,
      transparent 40%
    );
}
.cat-tile:nth-child(2) .cat-tile-bg {
  background: linear-gradient(155deg, #0d2a1e 0%, #0a1f28 50%, #050f18 100%);
}
.cat-tile:nth-child(2) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 60%,
    rgba(15, 138, 95, 0.25) 0%,
    transparent 55%
  );
}
.cat-tile:nth-child(3) .cat-tile-bg {
  background: linear-gradient(150deg, #1f1a0a 0%, #2a1f0d 40%, #1a1508 100%);
}
.cat-tile:nth-child(3) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 70% at 50% 65%,
    rgba(244, 180, 0, 0.3) 0%,
    transparent 55%
  );
}
.cat-tile:nth-child(4) .cat-tile-bg {
  background: linear-gradient(155deg, #0d1f2a 0%, #111f35 50%, #08121e 100%);
}
.cat-tile:nth-child(4) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 70%,
    rgba(30, 80, 180, 0.25) 0%,
    transparent 55%
  );
}
.cat-tile:nth-child(5) .cat-tile-bg {
  background: linear-gradient(145deg, #1a2a1a 0%, #0f1f12 100%);
}
.cat-tile:nth-child(5) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 60%,
    rgba(15, 138, 95, 0.2) 0%,
    transparent 55%
  );
}
.cat-tile:nth-child(6) .cat-tile-bg {
  background: linear-gradient(150deg, #1a100a 0%, #251508 100%);
}
.cat-tile:nth-child(6) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 80% at 50% 65%,
    rgba(244, 100, 0, 0.25) 0%,
    transparent 55%
  );
}
.cat-tile:nth-child(7) .cat-tile-bg {
  background: linear-gradient(145deg, #101a25 0%, #0a1218 100%);
}
.cat-tile:nth-child(7) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 60%,
    rgba(20, 60, 140, 0.22) 0%,
    transparent 50%
  );
}
.cat-tile:nth-child(8) .cat-tile-bg {
  background: linear-gradient(150deg, #1f1a10 0%, #2a2015 100%);
}
.cat-tile:nth-child(8) .cat-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 80% at 50% 65%,
    rgba(200, 147, 10, 0.22) 0%,
    transparent 55%
  );
}

/* Tile overlay */
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(5, 12, 20, 0.75) 0%,
    rgba(5, 12, 20, 0.1) 55%,
    transparent 100%
  );
}

.cat-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px 24px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cat-tile-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}
.cat-tile:first-child .cat-tile-name {
  font-size: 1.75rem;
}
.cat-tile-count {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 12px;
}
.cat-tile-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.cat-tile:hover .cat-tile-arrow {
  opacity: 1;
  transform: none;
}
.cat-tile-arrow svg {
  width: 12px;
  height: 12px;
  stroke: white;
  fill: none;
}

/* ─────────────────────────────────────────
   ④ VERIFIED — trust storytelling
───────────────────────────────────────── */
#verified {
  padding: 128px 0;
  background: var(--ivory);
}
.verified-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 100px;
  align-items: center;
}
.verified-left {
    flex-direction: column;
}
.verified-left .display-md {
  margin: 28px 0 32px;
  color: var(--ink);
}
.verified-statement {
  font-size: 1.3125rem;
  line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 48px;
  font-weight: 300;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  max-width: 480px;
  border-left: 2px solid var(--emerald);
  padding-left: 22px;
}
.verified-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ivory-dk);
}
.verified-pillar {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ivory-dk);
  align-items: start;
}
.pillar-marker {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--emerald);
  line-height: 1.6;
}
.pillar-body h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.pillar-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-60);
}

.verified-right {
  position: relative;
}
.verified-cert {
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  position: relative;
}
.verified-cert-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 70% at 50% 80%,
      rgba(15, 138, 95, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 20%,
      rgba(244, 180, 0, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #0d2035 0%, #0a1a2a 40%, #081528 100%);
}
/* Grid pattern */
.verified-cert-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cert-content {
  position: relative;
  z-index: 2;
}
.cert-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cert-check svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.cert-type {
  font-family: "DM Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.cert-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cert-row-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.cert-row-val {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.cert-row-val.green {
  color: #5edba8;
}
.cert-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 138, 95, 0.2);
  border: 1px solid rgba(15, 138, 95, 0.4);
  border-radius: 2px;
  padding: 8px 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5edba8;
}
.cert-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5edba8;
  animation: pulse-cert 2s ease-in-out infinite;
}
@keyframes pulse-cert {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.cert-stat-row {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cert-stat-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 6px 12px;
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   ⑤ BUILT FOR — full-width split story
───────────────────────────────────────── */
#built-for {
  padding: 0;
  background: var(--ivory-md);
  border-top: 1px solid var(--ivory-dk);
  border-bottom: 1px solid var(--ivory-dk);
}
.built-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 5% 72px;
}
.built-header .display-md {
  margin-top: 20px;
  max-width: 700px;
}

.built-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ivory-dk);
}
.built-story {
  padding: 64px 5%;
  border-right: 1px solid var(--ivory-dk);
  border-bottom: 1px solid var(--ivory-dk);
  position: relative;
}
.built-story:nth-child(even) {
  border-right: none;
}
.built-story:nth-child(3),
.built-story:nth-child(4) {
  border-bottom: none;
}

.story-person {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.story-location {
  font-family: "DM Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 20px;
}
.story-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.story-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-60);
}
.story-tag {
  position: absolute;
  top: 36px;
  right: 40px;
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(15, 138, 95, 0.08);
  border: 1px solid rgba(15, 138, 95, 0.2);
  padding: 5px 10px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   ⑥ PUBLIC SERVICES — dark, important
───────────────────────────────────────── */
#public-services {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}
.ps-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
#public-services .section-eyebrow-text {
  color: var(--gold);
}
#public-services .section-eyebrow-rule {
  background: var(--gold);
}
.ps-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 780px;
  margin: 28px 0 56px;
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 64px;
}
.ps-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 32px;
  transition: background 0.25s;
  cursor: default;
}
.ps-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.ps-card-type {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ps-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ps-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}
.ps-statement {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ps-statement-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.ps-statement-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
}

/* ─────────────────────────────────────────
   ⑦ FOR BUSINESSES
───────────────────────────────────────── */
#for-business {
  padding: 120px 0;
  background: var(--ivory);
}
.biz-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.biz-left {
    flex-direction: column;
}
.biz-left .display-md {
  margin: 24px 0 28px;
}
.biz-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 48px;
  max-width: 440px;
}
.biz-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.biz-right {
  padding-top: 8px;
}
.biz-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ivory-dk);
}
.biz-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ivory-dk);
  align-items: start;
}
.biz-list-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--emerald);
  line-height: 1.7;
}
.biz-list-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.5;
}
.biz-list-content p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-60);
}

/* ─────────────────────────────────────────
   BILLING / PRICING — for business owners (web)
───────────────────────────────────────── */
#billing {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--ivory-dk);
}
.billing-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.billing-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.billing-header .display-md {
  margin: 24px 0 20px;
  color: var(--ink);
}
.billing-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 28px;
}
.billing-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.billing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.billing-card {
  border: 1px solid var(--ivory-dk);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}
.billing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.billing-card.featured .billing-plan-name,
.billing-card.featured .billing-price,
.billing-card.featured .billing-period,
.billing-card.featured .billing-features li {
  color: var(--white);
}
.billing-card.featured .billing-period,
.billing-card.featured .billing-features li {
  color: rgba(255,255,255,0.65);
}
.billing-plan-name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
}
.billing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 4px;
}
.billing-period {
  font-size: 0.875rem;
  color: var(--ink-60);
  margin-bottom: 12px;
}
.billing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.billing-features li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-60);
  padding-left: 1rem;
  position: relative;
}
.billing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--emerald);
}
.billing-card.featured .billing-features li::before {
  color: var(--gold);
}
.billing-promote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid var(--ivory-dk);
}
.billing-promote h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
}
.billing-promote p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 0 0 16px;
}
.billing-note {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 520px;
}

.footer-brand-logo-img {
  height: 50px;
  width: 50px;
}

/* ─────────────────────────────────────────
   ⑧ APP EXPERIENCE — supporting, not dominant
───────────────────────────────────────── */
#app-experience {
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
.app-exp-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 5% 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
#app-experience .section-eyebrow-text {
  color: rgba(255, 255, 255, 0.4);
}
#app-experience .section-eyebrow-rule {
  background: rgba(255, 255, 255, 0.2);
}
.app-exp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 20px;
}
.app-exp-right {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.75;
  padding-bottom: 8px;
}
.app-phones {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 0 5% 0;
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}
.phone-wrap {
  flex: 0 0 auto;
  position: relative;
}
.phone-frame {
  width: 220px;
  background: #0d0d0d;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.6);
}
.phone-frame-inner {
  border-radius: 28px;
  overflow: hidden;
  background: var(--ivory);
  position: relative;
}
/* Status bar */
.phone-statusbar {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.02em;
}
.phone-content-area {
  min-height: 400px;
  padding: 0;
}
/* Labels */
.phone-label {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 32px;
}
/* Elevation effect — middle phone higher */
.phone-wrap:nth-child(2) {
  transform: translateY(-32px);
}
.phone-wrap:nth-child(4) {
  transform: translateY(-16px);
}

/* Phone screens */
.ps-home .phone-statusbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
}
.ps-home .phone-content-area {
  background: var(--navy);
  padding: 0;
}
.ps-home-topbar {
  padding: 12px 14px 16px;
  background: var(--navy);
}
.ps-home-greeting {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}
.ps-home-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
.ps-searchbar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ps-home-body {
  background: var(--ivory);
  border-radius: 14px 14px 0 0;
  min-height: 280px;
  padding: 14px;
}
.ps-nearby-label {
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 10px;
}
.ps-nearby-item {
  background: white;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 6px;
  border: 1px solid var(--ivory-dk);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ps-nearby-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ps-nearby-info {
  flex: 1;
}
.ps-nearby-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--ink);
}
.ps-nearby-meta {
  font-size: 0.525rem;
  color: var(--ink-40);
  margin-top: 1px;
}
.ps-nearby-badge {
  font-family: "DM Mono", monospace;
  font-size: 0.5rem;
  background: rgba(15, 138, 95, 0.1);
  color: var(--emerald);
  padding: 2px 5px;
  border-radius: 2px;
}

/* Search screen */
.ps-search .phone-statusbar {
  background: var(--ivory);
  color: var(--ink-40);
}
.ps-search .phone-content-area {
  background: var(--ivory);
  padding: 10px 12px;
}
.ps-search-bar {
  background: white;
  border: 1px solid var(--ivory-dk);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.6rem;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ps-filter-row {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}
.ps-filter-chip {
  background: white;
  border: 1px solid var(--ivory-dk);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.55rem;
  color: var(--ink-60);
  white-space: nowrap;
}
.ps-filter-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.ps-result {
  background: white;
  border: 1px solid var(--ivory-dk);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 6px;
}
.ps-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5px;
}
.ps-result-name {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--ink);
}
.ps-result-verified {
  font-family: "DM Mono", monospace;
  font-size: 0.5rem;
  background: rgba(15, 138, 95, 0.1);
  color: var(--emerald);
  padding: 2px 5px;
  border-radius: 2px;
}
.ps-result-meta {
  font-size: 0.55rem;
  color: var(--ink-40);
}
.ps-result-rating {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 3px;
}

/* Map screen */
.ps-map .phone-statusbar {
  background: #e8f0e4;
  color: #444;
}
.ps-map .phone-content-area {
  padding: 0;
  background: #dde8d5;
}
.ps-map-view {
  height: 240px;
  background: linear-gradient(160deg, #c8d8c0 0%, #d5e5cc 50%, #c0d0b8 100%);
  position: relative;
  overflow: hidden;
}
.ps-map-road-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}
.ps-map-road-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
}
.ps-map-pin {
  position: absolute;
  font-size: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ps-map-pin-head {
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: -2px;
}
.ps-map-pin-shadow {
  width: 6px;
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.ps-map-bottom {
  background: white;
  border-radius: 12px 12px 0 0;
  padding: 12px 12px;
  margin-top: -12px;
  position: relative;
  z-index: 2;
}
.ps-map-result-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.ps-map-result-meta {
  font-size: 0.55rem;
  color: var(--ink-40);
}
.ps-map-chips {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.ps-map-chip {
  font-size: 0.525rem;
  padding: 3px 7px;
  border-radius: 2px;
  background: var(--ivory);
  border: 1px solid var(--ivory-dk);
  color: var(--ink-60);
}
.ps-map-chip.em {
  background: rgba(15, 138, 95, 0.1);
  border-color: rgba(15, 138, 95, 0.25);
  color: var(--emerald);
}

/* Profile screen */
.ps-profile .phone-statusbar {
  background: var(--emerald);
  color: rgba(255, 255, 255, 0.7);
}
.ps-profile .phone-content-area {
  padding: 0;
  background: var(--ivory);
}
.ps-profile-hero {
  background: var(--emerald);
  padding: 14px 14px 28px;
  position: relative;
}
.ps-profile-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin-bottom: 2px;
}
.ps-profile-type {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}
.ps-profile-v {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 3px 7px;
  font-size: 0.525rem;
  color: white;
  font-weight: 500;
}
.ps-profile-body {
  background: var(--ivory);
  border-radius: 10px 10px 0 0;
  margin-top: -10px;
  padding: 14px;
  position: relative;
  z-index: 2;
}
.ps-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}
.ps-p-stat {
  background: white;
  border: 1px solid var(--ivory-dk);
  border-radius: 4px;
  padding: 7px 5px;
  text-align: center;
}
.ps-p-stat-n {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.ps-p-stat-l {
  font-size: 0.5rem;
  color: var(--ink-40);
}
.ps-review {
  background: white;
  border: 1px solid var(--ivory-dk);
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 5px;
}
.ps-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.ps-review-name {
  font-size: 0.575rem;
  font-weight: 600;
  color: var(--ink);
}
.ps-review-stars {
  color: var(--gold);
  font-size: 0.525rem;
}
.ps-review-text {
  font-size: 0.55rem;
  color: var(--ink-60);
  line-height: 1.5;
}

.app-store-row {
  display: flex;
  gap: 14px;
  padding: 48px 5% 80px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   ⑩ THE NIGERIA WE CAN NAVIGATE
───────────────────────────────────────── */
#mission {
  padding: 0;
  background: var(--ivory);
}
.mission-full {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.mission-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 60% at 50% 100%,
      rgba(15, 138, 95, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 80% 50% at 80% 20%,
      rgba(244, 180, 0, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #0a1520 0%, #0d1f35 40%, #081528 100%);
}
.mission-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
.mission-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 5%;
}
.mission-label {
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mission-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.mission-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 56px;
}
.mission-headline em {
  font-style: italic;
  color: var(--gold);
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 48px;
}
.mission-pillar {
  padding: 0 32px 0 0;
}
.mission-pillar:last-child {
  padding-right: 0;
}
.mission-pillar h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.mission-pillar p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}
.mission-pillar-rule {
  width: 28px;
  height: 2px;
  background: var(--emerald);
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   ⑨ HOW AGENTS GET ONBOARDED
───────────────────────────────────────── */
#agent-steps {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

#agent-steps-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agent-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.agent-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.agent-header .section-eyebrow-text {
  color: var(--gold);
}
.agent-header .section-eyebrow-rule {
  background: var(--gold);
}
.agent-header .display-md {
  color: var(--white);
  margin: 24px 0 20px;
}
.agent-header-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
}
.agent-steps {
  display: flex;
  flex-direction: column;
  counter-reset: agent-step;
  max-width: 780px;
  margin: 0 auto;
}
.agent-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
  counter-increment: agent-step;
}
.agent-step:last-child {
  margin-bottom: 0;
}
/* connector line from this circle down to the next */
.agent-step::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    rgba(244, 180, 0, 0.55),
    rgba(244, 180, 0, 0.18)
  );
}
.agent-step:last-child::after {
  display: none;
}
.agent-step-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.1);
  border: 1.5px solid rgba(244, 180, 0, 0.4);
  color: var(--gold);
}
.agent-step-icon svg {
  width: 40px;
  height: 40px;
}
/* step number as a small badge on the circle */
.agent-step-icon::after {
  content: counter(agent-step, decimal-leading-zero);
  position: absolute;
  bottom: -4px;
  right: -4px;
  min-width: 26px;
  height: 26px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 0.625rem;
  color: var(--gold);
}
.agent-step-text {
  padding-top: 20px;
  max-width: 480px;
}
.agent-step-text h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.agent-step-text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.agent-cta-row {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  margin-top: 56px;
}
.agent-cta-row .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.agent-cta-row .btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

/* ─────────────────────────────────────────
   ⑩ DOWNLOAD CTA
───────────────────────────────────────── */
#download {
  padding: 160px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.download-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 138, 95, 0.08);
  letter-spacing: -0.03em;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.download-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.dl-left {
    flex-direction: column;
}
.dl-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dl-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--emerald);
}
.dl-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.dl-headline em {
  font-style: italic;
  color: var(--emerald);
}
.dl-sub {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink-60);
  margin-bottom: 44px;
  max-width: 420px;
}
.dl-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dl-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dl-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border: 1px solid var(--ivory-dk);
}
.dl-stat {
  padding: 28px 24px;
  background: white;
  border-right: 1px solid var(--ivory-dk);
  border-bottom: 1px solid var(--ivory-dk);
}
.dl-stat:nth-child(even) {
  border-right: none;
}
.dl-stat:nth-child(3),
.dl-stat:nth-child(4) {
  border-bottom: none;
}
.dl-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.dl-stat-num span {
  color: var(--emerald);
}
.dl-stat-label {
  font-size: 0.8125rem;
  color: var(--ink-60);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
  background: var(--ink);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}
.footer-brand-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-brand-logo span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social-row {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.2s;
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
}
.footer-social-link:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.footer-col h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────
   ⑫ WAITLIST — join the waitlist
───────────────────────────────────────── */
#waitlist {
  padding: 0;
  position: relative;
  background: var(--emerald-xdk);
  color: var(--white);
  overflow: hidden;
}
.waitlist-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 70% at 50% 110%,
      rgba(15, 138, 95, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 85% 10%,
      rgba(244, 180, 0, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(170deg, #074d35 0%, #0a6b4a 45%, #0f8a5f 100%);
}
.waitlist-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 5%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* .waitlist-left {
} */
#waitlist .section-eyebrow-text {
  color: var(--gold);
}
#waitlist .section-eyebrow-rule {
  background: var(--gold);
}
.waitlist-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 24px 0 20px;
}
.waitlist-headline em {
  font-style: italic;
  color: var(--gold);
}
.waitlist-sub {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}
.waitlist-benefits {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.waitlist-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.waitlist-benefits svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.waitlist-form-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}
.waitlist-form-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.waitlist-form-card .waitlist-form-sub {
  font-size: 0.875rem;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.wl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wl-field {
  margin-bottom: 12px;
}
.wl-field label {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 6px;
}
.wl-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--ivory-dk);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.wl-input:focus {
  outline: none;
  border-color: var(--emerald);
}
.wl-input::placeholder {
  color: var(--ink-20);
}
select.wl-input {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2314213D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 32px;
}
/* City combobox */
.wl-combobox {
  position: relative;
}
.wl-combobox-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--ivory-dk);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  cursor: text;
}
.wl-combobox-input:focus {
  outline: none;
  border-color: var(--emerald);
}
.wl-combobox-input::placeholder {
  color: var(--ink-20);
}
.wl-combobox-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ink-40);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  display: none;
  padding: 2px;
}
.wl-combobox-clear.visible {
  display: block;
}
.wl-combobox-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: var(--white);
  border: 1.5px solid var(--ivory-dk);
  border-top: none;
  border-radius: 0 0 3px 3px;
  z-index: 50;
  display: none;
}
.wl-combobox-dropdown.open {
  display: block;
}
.wl-combobox-option {
  padding: 9px 13px;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.12s;
}
.wl-combobox-option:hover,
.wl-combobox-option.highlighted {
  background: var(--ivory-md);
}
.wl-combobox-option.create-option {
  color: var(--emerald);
  font-weight: 500;
  border-top: 1px solid var(--ivory-dk);
}
.wl-combobox-option.create-option:hover {
  background: var(--ivory);
}
.wl-combobox-empty {
  padding: 12px 13px;
  font-size: 0.8125rem;
  color: var(--ink-40);
}

.wl-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.wl-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 6px 0 18px;
  font-size: 0.8125rem;
  color: var(--ink-60);
  cursor: pointer;
  line-height: 1.5;
}
.wl-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--emerald);
  margin-top: 2px;
  flex-shrink: 0;
}
.wl-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 28px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}
.wl-submit:hover {
  background: var(--emerald-dk);
}
.wl-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wl-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #b91c1c;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.wl-success {
  text-align: center;
  padding: 48px 20px;
}
.wl-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 138, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.wl-success-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wl-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.wl-success p {
  font-size: 0.9375rem;
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto 24px;
}
.wl-success-email {
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  color: var(--emerald);
  word-break: break-all;
}
.wl-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 440px;
}

/* Waitlist modal */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wl-modal.open {
  display: flex;
}
.wl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 20, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: wlFade 0.25s ease;
}
.wl-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: wlRise 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wl-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-60);
  background: var(--ivory);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.wl-modal-close:hover {
  background: var(--ivory-dk);
  color: var(--ink);
}
.wl-modal-dialog .wl-form-card-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.wl-modal-dialog .wl-form-card-head p {
  font-size: 0.9rem;
  color: var(--ink-60);
  margin-bottom: 22px;
}
body.wl-modal-lock {
  overflow: hidden;
}
@keyframes wlFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wlRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .waitlist-form-card {
    max-width: 560px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .cat-tile:first-child {
    grid-column: 1 / 3;
  }
  .cat-tile:nth-child(4),
  .cat-tile:nth-child(5),
  .cat-tile:nth-child(6),
  .cat-tile:nth-child(7),
  .cat-tile:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .verified-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .verified-right {
    max-width: 400px;
  }

  .mission-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .mission-pillar {
    padding: 0;
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta-row .btn-store,
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-top: 80px;
  }
  .hero-sub {
    font-size: 0.9375rem;
  }
  .hero-content {
    padding-bottom: 5vh;
  }
  .problem-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-scenarios {
    grid-template-columns: 1fr;
  }
  .scenario,
  .scenario:nth-child(n) {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--ivory-dk);
  }
  .scenario:last-child {
    border-bottom: none;
  }

  .categories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-tile:first-child {
    grid-column: 1 / 3;
  }

  .built-stories {
    grid-template-columns: 1fr;
  }
  .built-story,
  .built-story:nth-child(n) {
    border-right: none;
    border-bottom: 1px solid var(--ivory-dk);
  }
  .built-story:last-child {
    border-bottom: none;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }
  .ps-statement {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .biz-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .app-phones {
    gap: 10px;
    padding-bottom: 0;
    overflow-x: auto;
  }
  .phone-frame {
    width: 180px;
  }
  .phone-wrap:nth-child(2) {
    transform: none;
  }
  .phone-wrap:nth-child(4) {
    transform: none;
  }

  .mission-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .agent-step-icon {
    width: 80px;
    height: 80px;
  }
  .agent-step-icon svg {
    width: 34px;
    height: 34px;
  }
  .agent-cta-row {
    flex-direction: column;
  }
  .dl-stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .wl-form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .billing-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .cat-tile:first-child {
    grid-column: 1;
  }
  .mission-pillars {
    grid-template-columns: 1fr;
  }
  .agent-step-icon {
    width: 68px;
    height: 68px;
  }
  .agent-step-icon svg {
    width: 28px;
    height: 28px;
  }
  .waitlist-inner {
    padding: 80px 5%;
  }
  .waitlist-form-card {
    padding: 28px 20px;
  }
  .wl-modal-dialog {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sr {
    opacity: 1;
    transform: none;
  }
  .hero-scroll-line::after {
    animation: none;
  }
  .cert-badge-dot {
    animation: none;
  }
}
