:root {
  --black: #0c0c0c;
  --white: #ffffff;
  --gray-900: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --gray: var(--gray-500);
  --gray-light: var(--gray-400);
  --bg: transparent;
  --bg-panel: rgba(255, 255, 255, 0.9);
  --bg-panel-soft: rgba(245, 245, 245, 0.82);
  --card-bg: #ffffff;
  --dark: #0c0c0c;
  --dark-card: #141414;
  --accent: #0c0c0c;
  --accent-soft: rgba(12, 12, 12, 0.06);
  --accent-glow: rgba(0, 0, 0, 0.12);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --border-dark: rgba(255, 255, 255, 0.1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --max-width: 1160px;
  --nav-height: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
  --gradient-page: linear-gradient(145deg, #6b6b6b 0%, #505050 18%, #373737 40%, #212121 65%, #121212 82%, #0b0b0b 100%);
  --gradient-dark: linear-gradient(165deg, rgba(14, 14, 14, 0.92) 0%, rgba(6, 6, 6, 0.95) 45%, rgba(2, 2, 2, 0.98) 100%);
  --gradient-hero: transparent;
  --grain-opacity: 0.24;
  --grain-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  --gradient-light-overlay:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0, 0, 0, 0.46) 0%, transparent 60%);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--black);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Page texture */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: var(--gradient-page);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-bg::before {
  background: var(--gradient-light-overlay);
}

.page-bg::after {
  opacity: var(--grain-opacity);
  background-image: var(--grain-image);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

/* Shared textured surface (matches page background) */
.how.section-dark,
.benefit-card-featured,
.cta-customer,
.cta-business,
.site-footer {
  background: var(--gradient-page);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.how.section-dark::before,
.benefit-card-featured::before,
.cta-customer::before,
.cta-business::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-light-overlay);
  pointer-events: none;
  z-index: 0;
}

.how.section-dark::after,
.benefit-card-featured::after,
.cta-customer::after,
.cta-business::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--grain-opacity);
  background-image: var(--grain-image);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo-wrap,
  .hero-orb,
  .page-bg::before,
  .section-title span,
  .hero-lead {
    animation: none !important;
  }

  .hero-lead {
    background-position: 0% center;
  }

  .btn-primary::before {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--gray-100);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-glow:hover {
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  min-height: var(--nav-height);
}

.nav-brand {
  flex-shrink: 0;
}

.nav-logo {
  width: 120px;
  height: auto;
  transition: transform 0.25s ease;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.25s var(--ease-out);
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.nav .btn-primary:hover {
  background: var(--gray-800);
  border-color: var(--gray-800);
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  margin: 0 auto;
}

.nav-mobile {
  display: none;
}

.nav-mobile[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-mobile:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
  }

  .nav-mobile:not([hidden]) a:not(.btn) {
    font-weight: 600;
    padding: 0.5rem 0;
  }

  .nav-mobile:not([hidden]) .btn {
    text-align: center;
    margin-top: 0.25rem;
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
  background: transparent;
  color: var(--white);
}

.hero::after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  bottom: 20%;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.hero-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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 10%, transparent 75%);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 42rem;
  margin: 0 auto;
  z-index: 2;
}

.hero-live-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.4rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d1f14;
  background: linear-gradient(135deg, #a8f0c8 0%, #6ee7a8 100%);
  border-radius: 100px;
  box-shadow: 0 0 24px rgba(110, 231, 168, 0.35);
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.25rem;
}

.hero-logo,
.nav-logo,
.footer-logo {
  background: transparent;
}

.hero-logo {
  width: min(280px, 76vw);
  margin: 0 auto;
}

.hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 36rem;
  margin-inline: auto;
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #ffd93d 18%,
    #6bcb77 36%,
    #4d96ff 54%,
    #9b59b6 72%,
    #ff6bcb 90%,
    #ff6b6b 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-rainbow-text 10s linear infinite;
}

@keyframes hero-rainbow-text {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto 0.75rem;
}

