/* Wingo Analyzer — landing + legal */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Syne:wght@500;600;700;800&display=swap");

:root {
  --bg-top: #0e1118;
  --bg-mid: #080b12;
  --bg-bottom: #05070d;
  --surface: #12161f;
  --surface-elevated: #181e2a;
  --cyan: #22d3ee;
  --cyan-bright: #67e8f9;
  --violet: #a78bfa;
  --violet-deep: #4c1d95;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e2635;
  --border-accent: rgba(34, 211, 238, 0.22);
  --glow: rgba(34, 211, 238, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 2.8vw, 17px);
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg-bottom);
  min-height: 100vh;
  min-height: 100dvh;
}

body.nav-open {
  overflow: hidden;
}

/* ——— Background layers ——— */
.bg-shell {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-bottom) 100%);
}

.bg-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -15%, var(--glow), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 5%, rgba(76, 29, 149, 0.18), transparent 52%),
    radial-gradient(ellipse 45% 35% at 0% 35%, rgba(8, 145, 178, 0.1), transparent 48%);
  pointer-events: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  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: min(72px, 12vw) min(72px, 12vw);
  mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 92%);
  pointer-events: none;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-float 18s var(--ease) infinite;
}

.orb-a {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: rgba(34, 211, 238, 0.15);
  top: -8%;
  right: -10%;
  animation-delay: 0s;
}

.orb-b {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  background: rgba(139, 92, 246, 0.12);
  bottom: 20%;
  left: -12%;
  animation-delay: -6s;
}

.orb-c {
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  background: rgba(8, 145, 178, 0.1);
  top: 45%;
  right: 15%;
  animation-delay: -12s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, 3%) scale(1.04);
  }
  66% {
    transform: translate(-2%, 1%) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb {
    animation: none;
  }
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--cyan-bright);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.nav-toggle:focus-visible {
  outline-offset: 2px;
}