.hero-search input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-search input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.hero-search-hint {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  width: 100%;
  max-width: 32rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-stat {
  flex: 1;
  padding: 1.25rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-value {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* Sections */
.section {
  padding: 5.5rem 1.5rem;
  position: relative;
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.55);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.1;
  color: var(--black);
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 1.25rem auto 0;
  background: var(--black);
  border-radius: 2px;
}

.section-inner > .section-title {
  margin-bottom: 2.5rem;
}

.about .section-title {
  margin-bottom: 2rem;
}

.section-title span {
  color: var(--gray-600);
}

@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-title-light {
  color: var(--white);
}

.section-title-light::after {
  background: rgba(255, 255, 255, 0.35);
}

.section-title-light span {
  color: rgba(255, 255, 255, 0.55);
}

.section-dark {
  backdrop-filter: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark .section-inner,
.section-dark .steps {
  position: relative;
  z-index: 1;
}

/* Smarter way */
.smarter {
  background: var(--bg-panel);
}

.about {
  background: var(--bg-panel-soft);
}

.why {
  background: var(--bg-panel-soft);
}

.use-cases {
  background: var(--bg-panel);
}

.categories {
  background: var(--bg-panel-soft);
}

.audiences {
  background: var(--bg-panel-soft);
}

.promise {
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.88) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.pain-card {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--black);
}

.pain-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pain-card p {
  margin: 0;
  font-weight: 600;
  font-size: 0.9875rem;
  line-height: 1.45;
  color: var(--black);
}

.smarter-solution {
  text-align: center;
  font-size: 1.25rem;
  max-width: 40rem;
  margin: 0 auto 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.smarter-solution strong {
  color: var(--black);
}

.nowrap {
  white-space: nowrap;
}

/* About */
.about-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.about-lead {
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.about-card p {
  margin: 0;
  color: var(--gray);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  position: relative;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  overflow: hidden;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
  opacity: 1;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card::after {
  display: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
}

.step-title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  text-transform: none;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Use cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.usecase-card {
  padding: 1.5rem 1.375rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.usecase-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  line-height: 1.35;
  color: var(--black);
}

.usecase-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Categories chips */
.categories-intro {
  text-align: center;
  max-width: 36rem;
  margin: -1.5rem auto 2.5rem;
  color: var(--gray);
  font-size: 1.0625rem;
}

.cat-group-title {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray-light);
}

.cat-group-title:not(:first-of-type) {
  margin-top: 2.5rem;
}

.cat-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto 0.5rem;
}

/* Categories */
.cat-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease, color 0.2s ease;
}

.cat-chips li:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cat-chips-main {
  max-width: 44rem;
}

.cat-chips-main li {
  padding: 0.75rem 1.375rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-style: normal;
}

.cat-chips-main .chip-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.chip-icon svg {
  width: 100%;
  height: 100%;
}

.cat-chips li:hover .chip-icon {
  color: var(--white);
}

.cat-chip-live {
  border-color: rgba(110, 231, 168, 0.45);
  background: rgba(110, 231, 168, 0.08);
}

.cat-chip-soon {
  opacity: 0.72;
}

.chip-status {
  margin-left: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
}

.chip-status-live {
  color: #0d5c32;
  background: rgba(110, 231, 168, 0.35);
}

.categories-more {
  text-align: center;
  margin: 2rem 0 0;
  font-weight: 700;
  font-style: normal;
  font-size: 1.0625rem;
  color: var(--gray);
}

/* Promise */
.promise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.promise-col {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.promise-col h3 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  text-transform: none;
}

.promise-col ul {
  list-style: none;
}

.promise-col li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}

.promise-col li:last-child {
  border-bottom: none;
}

.promise-no {
  background: #fff5f5;
  border-color: rgba(229, 57, 53, 0.15);
}

.promise-no h3 {
  color: #c62828;
}

.promise-no li::before {
  content: "×";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #e53935;
}

.promise-yes {
  background: linear-gradient(160deg, #fff 0%, var(--gray-100) 100%);
  border-color: rgba(0, 0, 0, 0.12);
}

.promise-yes h3 {
  color: var(--black);
}

.promise-yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%) rotate(-45deg);
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--black);
  border-bottom: 2.5px solid var(--black);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--black);
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  text-transform: none;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.benefit-card.benefit-card-featured {
  background: var(--gradient-page);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.benefit-card-featured {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

.benefit-card-featured::after {
  mix-blend-mode: normal;
  opacity: 0.14;
}

.benefit-card-featured > * {
  position: relative;
  z-index: 2;
}

.benefit-card-featured h3,
.benefit-card-featured p,
.benefit-card-featured .benefit-icon {
  position: relative;
  z-index: 2;
}

.benefit-card-featured h3 {
  color: var(--white);
}

.benefit-card-featured p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin-inline: auto;
}

.benefit-card-featured .benefit-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.benefit-card-featured:hover {
  box-shadow: var(--shadow-xl);
}

/* Audiences / compare */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.compare-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.compare-panel:hover {
  box-shadow: var(--shadow);
}

.compare-panel-dark {
  background: linear-gradient(160deg, #fff 0%, rgba(0, 0, 0, 0.03) 100%);
  border-top: 4px solid var(--black);
}

.compare-panel:not(.compare-panel-dark) {
  border-top: 4px solid var(--black);
}

.audience-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.audience-badge-dark {
  background: var(--gray-800);
  color: var(--white);
}

.compare-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  text-transform: none;
  line-height: 1.25;
}

.compare-block {
  margin-bottom: 1.25rem;
}

.compare-block h4 {
  margin: 0 0 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.compare-before {
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}

.compare-before li::before {
  content: "−";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #e53935;
}

.compare-after li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%) rotate(-45deg);
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--black);
  border-bottom: 2.5px solid var(--black);
}

.compare-block ul {
  list-style: none;
}

.compare-block li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray);
}

.compare-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  flex-shrink: 0;
}

.compare-actions .btn {
  width: 100%;
  justify-content: center;
}

.compare-panel-dark .btn-outline {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.compare-panel-dark .btn-outline:hover {
  background: var(--gray-800);
  color: var(--white);
  border-color: var(--gray-800);
}

/* Dual CTA */
.cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.cta-box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4.5rem 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 100%;
}

.cta-customer {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-customer .cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.cta-box-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  min-height: 100%;
}

.cta-box-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-box-actions {
  flex-shrink: 0;
  padding-top: 1.75rem;
}

.cta-box-actions .btn {
  width: 100%;
  justify-content: center;
}

.cta-box-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  min-height: 1.125rem;
}

.cta-customer .cta-box-label {
  color: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.cta-box-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  font-weight: 800;
  font-style: normal;
  text-transform: none;
  line-height: 1.2;
  min-height: 2.5em;
}

.cta-box-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 4.8em;
}

.cta-customer .cta-box-lead {
  color: rgba(255, 255, 255, 0.75);
}

.cta-business .cta-box-label {
  color: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.cta-business .cta-box-lead {
  color: rgba(255, 255, 255, 0.75);
}

.cta-coming-soon {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.cta-coming-soon-dark {
  color: rgba(255, 255, 255, 0.9);
}

.cta-business .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.cta-business .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-customer .btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.15);
}

.cta-customer .btn-primary:hover {
  background: var(--gray-200);
  color: var(--black);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo,
.footer-copy,
.footer-nav,
.footer-company,
.footer-contact,
.footer-social {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: min(140px, 36vw);
  margin: 0 auto 1.5rem;
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-logo {
    width: 104px;
  }

  .nav-links a {
    font-size: 0.8125rem;
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .steps,
  .pain-grid,
  .promise-split,
  .compare-grid,
  .cta-dual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.25rem 4rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat {
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 3.75rem 1.25rem;
  }

  .benefits-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 1.75rem 1.25rem;
  }

  .cta-box {
    padding: 3.5rem 1.25rem;
  }


  .smarter-solution .nowrap {
    white-space: normal;
  }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search .btn {
    width: 100%;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Social proof */
.proof {
  background: var(--bg-panel-soft);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.proof-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.proof-stat-value {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.proof-stat-label {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.trust-badges li {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--gray-700);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.testimonial-card footer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* City links */
.city-links {
  margin-top: 2.5rem;
  text-align: center;
}

.city-links-label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.city-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.city-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.city-links a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* FAQ */
.faq {
  background: var(--bg-panel);
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: 0.625rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--gray-500);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.25rem 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--black);
  text-decoration: underline;
}

/* Lead forms */
.lead-form {
  margin-top: 1rem;
  text-align: left;
}

.form-row {
  margin-bottom: 0.625rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
}

.lead-form-dark input,
.lead-form-dark select {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.lead-form-dark input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lead-form-dark select {
  color: rgba(255, 255, 255, 0.85);
}

.lead-form-dark select option {
  color: var(--black);
}

.lead-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2e7d32;
}

.lead-form-dark .form-success {
  color: #81c784;
}

.form-error {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #c62828;
}

.lead-form-dark .form-error {
  color: #ef9a9a;
}

.cta-box-body .lead-form {
  flex: 1;
}

/* Footer extras */
.footer-company {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact,
.footer-social {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
}

.footer-contact a,
.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: var(--white);
}

/* Legal pages */
.legal-page {
  padding: 6rem 1.5rem 4rem;
  max-width: 46rem;
  margin: 0 auto;
  background: var(--bg-panel);
  min-height: 60vh;
}

.legal-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.legal-page .legal-updated {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.legal-lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
}

.legal-nav a {
  color: var(--gray-700);
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--black);
  text-decoration: underline;
}

.legal-callout {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(110, 231, 168, 0.12);
  border: 1px solid rgba(110, 231, 168, 0.35);
  border-radius: var(--radius);
}

.legal-callout h2 {
  margin: 0 0 0.75rem !important;
  font-size: 1rem !important;
}

.legal-callout p {
  margin: 0 0 0.5rem;
}

.legal-callout ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal-callout li {
  margin-bottom: 0.25rem;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.legal-section-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.legal-page h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--black);
  text-decoration: underline;
}

.legal-steps {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.legal-steps li {
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.legal-contact-card {
  margin: 1rem 0 0;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.legal-contact-card p {
  margin: 0 0 0.35rem;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

/* City page */
.city-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  color: var(--white);
}

.city-hero-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.city-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.city-hero p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.city-content {
  padding: 3rem 1.5rem 4rem;
  max-width: 42rem;
  margin: 0 auto;
  background: var(--bg-panel);
}

.city-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.city-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--gray-700);
}

.city-content li {
  margin-bottom: 0.5rem;
}