.wrap {
  width: min(100% - clamp(24px, 6vw, 48px), var(--max));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(30, 38, 53, 0.85);
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding-block: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.2rem);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  z-index: 210;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.2), rgba(76, 29, 149, 0.35));
  border: 1px solid var(--border-accent);
  display: grid;
  place-items: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.logo-accent {
  font-weight: 800;
  background: linear-gradient(105deg, #2dd4bf, var(--cyan), #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  cursor: pointer;
  z-index: 210;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a:not(.nav-cta) {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
}

.nav-desktop a:not(.nav-cta):hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #041016 !important;
  background: linear-gradient(105deg, #2dd4bf, var(--cyan), #0ea5e9);
  box-shadow: 0 10px 32px rgba(34, 211, 238, 0.22);
  margin-left: 8px;
}

.nav-cta:hover {
  filter: brightness(1.07);
  color: #041016 !important;
}

.nav-cta--block {
  margin-left: 0;
  width: 100%;
  margin-top: 12px;
  padding: 16px;
}

.nav-panel {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 199;
  background: rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px 0 48px;
  overflow-y: auto;
  animation: panel-in 0.35s var(--ease);
}

@keyframes panel-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-panel-inner a:not(.nav-cta) {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.nav-panel-inner a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }
}

@media (min-width: 901px) {
  .nav-panel {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ——— Hero ——— */
.hero {
  padding: clamp(40px, 8vw, 88px) 0 clamp(56px, 10vw, 100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 42rem;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual-caption {
    text-align: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border-accent);
  background: rgba(34, 211, 238, 0.06);
  margin: 0 0 22px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: pulse-dot 2.5s var(--ease) infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot {
    animation: none;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 0 0 20px;
  max-width: 14ch;
}

@media (max-width: 960px) {
  .hero-title {
    max-width: none;
  }
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(105deg, #5eead4, var(--cyan), #7dd3fc, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 38ch;
  margin: 0 0 32px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .hero-lead {
    max-width: none;
    margin-inline: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  color: #041016;
  background: linear-gradient(105deg, #2dd4bf, var(--cyan), #0ea5e9);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 14px 44px rgba(34, 211, 238, 0.25);
  transition: transform 0.2s var(--ease), filter 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 50px rgba(34, 211, 238, 0.3);
}

.btn-primary--lg {
  padding: 17px 32px;
  font-size: 1rem;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--border-accent);
  background: rgba(34, 211, 238, 0.06);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 5rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Hero preview */
.hero-visual {
  position: relative;
}

.hero-visual-caption {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-preview {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: linear-gradient(165deg, rgba(24, 30, 42, 0.98), rgba(18, 22, 31, 0.95));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: clamp(18px, 4vw, 28px);
  text-align: left;
  overflow: hidden;
}

.preview-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-preview::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.45),
    transparent 38%,
    transparent 62%,
    rgba(139, 92, 246, 0.25)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.preview-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.preview-dots {
  display: flex;
  gap: 7px;
}

.preview-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}

.preview-dots span:first-child {
  background: #f87171;
}

.preview-dots span:nth-child(2) {
  background: #facc15;
}

.preview-dots span:nth-child(3) {
  background: #4ade80;
}

.preview-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.preview-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  flex-shrink: 0;
}

.preview-body {
  position: relative;
  display: grid;
  gap: 12px;
}

.preview-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(30, 38, 53, 0.9);
  transition: border-color 0.2s, background 0.2s;
}

.preview-row:hover {
  border-color: rgba(34, 211, 238, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.preview-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.preview-row-icon--violet {
  color: var(--violet);
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}

.preview-row-text {
  min-width: 0;
  flex: 1;
}

.preview-row strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.preview-row small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.preview-pill {
  flex-shrink: 0;
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--border-accent);
}

.preview-pill--violet {
  color: var(--violet);
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
}

@media (max-width: 400px) {
  .preview-row {
    flex-wrap: wrap;
  }

  .preview-pill {
    margin-left: 54px;
    width: fit-content;
  }
}

/* ——— Manifesto ——— */
.manifesto {
  padding: clamp(48px, 10vw, 96px) 0;
  border-block: 1px solid rgba(30, 38, 53, 0.6);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.03), transparent 55%);
}

.manifesto-inner {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.manifesto-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0;
}

.manifesto-quote em {
  font-style: normal;
  background: linear-gradient(105deg, var(--cyan), #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ——— Features ——— */
.section-features {
  padding: clamp(56px, 10vw, 100px) 0 clamp(64px, 12vw, 120px);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 56px);
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.section-sub {
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.features-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.5vw, 20px);
}

@media (min-width: 640px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .features-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card--wide {
    grid-column: span 2;
  }
}

.feature-card {
  position: relative;
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at 50% 0%, rgba(34, 211, 238, 0.07), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(34, 211, 238, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--accent {
  border-color: rgba(34, 211, 238, 0.18);
  background: linear-gradient(165deg, rgba(24, 30, 42, 0.95), var(--surface));
}

.feature-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(241, 245, 249, 0.04);
  pointer-events: none;
  user-select: none;
}

.feature-icon-svg {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(76, 29, 149, 0.15));
  border: 1px solid var(--border-accent);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.feature-mini-list {
  margin: 18px 0 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.feature-mini-list li {
  margin-bottom: 6px;
}

@media (max-width: 1099px) {
  .feature-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .feature-card:hover {
    transform: none;
  }
}

/* ——— CTA ——— */
.cta-band {
  position: relative;
  margin-top: clamp(40px, 8vw, 64px);
  padding: clamp(40px, 7vw, 64px) clamp(24px, 5vw, 48px);
  border-radius: calc(var(--radius-lg) + 4px);
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: linear-gradient(165deg, rgba(24, 30, 42, 0.98), rgba(12, 15, 22, 0.99));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.cta-band-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.14), transparent 45%);
  pointer-events: none;
}

.cta-band-content {
  position: relative;
}

.cta-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text-primary);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 0 28px;
  max-width: 46ch;
  margin-inline: auto;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ——— Footer ——— */
.site-footer {
  padding: clamp(40px, 8vw, 64px) 0 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 40px);
  padding-bottom: 40px;
}

.footer-brand-block {
  max-width: 280px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--cyan-bright);
}

.footer-bottom {
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(30, 38, 53, 0.7);
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: span 1;
  }
}

/* ——— Legal pages ——— */
.legal-page {
  padding: 48px 0 96px;
}

body.legal-standalone .legal-page {
  padding-top: max(32px, env(safe-area-inset-top));
  padding-bottom: max(48px, env(safe-area-inset-bottom));
}

.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 36px 0 12px;
}

.legal-page h2:first-of-type {
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  margin: 0 0 14px;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin: 0 0 20px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-note {
  margin-top: 48px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.88rem;
  color: var(--text-muted);
}

