:root {
  color-scheme: light;
  --blue: #2563eb;
  --blue-mid: #3b82f6;
  --blue-deep: #1e3a8a;
  --purple: #7c3aed;
  --pink: #db2777;
  --grad: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #db2777 100%);
  --grad-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.14));
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --border: #e2e8f0;
  --page-max: 80rem;
  --page-max-narrow: 40rem;
  --page-max-pricing: 68.75rem;
  --gutter: clamp(1rem, 2.4vw, 2rem);
  --section-space: clamp(4.5rem, 7vw, 6.75rem);
  --section-space-lg: clamp(2.5rem, 4.5vw, 4.25rem);
  --content-measure: 34rem;
  --copy-measure: 40rem;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --radius-lg: clamp(1.5rem, 2vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(4.5rem, 8vw, 6.5rem);
}

body {
  font-family: "DM Sans", sans-serif;
  color: #0f172a;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, -180%);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 4px;
}

#main-content {
  scroll-margin-top: clamp(5rem, 8vw, 6.75rem);
}

#main-content:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  width: 100%;
  max-width: calc(var(--page-max) + (var(--gutter) * 2));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.container-pricing {
  width: 100%;
  max-width: calc(var(--page-max-pricing) + (var(--gutter) * 2));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: calc(var(--page-max-narrow) + (var(--gutter) * 2));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-bg {
  background: var(--grad);
}

.grad-border-card {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--grad) border-box;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(0.8125rem, 0.9vw + 0.45rem, 0.9375rem) clamp(1.25rem, 1.8vw + 0.5rem, 1.75rem);
  background: var(--grad);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.2vw + 0.82rem, 0.9375rem);
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.2vw + 0.82rem, 0.9375rem);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  gap: 10px;
  color: var(--blue);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled,
nav.is-open {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

.nav-shell {
  position: relative;
}

.nav-inner {
  height: clamp(4.25rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
}

.nav-inner > * {
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--grad);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.brand-mark-logo {
  display: block;
  width: 24px;
  height: auto;
}

.brand-wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.1875rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  min-width: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(1.25rem, 2.2vw, 2.25rem);
}

.nav-actions {
  gap: clamp(0.875rem, 1.4vw, 1.25rem);
}

.nav-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.875rem, 0.12vw + 0.84rem, 0.9rem);
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0f172a;
}

.nav-cta {
  padding: 10px 22px;
  font-size: clamp(0.875rem, 0.12vw + 0.84rem, 0.9rem);
}

.nav-cta i,
.nav-cta svg,
.price-primary-cta i,
.price-primary-cta svg {
  width: 14px;
  height: 14px;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(248, 250, 252, 0.92);
  border-color: rgba(148, 163, 184, 0.22);
}

.mobile-menu-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(148, 163, 184, 0.3);
}

.mobile-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-icon-close {
  display: none;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon-open {
  display: none;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-icon-close {
  display: inline-flex;
}

.mobile-menu-btn i,
.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  color: #0f172a;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.mobile-nav-panel[hidden] {
  display: none;
}

.mobile-nav-links,
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  gap: 6px;
}

.mobile-nav-actions {
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.94);
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
  background: #f8fafc;
  color: #0f172a;
}

.mobile-nav-link-secondary {
  color: #0f172a;
}

.mobile-nav-cta {
  width: 100%;
}

.mobile-nav-cta i,
.mobile-nav-cta svg {
  width: 14px;
  height: 14px;
}

.hero-section {
  min-height: clamp(36rem, calc(100svh - 4.5rem), 44rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(4.25rem, 5vw, 4.5rem);
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(124, 58, 237, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(219, 39, 119, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.75;
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4.4vw, 4.5rem);
  padding-top: clamp(1.5rem, 3vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.hero-content {
  flex: 0 1 clamp(31rem, 38vw, 35rem);
  max-width: clamp(31rem, 38vw, 35rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#h-h1 {
  max-width: 11.65ch;
  font-size: clamp(3.75rem, 4.2vw + 0.5rem, 5.2rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.032em;
  margin-bottom: clamp(0.875rem, 1.7vw, 1.125rem);
  color: #0f172a;
  text-wrap: balance;
}

#h-h1 .grad-text {
  display: inline-block;
  max-width: 11.4ch;
}

.hero-nowrap {
  white-space: nowrap;
}

#h-sub {
  font-size: clamp(0.975rem, 0.32vw + 0.91rem, 1.0625rem);
  line-height: 1.68;
  color: #475569;
  max-width: min(33rem, 100%);
  margin-bottom: clamp(1.25rem, 2vw, 1.625rem);
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: clamp(0.875rem, 1.8vw, 1.75rem);
  margin-bottom: clamp(1rem, 1.7vw, 1.5rem);
  flex-wrap: wrap;
}

.hero-ctas .btn-primary i,
.hero-ctas .btn-primary svg,
.hero-ctas .btn-ghost i,
.hero-ctas .btn-ghost svg {
  width: 15px;
  height: 15px;
}

#h-trust {
  font-size: 13px;
  color: #64748b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.hero-visual-wrap {
  flex: 1 1 38rem;
  position: relative;
  width: min(100%, 40rem);
  max-width: 40rem;
  height: clamp(34rem, 46vw, 39rem);
  min-width: clamp(32rem, 34vw, 36rem);
  margin-left: auto;
}

.hero-orb {
  position: absolute;
  width: clamp(24rem, 32vw, 28.75rem);
  height: clamp(24rem, 32vw, 28.75rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background: radial-gradient(
    ellipse at center,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(37, 99, 235, 0.07) 45%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.hero-lines .conn-line:nth-of-type(1) {
  animation: line-pulse 3.2s ease-in-out 0s infinite;
}

.hero-lines .conn-line:nth-of-type(2) {
  animation: line-pulse 3.2s ease-in-out 0.5s infinite;
}

.hero-lines .conn-line:nth-of-type(3) {
  animation: line-pulse 3.2s ease-in-out 1s infinite;
}

.hero-lines .conn-line:nth-of-type(4) {
  animation: line-pulse 3.2s ease-in-out 1.5s infinite;
}

.match-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 249, 255, 0.54) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08));
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow:
    0 26px 60px rgba(79, 70, 229, 0.12),
    0 12px 26px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  z-index: 10;
  backdrop-filter: blur(24px) saturate(185%);
  -webkit-backdrop-filter: blur(24px) saturate(185%);
  min-width: 178px;
}

.match-card::before,
.float-tag::before,
.notif-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 52%);
  pointer-events: none;
  z-index: 0;
}

.match-card > *,
.float-tag > *,
.notif-pill > * {
  position: relative;
  z-index: 1;
}

.match-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#mc1 {
  top: 58px;
  left: 8px;
  width: 192px;
}

#mc2 {
  top: 68px;
  right: 8px;
  width: 188px;
}

#mc3 {
  bottom: 88px;
  left: 8px;
  width: 185px;
}

#mc4 {
  bottom: 80px;
  right: 8px;
  width: 185px;
}

.match-card-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.match-card-dist {
  font-size: 11.5px;
  color: #64748b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.match-badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 4px;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-size: 11.5px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.match-badge i,
.match-badge svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.1;
  flex-shrink: 0;
}

#mc1 .match-badge {
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.82), rgba(224, 231, 255, 0.58));
  border-color: rgba(79, 70, 229, 0.1);
  color: #4338ca;
}

#mc2 .match-badge {
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.84), rgba(237, 233, 254, 0.58));
  border-color: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

#mc3 .match-badge {
  background: linear-gradient(180deg, rgba(255, 241, 242, 0.84), rgba(252, 231, 243, 0.58));
  border-color: rgba(219, 39, 119, 0.1);
  color: #be185d;
}

#mc4 .match-badge {
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.84), rgba(224, 231, 255, 0.58));
  border-color: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
  position: relative;
}

#mc1 .avatar-circle {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

#mc2 .avatar-circle {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
}

#mc3 .avatar-circle {
  background: linear-gradient(135deg, #db2777, #ec4899);
}

#mc4 .avatar-circle {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2.5px solid white;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

#c-you {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
}

.you-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 10px rgba(37, 99, 235, 0.1),
    0 0 0 20px rgba(37, 99, 235, 0.05);
  margin: 0 auto;
}

#c-you i,
#c-you svg {
  width: 30px;
  height: 30px;
  color: white;
  stroke-width: 2;
}

.you-label {
  margin-top: -4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.72)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 12px 24px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
}

.float-tag {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 255, 0.58)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow:
    0 18px 36px rgba(79, 70, 229, 0.1),
    0 8px 18px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 15;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.float-tag i,
.float-tag svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.1;
  flex-shrink: 0;
}

#ft1 {
  left: 50%;
  top: 36%;
  transform: translateX(calc(-145% - 20px));
  color: #4338ca;
}

#ft2 {
  right: 8%;
  top: 42%;
  color: #7c3aed;
}

.notif-pill {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 249, 255, 0.58)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 22px 48px rgba(79, 70, 229, 0.12),
    0 10px 22px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  z-index: 20;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

#c-notif {
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.notif-pill > div:first-child {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-pill > div:first-child i,
.notif-pill > div:first-child svg {
  width: 16px;
  height: 16px;
  color: white;
  stroke-width: 2;
}

.notif-pill > div:last-child > div:first-child {
  font-size: 12.5px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #0f172a;
}

.notif-pill > div:last-child > div:last-child {
  font-size: 11px;
  color: #64748b;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stat-bar {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.stat-divider + .stat-divider {
  border-left: 1px solid var(--border);
}

.stat-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.25rem;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 3vw, 3rem);
  text-align: center;
  min-width: 0;
}

.stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 1.1vw + 1.1rem, 1.625rem);
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(0.75rem, 0.18vw + 0.72rem, 0.8125rem);
  color: #64748b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  max-width: 14ch;
  margin: 0.25rem auto 0;
  text-wrap: pretty;
}

.stat-label-wide {
  max-width: 12ch;
  white-space: normal;
}

.social-proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(124, 58, 237, 0.09), transparent 22%),
    linear-gradient(180deg, #f7f9ff 0%, #fbfcff 100%);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: minmax(19rem, 26rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.social-proof-grid > * {
  min-width: 0;
}

.social-proof-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 32rem;
}

.social-proof-copy .section-label {
  padding: 8px 18px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.08);
}

.social-proof-title {
  max-width: 13ch;
  margin-bottom: 0;
  text-wrap: balance;
}

.social-proof-copy .social-proof-body {
  max-width: 36ch;
  margin: clamp(1rem, 1.8vw, 1.125rem) 0 0;
}

.social-proof-stage {
  position: relative;
  min-height: clamp(34rem, 46vw, 40rem);
  min-width: 0;
}

.social-proof-glow {
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.3) 52%, transparent 72%),
    radial-gradient(circle at center, rgba(124, 58, 237, 0.12) 0%, rgba(219, 39, 119, 0.08) 44%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.social-proof-connector {
  position: absolute;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.35), rgba(219, 39, 119, 0.2));
  transform-origin: left center;
  border-radius: 999px;
  opacity: 0.7;
  z-index: 0;
}

.social-proof-connector-1 {
  width: 170px;
  top: 150px;
  left: 140px;
  transform: rotate(16deg);
}

.social-proof-connector-2 {
  width: 178px;
  top: 158px;
  right: 126px;
  transform: rotate(-18deg);
}

.social-proof-connector-3 {
  width: 182px;
  bottom: 150px;
  left: 150px;
  transform: rotate(-16deg);
}

.social-proof-connector-4 {
  width: 186px;
  bottom: 138px;
  right: 134px;
  transform: rotate(18deg);
}

.social-proof-portraits {
  position: absolute;
  inset: 0;
}

.social-proof-portrait {
  position: absolute;
  width: 168px;
  padding-bottom: 18px;
  animation: social-float 6.8s ease-in-out infinite;
}

.social-proof-portrait img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 48px rgba(79, 70, 229, 0.1),
    0 10px 22px rgba(15, 23, 42, 0.08);
  background: #e2e8f0;
}

.social-proof-portrait figcaption {
  position: absolute;
  left: 14px;
  bottom: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 255, 0.72)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 14px 30px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  max-width: calc(100% - 28px);
}

.social-proof-portrait-1 {
  top: 32px;
  left: 0;
  animation-delay: 0s;
}

.social-proof-portrait-2 {
  top: 54px;
  right: 0;
  animation-delay: 0.9s;
}

.social-proof-portrait-2 figcaption {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 8px 18px;
  text-align: center;
  max-width: none;
}

.social-proof-portrait-4 figcaption {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 8px 18px;
  text-align: center;
  max-width: none;
}

.social-proof-portrait-3 {
  left: 18px;
  bottom: 34px;
  animation-delay: 1.4s;
}

.social-proof-portrait-4 {
  right: 14px;
  bottom: 18px;
  animation-delay: 0.4s;
}

.social-proof-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 390px);
  transform: translate(-50%, -50%);
  z-index: 1;
  min-width: 0;
}

.social-proof-pill {
  position: absolute;
  top: -24px;
  right: 12px;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 249, 255, 0.6)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    0 20px 42px rgba(79, 70, 229, 0.1),
    0 10px 22px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  animation: social-float 5.4s ease-in-out infinite;
}

.social-proof-pill::before,
.social-proof-card-light::before,
.social-proof-toast::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 54%);
  pointer-events: none;
  z-index: 0;
}

.social-proof-pill > *,
.social-proof-card-light > *,
.social-proof-toast > * {
  position: relative;
  z-index: 1;
}

.social-proof-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
}

.social-proof-card {
  border-radius: 30px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
}

.social-proof-card-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.24), transparent 30%),
    linear-gradient(180deg, #121b31 0%, #0b1426 100%);
  color: white;
}

.social-proof-card-dark::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(255, 255, 255, 0.35), rgba(219, 39, 119, 0.15));
}

.social-proof-card-light {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: -14px;
  margin-left: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 255, 0.68)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    0 28px 54px rgba(79, 70, 229, 0.1),
    0 12px 24px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  color: #0f172a;
  animation: social-float 6.2s ease-in-out infinite;
  animation-delay: 0.7s;
}

.social-proof-card-kicker {
  margin-bottom: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.social-proof-card-dark .social-proof-card-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.social-proof-card-quote {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.social-proof-card-light .social-proof-card-quote {
  font-size: 21px;
}

.social-proof-card-meta {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
}

.social-proof-card-dark .social-proof-card-meta {
  color: rgba(255, 255, 255, 0.72);
}

.social-proof-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-proof-card-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.social-proof-toast {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 255, 0.64)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    0 20px 42px rgba(79, 70, 229, 0.1),
    0 10px 20px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.social-proof-toast-left {
  top: 174px;
  left: -72px;
  width: 252px;
  animation: social-float 5.8s ease-in-out infinite;
}

.social-proof-toast-right {
  right: -78px;
  bottom: 122px;
  width: 248px;
  display: block;
  animation: social-float 6.5s ease-in-out infinite;
  animation-delay: 1.1s;
}

.social-proof-toast-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.1);
  background: #e2e8f0;
}

.social-proof-toast-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof-toast-content p,
.social-proof-toast-right p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  overflow-wrap: anywhere;
}

.social-proof-toast-content span,
.social-proof-toast-right span {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
}

.social-proof-toast-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(238, 242, 255, 0.84), rgba(224, 231, 255, 0.62)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(79, 70, 229, 0.1);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2563eb;
}

.section {
  padding: var(--section-space) 0;
}

.section-white {
  background: white;
}

.section-slate {
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header-lg {
  margin-bottom: clamp(2.75rem, 5.4vw, 4.25rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #eef2ff;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #4338ca;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 2.2vw + 1.15rem, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.08;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  text-wrap: balance;
}

.section-copy {
  font-size: clamp(0.9375rem, 0.18vw + 0.9rem, 1rem);
  color: #64748b;
  margin: 0 auto;
  line-height: 1.7;
  max-width: min(100%, var(--copy-measure));
  text-wrap: pretty;
}

.section-copy-sm {
  max-width: 360px;
}

.section-copy-md {
  max-width: 420px;
}

.section-copy-lg {
  max-width: 400px;
}

.how-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-inline: auto;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.how-title-line {
  display: block;
  text-wrap: balance;
}

.how-dynamic-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.1em 0.42em 0.16em;
  border-radius: 0.42em;
  border: 1px solid rgba(99, 102, 241, 0.12);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.11), rgba(124, 58, 237, 0.09));
  color: #1d4ed8;
  box-shadow:
    inset 0 -1px 0 rgba(37, 99, 235, 0.1),
    0 14px 34px rgba(79, 70, 229, 0.08);
  white-space: nowrap;
}

.how-dynamic-phrase {
  display: inline-block;
  line-height: 1;
  transform-origin: center bottom;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.how-dynamic-phrase.is-changing {
  opacity: 0;
  transform: translateY(16%);
}

.steps-grid {
  --step-gap: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--step-gap);
  position: relative;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 clamp(0.25rem, 0.9vw, 0.5rem);
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(50% + 34px);
  width: calc(100% + var(--step-gap) - 68px);
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.18), rgba(99, 102, 241, 0.35), rgba(148, 163, 184, 0.18));
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.step-icon-ring {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  box-shadow:
    0 0 0 14px white,
    0 12px 32px rgba(79, 70, 229, 0.18);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.step-icon-ring i,
.step-icon-ring svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 2;
}

.step-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-copy {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
  max-width: 230px;
  margin: 0 auto;
  text-wrap: pretty;
}

.how-footnote {
  margin-top: 28px;
  text-align: center;
}

.audience-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(124, 58, 237, 0.08), transparent 30%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 25.5rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.25rem);
  align-items: center;
}

.audience-copy {
  max-width: 26rem;
}

.audience-copy .section-label {
  padding: 8px 18px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.08);
}

.audience-title {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  max-width: none;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.audience-title span {
  display: block;
}

.audience-body {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1rem, 0.34vw + 0.95rem, 1.125rem);
  line-height: 1.65;
  color: #64748b;
}

.audience-quote-shell {
  max-width: 30rem;
  margin-top: clamp(1.5rem, 3vw, 2.125rem);
  padding-top: clamp(1rem, 2vw, 1.375rem);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.audience-quote-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6366f1;
}

.audience-quote {
  margin: 14px 0 0;
  padding-left: 18px;
  border-left: 3px solid rgba(37, 99, 235, 0.18);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.125rem);
}

.audience-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(12.75rem, 18vw, 13.75rem);
  padding: clamp(1.5rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.5rem);
  border-radius: clamp(1.5rem, 2vw, 1.625rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 255, 0.66)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 22px 48px rgba(79, 70, 229, 0.08),
    0 10px 22px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 56%);
  pointer-events: none;
  z-index: 0;
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 58px rgba(79, 70, 229, 0.1),
    0 14px 26px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  border-color: rgba(37, 99, 235, 0.18);
}

.audience-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(238, 242, 255, 0.4)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 12px 24px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: #4338ca;
}

.audience-card-icon i,
.audience-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.audience-card h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.audience-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-wrap: pretty;
}

.problem-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.problem-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(2rem, 4.5vw, 3.25rem);
  border-radius: clamp(1.75rem, 3vw, 2.25rem);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #121b31 0%, #0b1426 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.18);
}

.problem-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.section-label-inverse {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.problem-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.problem-title {
  color: white;
}

.problem-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.problem-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: center;
}

.problem-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.problem-point-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(124, 58, 237, 0.24));
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
}

.problem-point p {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}

.activity-notes-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(124, 58, 237, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.activity-notes-header {
  text-align: center;
  margin-bottom: 40px;
}

.activity-notes-title {
  max-width: 18ch;
  margin-inline: auto;
}

.activity-notes-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1200px;
}

.activity-notes-stage > * {
  min-width: 0;
}

.activity-notes-stage::before {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08) 40%, transparent 72%);
  filter: blur(32px);
  pointer-events: none;
}

.activity-notes-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: start;
}

.activity-notes-column-offset {
  padding-top: 40px;
}

.activity-notes-column:first-child .activity-note:nth-child(1) {
  --note-shift-x: -14px;
  --note-rotate: -2.4deg;
  --note-float-x: 8px;
  --note-float-y: -12px;
  --note-float-rotate: 1.2deg;
  --note-duration: 11.8s;
}

.activity-notes-column:first-child .activity-note:nth-child(2) {
  --note-shift-x: 10px;
  --note-rotate: 1.6deg;
  --note-float-x: -6px;
  --note-float-y: -10px;
  --note-float-rotate: -0.8deg;
  --note-duration: 10.8s;
}

.activity-notes-column:first-child .activity-note:nth-child(3) {
  --note-shift-x: -6px;
  --note-rotate: -1.1deg;
  --note-float-x: 5px;
  --note-float-y: -8px;
  --note-float-rotate: 0.6deg;
  --note-duration: 12.4s;
}

.activity-notes-column:first-child .activity-note:nth-child(4) {
  --note-shift-x: 12px;
  --note-rotate: 1.9deg;
  --note-float-x: -8px;
  --note-float-y: -11px;
  --note-float-rotate: -0.9deg;
  --note-duration: 11.2s;
}

.activity-notes-column-offset .activity-note:nth-child(1) {
  --note-shift-x: 12px;
  --note-rotate: 2.1deg;
  --note-float-x: -7px;
  --note-float-y: -12px;
  --note-float-rotate: -1deg;
  --note-duration: 11.4s;
}

.activity-notes-column-offset .activity-note:nth-child(2) {
  --note-shift-x: -10px;
  --note-rotate: -1.4deg;
  --note-float-x: 7px;
  --note-float-y: -9px;
  --note-float-rotate: 0.7deg;
  --note-duration: 10.6s;
}

.activity-notes-column-offset .activity-note:nth-child(3) {
  --note-shift-x: 8px;
  --note-rotate: 1.2deg;
  --note-float-x: -5px;
  --note-float-y: -8px;
  --note-float-rotate: -0.5deg;
  --note-duration: 12.2s;
}

.activity-notes-column-offset .activity-note:nth-child(4) {
  --note-shift-x: -12px;
  --note-rotate: -2.1deg;
  --note-float-x: 9px;
  --note-float-y: -13px;
  --note-float-rotate: 1deg;
  --note-duration: 11s;
}

.activity-note {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 15px 16px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 255, 0.68)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.08),
    0 8px 18px rgba(79, 70, 229, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transform: translate3d(var(--note-shift-x, 0px), 0, 0) rotate(var(--note-rotate, 0deg));
  transform-origin: center;
  will-change: transform, box-shadow;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  animation: activity-note-drift var(--note-duration, 12s) ease-in-out infinite;
}

.activity-note::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 52%);
  pointer-events: none;
  opacity: 0.92;
}

.activity-note::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.42) 48%, transparent 66%);
  opacity: 0.42;
  transform: translateX(-135%) rotate(8deg);
  pointer-events: none;
  animation: note-sheen 10s linear infinite;
}

.activity-notes-column .activity-note:nth-child(2) {
  animation-delay: -2.2s;
}

.activity-notes-column .activity-note:nth-child(3) {
  animation-delay: -4.4s;
}

.activity-notes-column .activity-note:nth-child(4) {
  animation-delay: -6.6s;
}

.activity-note-emphasis {
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow:
    0 24px 52px rgba(37, 99, 235, 0.12),
    0 12px 24px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.activity-note:hover {
  animation-play-state: paused;
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow:
    0 28px 56px rgba(37, 99, 235, 0.12),
    0 16px 28px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translate3d(var(--note-shift-x, 0px), -10px, 0) rotate(var(--note-rotate, 0deg)) scale(1.018);
}

.activity-note > * {
  position: relative;
  z-index: 1;
}

.activity-note-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.activity-note-app {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.activity-note-app-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: white;
  background: var(--grad);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.2);
}

.activity-note-app-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(96, 165, 250, 0.24);
  opacity: 0;
  transform: scale(0.9);
  animation: note-ping 3.4s ease-out infinite;
}

.activity-note-app-name,
.activity-note-time {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
}

.activity-note-app-name {
  font-weight: 700;
  color: #334155;
}

.activity-note-avatar-maya {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.activity-note-avatar-jordan {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.activity-note-avatar-alex {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

.activity-note-avatar-elena {
  background: linear-gradient(135deg, #8b5cf6, #2563eb);
}

.activity-note-avatar-jess {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.activity-note-avatar-chris {
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.activity-note-avatar-nina {
  background: linear-gradient(135deg, #7c3aed, #6366f1);
}

.activity-note-avatar-talia {
  background: linear-gradient(135deg, #2563eb, #db2777);
}

.activity-note-time {
  color: #64748b;
}

.activity-note-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #0f172a;
  overflow-wrap: anywhere;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

.feature-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 255, 0.66)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: clamp(1.25rem, 1.8vw, 1.375rem);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  box-shadow:
    0 22px 48px rgba(79, 70, 229, 0.08),
    0 10px 22px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card-primary {
  grid-column: span 2;
  padding: clamp(1.75rem, 2.8vw, 2.375rem) clamp(1.5rem, 2.8vw, 2.125rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 255, 0.74)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(124, 58, 237, 0.1));
  box-shadow:
    0 32px 68px rgba(79, 70, 229, 0.12),
    0 14px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 56%);
  pointer-events: none;
  z-index: 0;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 58px rgba(79, 70, 229, 0.1),
    0 14px 26px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.18);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 1.8vw, 1.25rem);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.feature-card-primary .icon-chip {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.feature-card-primary .icon-chip i,
.feature-card-primary .icon-chip svg {
  width: 24px;
  height: 24px;
}

.icon-chip i,
.icon-chip svg {
  width: 22px;
  height: 22px;
  color: white;
  stroke-width: 2;
}

.feature-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
  text-wrap: balance;
}

.feature-card-primary .feature-title {
  max-width: 13ch;
  font-size: clamp(1.5rem, 2.1vw, 2.125rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  text-wrap: pretty;
}

.feature-card-primary .feature-desc {
  max-width: 34ch;
  font-size: clamp(0.9375rem, 0.25vw + 0.9rem, 1rem);
  line-height: 1.75;
}

.feature-card-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  height: 100%;
}

.feature-card-stack .feature-card {
  height: 100%;
}

.feature-primary-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: center;
}

.feature-primary-copy {
  max-width: 430px;
}

.feature-primary-mockup {
  display: flex;
  justify-content: flex-end;
}

.feature-mockup-surface {
  width: 100%;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-mockup-pill,
.feature-mockup-city {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-mockup-pill {
  background: rgba(59, 130, 246, 0.16);
  color: #bfdbfe;
}

.feature-mockup-city {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.feature-mockup-card,
.feature-mockup-join {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-mockup-card {
  padding: 16px;
}

.feature-mockup-card + .feature-mockup-card,
.feature-mockup-card + .feature-mockup-join {
  margin-top: 12px;
}

.feature-mockup-card-strong {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.16)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.18);
}

.feature-mockup-card-time {
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
}

.feature-mockup-card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: white;
}

.feature-mockup-card-meta {
  margin-top: 6px;
  font-size: 13px;
  color: #cbd5e1;
}

.feature-mockup-join {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.feature-mockup-avatars {
  display: flex;
  align-items: center;
  min-width: 62px;
}

.feature-mockup-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid rgba(15, 23, 42, 0.94);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: white;
  background: var(--grad);
}

.feature-mockup-avatars span:first-child {
  margin-left: 0;
}

.feature-mockup-join-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-mockup-join-copy strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.feature-mockup-join-copy span {
  font-size: 12px;
  color: #94a3b8;
}

.faq-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(124, 58, 237, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 2.25rem);
}

.faq-copy {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-copy .section-label {
  padding: 8px 18px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.08);
}

.faq-title {
  margin-bottom: 12px;
}

.faq-body {
  margin: 0;
  max-width: 42ch;
  color: #475569;
}

.faq-list {
  display: grid;
  gap: clamp(0.75rem, 1.4vw, 0.875rem);
  width: 100%;
  max-width: 54rem;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-item.is-open,
.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.16);
  box-shadow: 0 22px 48px rgba(79, 70, 229, 0.09);
}

.faq-item.is-open::before,
.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(1.125rem, 2vw, 1.5rem) clamp(1.125rem, 2.2vw, 1.625rem);
  border: 0;
  background: transparent;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 0.45vw + 0.92rem, 1.125rem);
  font-weight: 700;
  line-height: 1.42;
  color: #0f172a;
  cursor: pointer;
}

.faq-trigger span {
  min-width: 0;
}

.faq-trigger i,
.faq-trigger svg {
  width: 20px;
  height: 20px;
  color: #4f46e5;
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.faq-item.is-open .faq-trigger i,
.faq-item.is-open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 clamp(1.125rem, 2.2vw, 1.625rem) clamp(1.125rem, 2vw, 1.5rem);
}

.faq-answer p {
  margin: 0;
  font-size: clamp(0.9375rem, 0.25vw + 0.9rem, 0.95rem);
  line-height: 1.7;
  color: #475569;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 26px;
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  position: relative;
  margin-top: -12px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--grad) border-box;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.15);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  white-space: nowrap;
}

.price-tier {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.price-amount-stack {
  margin-bottom: 4px;
}

.price-amount-row {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.price-amount {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.price-per {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
}

.price-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.price-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.price-feature.muted {
  color: #cbd5e1;
}

.price-feature i,
.price-feature svg {
  width: 16px;
  height: 16px;
}

.check-icon {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 1px;
}

.x-icon {
  color: #cbd5e1;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-cta-secondary {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.price-cta-secondary:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.price-primary-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
}

.footer-cta {
  background: var(--grad);
  padding: clamp(4.5rem, 8vw, 5.5rem) 0;
  text-align: center;
}

.waitlist-shell {
  max-width: calc(54rem + (var(--gutter) * 2));
}

.waitlist-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.25rem, 3vw + 1.2rem, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 12ch;
  margin: 0 auto 18px;
  text-wrap: balance;
}

.cta-br {
  display: none;
}

.waitlist-copy {
  font-size: clamp(0.95rem, 0.45vw + 0.86rem, 1.0625rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-wrap: pretty;
}

.waitlist-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.waitlist-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #1e3a8a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border: 0;
  border-radius: 100px;
  appearance: none;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.waitlist-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.waitlist-link[disabled] {
  cursor: not-allowed;
}

.waitlist-link[disabled]:hover {
  transform: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.waitlist-link i,
.waitlist-link svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
}

.waitlist-link[disabled] i,
.waitlist-link[disabled] svg {
  color: #64748b;
}

footer {
  background: #0b1426;
  color: #94a3b8;
  padding: clamp(3.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.5rem);
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(11, 20, 38, 0.88);
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease,
    background 0.24s ease;
  z-index: 96;
}

.back-to-top:hover {
  background: rgba(15, 23, 42, 0.96);
  transform: translateY(-2px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top-icon {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.back-to-top i,
.back-to-top svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer-shell {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.9fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: clamp(1.5rem, 2vw, 1.75rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.13), transparent 42%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-mark {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-mark-logo {
  display: block;
  width: 22px;
  height: auto;
}

.footer-brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.footer-brand-copy {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-brand-note {
  max-width: 42rem;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 28px;
  white-space: nowrap;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.social-note {
  margin: 0 0 0.9rem;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 46px;
  height: 46px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #cbd5e1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(2, 6, 23, 0.22);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(96, 165, 250, 0.32);
  color: white;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 32px rgba(37, 99, 235, 0.16);
}

.social-btn-static {
  cursor: default;
}

.social-btn-static:hover {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.88));
  border-color: rgba(148, 163, 184, 0.16);
  color: #cbd5e1;
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(2, 6, 23, 0.22);
}

.social-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.social-icon-ig {
  width: 23px;
  height: 23px;
}

.social-icon-tiktok {
  width: 26.5px;
  height: 26.5px;
  transform: translateY(0.25px);
}

.footer-nav-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(11rem, 1fr));
  gap: 1.5rem clamp(2rem, 3vw, 3rem);
  align-content: start;
  justify-self: end;
  min-width: min(100%, 29rem);
  padding-top: 10px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-link {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
  overflow-wrap: anywhere;
}

.footer-link:hover {
  color: white;
}

.footer-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-meta {
  font-size: 13px;
  color: #334155;
  overflow-wrap: anywhere;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 24%);
}

.legal-header {
  padding: 28px 0 18px;
}

.legal-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-main {
  padding: 24px 0 96px;
}

.legal-hero {
  text-align: center;
  margin-bottom: 40px;
}

.legal-copy {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.legal-updated {
  margin-top: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-section-stack {
  display: grid;
  gap: 18px;
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.legal-section h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 12px;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.legal-section p,
.legal-section li {
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.legal-section p + p,
.legal-section p + ul,
.legal-section ul + p {
  margin-top: 14px;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 10px;
}

.legal-callout {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--grad-soft);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.legal-callout strong {
  color: #0f172a;
}

.legal-footer {
  max-width: 920px;
  margin: 28px auto 0;
  text-align: center;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.legal-footer a {
  color: #1e3a8a;
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.has-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes line-pulse {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.75;
  }
}

@keyframes social-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes activity-note-drift {
  0%,
  100% {
    transform: translate3d(var(--note-shift-x, 0px), 0, 0) rotate(var(--note-rotate, 0deg));
  }

  50% {
    transform: translate3d(calc(var(--note-shift-x, 0px) + var(--note-float-x, 0px)), var(--note-float-y, -8px), 0) rotate(calc(var(--note-rotate, 0deg) + var(--note-float-rotate, 0deg)));
  }
}

@keyframes note-sheen {
  0%,
  12% {
    transform: translateX(-135%) rotate(8deg);
  }

  24%,
  100% {
    transform: translateX(135%) rotate(8deg);
  }
}

@keyframes note-ping {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }

  38% {
    opacity: 0.4;
    transform: scale(1.35);
  }
}

@media (max-width: 1023px) {
  .container {
    padding-inline: var(--gutter);
  }

  .nav-inner {
    gap: 16px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .hero-visual-wrap {
    display: none;
  }

  .hero-section {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .hero-inner {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  #h-h1 {
    max-width: 9ch;
    margin-inline: auto;
    font-size: clamp(48px, 8.2vw, 74px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  #h-sub {
    max-width: 31ch;
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
    gap: 16px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-divider + .stat-divider {
    border-left: none;
  }

  .stat-item {
    padding: 20px 24px;
  }

  .stat-label {
    max-width: 12ch;
    margin: 2px auto 0;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .social-proof-copy {
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .social-proof-title {
    max-width: none;
  }

  .social-proof-body {
    max-width: 34ch;
  }

  .social-proof-stage {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --step-gap: 32px;
  }

  .step-card::after {
    display: none;
  }

  .audience-grid,
  .problem-shell {
    grid-template-columns: 1fr;
  }

  .audience-copy,
  .audience-title,
  .problem-copy,
  .problem-title {
    max-width: none;
  }

  .activity-notes-stage {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .activity-notes-column-offset {
    padding-top: 0;
  }

  .audience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-nav-cluster {
    justify-self: stretch;
    min-width: 0;
  }

  .price-card.featured {
    margin-top: 0;
  }

  .cta-br {
    display: block;
  }

  .waitlist-title {
    max-width: none;
    font-size: clamp(1.75rem, 5vw + 0.25rem, 2.5rem);
    text-wrap: auto;
  }
}

@media (min-width: 1024px) {
  .mobile-nav-panel {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .section {
    padding: clamp(4.75rem, 7vw, 5.75rem) 0;
  }

  .section-header {
    margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
  }

  .section-header-lg {
    margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
  }

  .section-label {
    margin-bottom: 18px;
  }

  .section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .section-copy {
    font-size: clamp(0.9375rem, 0.55vw + 0.82rem, 0.96875rem);
    line-height: 1.68;
  }

  .hero-visual-wrap {
    display: none;
  }

  .hero-section {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .hero-inner {
    gap: clamp(1.25rem, 3vw, 1.5rem);
    padding-top: clamp(1.25rem, 2.2vw, 1.5rem);
    padding-bottom: clamp(1rem, 2vw, 1.25rem);
  }

  #h-h1 {
    max-width: 10.2ch;
    margin-inline: auto;
    font-size: clamp(3rem, 5.6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #h-h1 .grad-text {
    max-width: 9.4ch;
  }

  #h-sub {
    max-width: min(34rem, 100%);
    margin-inline: auto;
    margin-bottom: 22px;
  }

  .hero-ctas {
    justify-content: center;
    gap: 14px 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-divider + .stat-divider {
    border-left: none;
  }

  .stat-divider:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .stat-divider:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .stat-item {
    padding: 18px 20px;
  }

  .stat-label {
    max-width: 11ch;
    margin-inline: auto;
    line-height: 1.35;
  }

  .stat-label-wide {
    max-width: 11ch;
    white-space: normal;
  }

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

  .social-proof-copy {
    max-width: none;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .social-proof-title {
    max-width: 16ch;
    margin-inline: auto;
  }

  .social-proof-body {
    max-width: 34ch;
    margin-inline: auto;
  }

  .social-proof-stage {
    max-width: min(100%, 38rem);
    width: 100%;
    min-height: auto;
    margin: 0 auto;
  }

  .social-proof-card-quote {
    font-size: clamp(24px, 3.2vw, 28px);
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 860px;
    --step-gap: 24px;
  }

  .step-card::after {
    display: none;
  }

  .audience-grid,
  .problem-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .audience-copy {
    max-width: 40rem;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .audience-body {
    max-width: 32ch;
    margin-inline: auto;
  }

  .audience-quote-shell {
    margin-inline: auto;
  }

  .problem-copy {
    max-width: none;
    margin: 0 auto;
    text-align: center;
  }

  .problem-title,
  .problem-body {
    margin-inline: auto;
  }

  .problem-body {
    max-width: 34ch;
  }

  .problem-shell {
    padding: 40px 32px;
    border-radius: 30px;
  }

  .activity-notes-stage {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 1.6vw, 1.25rem);
    max-width: 46rem;
  }

  .activity-notes-column-offset {
    padding-top: 0;
  }

  .audience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .features-grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.25rem);
  }

  .feature-card-primary {
    grid-column: 1 / -1;
  }

  .feature-card-stack {
    display: contents;
  }

  .feature-card:not(.feature-card-primary) {
    min-height: clamp(12.5rem, 25vw, 14rem);
    padding: 1.5rem 1.375rem;
    border-radius: 22px;
  }

  .feature-card:not(.feature-card-primary) .feature-title {
    min-height: 2.6em;
  }

  .feature-card:not(.feature-card-primary) .feature-desc {
    min-height: 4.8em;
  }

  .feature-primary-shell {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 24px;
  }

  .faq-trigger {
    padding: 20px 22px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 22px 20px;
  }

  .waitlist-copy {
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat-divider + .stat-divider,
  .stat-divider:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .stat-divider:nth-child(n + 3) {
    border-top: none;
  }

  .stat-item {
    min-height: 6.75rem;
    padding: 1rem 0.875rem;
  }

  .stat-label {
    max-width: 9ch;
  }

  .stat-label-wide {
    max-width: 9ch;
    white-space: normal;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    min-height: clamp(620px, calc(100svh - 72px), 760px);
    align-items: center;
    padding-top: 72px;
  }

  .hero-inner {
    gap: clamp(3rem, 5vw, 4rem);
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .hero-content {
    flex: 0 0 auto;
    max-width: 560px;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }

  #h-h1 {
    max-width: none;
    margin-inline: 0;
    font-size: clamp(4.25rem, 5.1vw, 5.25rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-wrap: normal;
  }

  #h-h1 .grad-text {
    display: inline;
    max-width: none;
  }

  #h-sub {
    max-width: 470px;
    margin-inline: 0;
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.72;
    text-wrap: normal;
  }

  .hero-ctas {
    justify-content: flex-start;
    gap: 28px;
    margin-bottom: 24px;
    flex-direction: row;
    align-items: center;
  }

  .hero-visual-wrap {
    display: block;
    flex: 1;
    width: auto;
    max-width: none;
    min-width: clamp(22.5rem, 32vw, 28.75rem);
    height: clamp(34rem, 45vw, 38.75rem);
    margin-left: 0;
  }

  .hero-orb {
    width: clamp(24rem, 32vw, 28.75rem);
    height: clamp(24rem, 32vw, 28.75rem);
  }

  .waitlist-shell {
    max-width: calc(var(--page-max) + (var(--gutter) * 2));
  }

  .waitlist-title {
    max-width: 19.5ch;
    font-size: clamp(3.25rem, 1.5rem + 2.8vw, 4.5rem);
    line-height: 1.03;
  }

  .waitlist-copy {
    max-width: 44rem;
    font-size: clamp(1rem, 0.88rem + 0.35vw, 1.125rem);
    white-space: normal;
    line-height: 1.45;
    text-wrap: balance;
  }
}

@media (max-width: 767px) {
  .section {
    padding: clamp(4rem, 11vw, 4.5rem) 0;
  }

  .section-header {
    margin-bottom: clamp(2rem, 6vw, 2.5rem);
  }

  .section-header-lg {
    margin-bottom: clamp(2.25rem, 6vw, 2.75rem);
  }

  .section-label {
    padding: 5px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(1.875rem, 7.8vw, 2.375rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .section-copy {
    font-size: clamp(0.9375rem, 0.45vw + 0.88rem, 0.96875rem);
    line-height: 1.65;
  }

  .container {
    padding-inline: var(--gutter);
  }

  .back-to-top {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    padding: 0.8rem;
  }

  .back-to-top-text {
    display: none;
  }

  .nav-inner {
    height: 68px;
    gap: 12px;
  }

  .brand-wordmark {
    font-size: 18px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-inner {
    gap: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.125rem;
  }

  .hero-content {
    align-items: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: min(21rem, 100%);
    min-width: 0;
    margin: 0 auto;
  }

  #h-h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(2.375rem, 9vw, 2.875rem);
    line-height: 0.96;
    margin-bottom: 0.75rem;
    text-wrap: balance;
  }

  #h-h1 .grad-text {
    display: inline-block;
    max-width: 10.2ch;
  }

  #h-sub {
    max-width: min(28ch, 100%);
    margin-inline: auto;
    font-size: 0.9375rem;
    line-height: 1.56;
    margin-bottom: 1rem;
    text-wrap: pretty;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    max-width: min(18rem, 100%);
    margin-inline: auto;
  }

  .hero-ctas .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-divider {
    width: auto;
  }

  .stat-item {
    padding: 1rem 0.875rem;
  }

  .stat-divider + .stat-divider {
    border-top: none;
  }

  .stat-divider:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .stat-divider:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .social-proof-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 28rem;
  }

  .step-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
  }

  .step-icon-ring {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-copy {
    max-width: 28ch;
  }

  .social-proof-copy {
    align-items: center;
    text-align: center;
  }

  .social-proof-title,
  .social-proof-body {
    max-width: 29ch;
    margin-inline: auto;
  }

  .activity-notes-header {
    margin-bottom: 24px;
  }

  .activity-note {
    padding: 14px 15px 15px;
    border-radius: 20px;
    --note-shift-x: 0px !important;
    --note-rotate: 0deg !important;
    --note-float-x: 0px !important;
    --note-float-rotate: 0deg !important;
  }

  .activity-note-text {
    font-size: 17px;
  }

  .social-proof-glow,
  .social-proof-connector {
    display: none;
  }

  .social-proof-portraits {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    order: 2;
  }

  .social-proof-portrait {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    animation: none;
  }

  .social-proof-portrait img {
    height: 120px;
    border-width: 5px;
  }

  .social-proof-portrait figcaption {
    left: 50%;
    right: auto;
    bottom: 12px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    border-radius: 18px;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .social-proof-stack {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    order: 1;
  }

  .social-proof-pill {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 14px;
    max-width: 100%;
    white-space: normal;
    animation: none;
  }

  .social-proof-card {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1rem 1.125rem;
    border-radius: 1.25rem;
  }

  .social-proof-card-quote {
    font-size: clamp(1.25rem, 6vw, 1.375rem);
  }

  .social-proof-card-light {
    margin-top: 14px;
    margin-left: 0;
    animation: none;
  }

  .social-proof-toast {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .how-dynamic-shell {
    min-width: 11.5ch;
  }

  .steps-grid,
  .audience-cards,
  .features-grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    padding: 24px 20px;
    align-items: center;
    text-align: center;
  }

  .footer-brand-note {
    max-width: 30ch;
    white-space: normal;
  }

  .footer-nav-cluster {
    grid-template-columns: 1fr;
    justify-self: stretch;
    gap: 20px;
    padding-top: 0;
    text-align: center;
  }

  .footer-nav-group {
    align-items: center;
  }

  .audience-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .audience-body,
  .audience-quote {
    max-width: 28ch;
    margin-inline: auto;
  }

  .audience-copy {
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .audience-quote-shell {
    max-width: 30ch;
    margin: 28px auto 0;
    padding-top: 18px;
  }

  .audience-quote {
    padding-left: 0;
    border-left: 0;
    padding-top: 16px;
    border-top: 3px solid rgba(37, 99, 235, 0.18);
  }

  .problem-shell {
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
    border-radius: 26px;
  }

  .problem-copy {
    text-align: center;
  }

  .problem-body {
    max-width: 30ch;
    margin-inline: auto;
  }

  .problem-point {
    padding: 16px;
  }

  .problem-point p {
    font-size: 16px;
  }

  .faq-trigger {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-copy,
  .faq-list,
  .footer-brand-panel,
  .footer-nav-cluster,
  .footer-bottom {
    max-width: 100%;
  }

  .waitlist-copy {
    max-width: 29ch;
    margin-left: auto;
    margin-right: auto;
  }

  .legal-header-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-main {
    padding-top: 12px;
    padding-bottom: 72px;
  }

  .legal-copy {
    font-size: 16px;
  }

  .legal-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .feature-card-primary {
    grid-column: span 1;
    padding: 1.5rem 1.25rem;
  }

  .feature-card-stack {
    display: contents;
  }

  .feature-primary-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-primary-copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-primary-mockup {
    justify-content: stretch;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .feature-card-primary .feature-title,
  .feature-card-primary .feature-desc {
    max-width: none;
  }

  .feature-card-primary .feature-title {
    font-size: clamp(22px, 7vw, 28px);
    max-width: 12ch;
    margin-inline: auto;
  }

  .feature-card,
  .feature-card-stack .feature-card {
    min-height: 12rem;
    padding: 1.25rem 1.125rem;
    border-radius: 20px;
  }

  .feature-card:not(.feature-card-primary) .feature-title,
  .feature-card:not(.feature-card-primary) .feature-desc {
    min-height: 0;
  }

  .step-card {
    padding: 0;
  }

  .step-card::after {
    display: none;
  }

  .stats-grid {
    justify-content: stretch;
  }

  .stat-divider {
    width: auto;
    min-width: 0;
  }

  .stat-item {
    min-height: 10.25rem;
  }

  .stat-divider:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .waitlist-link {
    width: 100%;
    justify-content: center;
    padding-inline: 24px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 8px;
    flex-direction: column;
  }

  .social-row {
    justify-content: center;
  }
}

@media (max-width: 559px) {
  .container {
    padding-inline: var(--gutter);
  }

  .nav-inner {
    height: 64px;
  }

  .brand-wordmark {
    font-size: 17px;
  }

  .hero-content {
    max-width: min(20rem, 100%);
  }

  #h-h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.5rem);
  }

  #h-h1 .grad-text {
    max-width: 100%;
    display: inline;
  }

  #h-sub {
    max-width: 26ch;
    font-size: 0.90625rem;
  }

  .footer-nav-cluster {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-dynamic-shell {
    min-width: 0;
    white-space: normal;
  }

  .social-proof-portraits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  #h-h1 {
    font-size: 2.3125rem;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: normal;
  }

  #h-h1 .grad-text {
    display: inline;
    max-width: none;
  }
}

@media (max-width: 359px) {
  .brand-wordmark {
    font-size: 16px;
  }

  .nav-inner {
    gap: 8px;
  }

  .hero-content {
    max-width: 100%;
  }

  #h-h1 {
    max-width: 9.8ch;
    font-size: clamp(2.1rem, 10vw, 2.35rem);
  }

  #h-h1 .grad-text {
    max-width: 9.2ch;
  }

  #h-sub {
    max-width: 24ch;
    font-size: 0.875rem;
  }

  .hero-ctas {
    max-width: 100%;
  }

  .hero-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .stat-item {
    padding: 0.875rem 0.625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-dynamic-phrase {
    transition: none !important;
  }

  .activity-note,
  .activity-note::after,
  .activity-note-app-icon::after,
  .social-proof-portrait,
  .social-proof-pill,
  .social-proof-card-light,
  .social-proof-toast {
    animation: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --border: #223149;
    --grad-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.18));
  }

  .skip-link {
    background: #e2e8f0;
    color: #08101f;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.34);
  }

  a:focus-visible,
  button:focus-visible {
    outline-color: rgba(147, 197, 253, 0.6);
  }

  body,
  .section-white,
  .section-slate {
    background: #08101f;
    color: #e2e8f0;
  }

  nav.scrolled,
  nav.is-open {
    background: rgba(8, 16, 31, 0.88) !important;
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.14);
  }

  .brand-wordmark,
  .mobile-menu-btn i,
  .mobile-menu-btn svg,
  #h-h1,
  .match-card-name,
  .you-label,
  .notif-pill > div:last-child > div:first-child,
  .section-title,
  .step-title,
  .audience-quote,
  .audience-card h3,
  .activity-note-text,
  .feature-title,
  .faq-trigger,
  .price-amount,
  .price-cta-secondary,
  .legal-section h2,
  .legal-section h3,
  .legal-callout strong {
    color: #f8fafc;
  }

  .btn-ghost,
  .nav-link,
  .mobile-nav-link,
  #h-sub,
  #h-trust,
  .match-card-dist,
  .notif-pill > div:last-child > div:last-child,
  .stat-label,
  .section-copy,
  .social-proof-card-meta,
  .social-proof-pill,
  .social-proof-toast-content span,
  .social-proof-toast-right span,
  .step-copy,
  .audience-body,
  .audience-card p,
  .activity-note-app-name,
  .activity-note-time,
  .feature-desc,
  .faq-body,
  .faq-answer p,
  .price-tier,
  .price-per,
  .price-sub,
  .price-feature,
  .legal-copy,
  .legal-updated,
  .legal-section p,
  .legal-section li,
  .legal-footer {
    color: #94a3b8;
  }

  .btn-ghost:hover,
  .nav-link:hover,
  .mobile-nav-link:hover,
  .price-cta-secondary:hover,
  .legal-footer a,
  .legal-home-link,
  .waitlist-link i,
  .waitlist-link svg {
    color: #bfdbfe;
  }

  .mobile-menu-btn:hover {
    background: rgba(15, 23, 42, 0.84);
    border-color: rgba(96, 165, 250, 0.18);
  }

  .mobile-menu-btn[aria-expanded="true"] {
    background: rgba(17, 29, 52, 0.94);
    border-color: rgba(96, 165, 250, 0.24);
  }

  .mobile-nav-panel,
  .match-card,
  .float-tag,
  .notif-pill,
  .social-proof-pill,
  .social-proof-card-light,
  .social-proof-toast,
  .audience-card,
  .activity-note,
  .feature-card,
  .faq-item,
  .price-card,
  .legal-card {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 20, 38, 0.8)),
      linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.14));
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow:
      0 24px 56px rgba(2, 6, 23, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-actions {
    border-top-color: rgba(148, 163, 184, 0.14);
  }

  .mobile-nav-link:hover {
    background: rgba(37, 99, 235, 0.12);
  }

  .match-card::before,
  .float-tag::before,
  .notif-pill::before,
  .social-proof-pill::before,
  .social-proof-card-light::before,
  .social-proof-toast::before,
  .audience-card::before,
  .activity-note::before,
  .feature-card::before,
  .faq-item::before {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.01) 100%),
      radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 52%);
  }

  .activity-note::after {
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.14) 48%, transparent 66%);
  }

  .mobile-nav-link,
  .notif-pill > div:last-child > div:first-child,
  .social-proof-toast-content p,
  .social-proof-toast-right p {
    color: #e2e8f0;
  }

  .dot-grid {
    background-image: radial-gradient(circle, rgba(148, 163, 184, 0.26) 1px, transparent 1px);
    opacity: 0.22;
  }

  .hero-bg-mesh {
    background:
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.14) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 90% 70%, rgba(124, 58, 237, 0.14) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 10% 80%, rgba(219, 39, 119, 0.08) 0%, transparent 60%);
  }

  .hero-orb {
    background: radial-gradient(
      ellipse at center,
      rgba(124, 58, 237, 0.18) 0%,
      rgba(37, 99, 235, 0.14) 45%,
      transparent 72%
    );
  }

  #mc1 .match-badge,
  #mc4 .match-badge {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(59, 130, 246, 0.1));
    border-color: rgba(96, 165, 250, 0.18);
    color: #bfdbfe;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  #mc2 .match-badge {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.2), rgba(147, 51, 234, 0.1));
    border-color: rgba(196, 181, 253, 0.14);
    color: #d8b4fe;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  #mc3 .match-badge {
    background: linear-gradient(180deg, rgba(219, 39, 119, 0.2), rgba(236, 72, 153, 0.1));
    border-color: rgba(251, 207, 232, 0.14);
    color: #f9a8d4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .online-dot {
    border-color: #0f172a;
  }

  .you-avatar {
    box-shadow:
      0 0 0 10px rgba(37, 99, 235, 0.16),
      0 0 0 20px rgba(37, 99, 235, 0.08);
  }

  .you-label {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(17, 29, 52, 0.84)),
      linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.12));
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow:
      0 12px 24px rgba(2, 6, 23, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .float-tag {
    color: #dbeafe;
  }

  .notif-pill > div:last-child > div:last-child {
    color: #a5b4fc;
  }

  .stat-bar {
    background: #0d1728;
    border-top-color: var(--border);
    border-bottom-color: var(--border);
  }

  .stat-divider + .stat-divider {
    border-left-color: var(--border);
  }

  .social-proof-section {
    background:
      radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.12), transparent 24%),
      radial-gradient(circle at 84% 24%, rgba(124, 58, 237, 0.12), transparent 22%),
      linear-gradient(180deg, #091223 0%, #0c172a 100%);
  }

  .social-proof-glow {
    background:
      radial-gradient(circle at center, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.18) 52%, transparent 72%),
      radial-gradient(circle at center, rgba(124, 58, 237, 0.18) 0%, rgba(219, 39, 119, 0.12) 44%, transparent 70%);
  }

  .social-proof-portrait img,
  .social-proof-toast-avatar {
    border-color: rgba(148, 163, 184, 0.14);
    background: #1e293b;
  }

  .social-proof-portrait figcaption {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(17, 29, 52, 0.84)),
      linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.12));
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow:
      0 14px 30px rgba(2, 6, 23, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #f8fafc;
  }

  .social-proof-pill {
    color: #cbd5e1;
  }

  .social-proof-card {
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.32);
  }

  .social-proof-card-dark {
    background:
      radial-gradient(circle at top right, rgba(124, 58, 237, 0.28), transparent 30%),
      linear-gradient(180deg, #0b1426 0%, #09101e 100%);
  }

  .social-proof-card-kicker,
  .social-proof-card-light .social-proof-card-meta {
    color: #93c5fd;
  }

  .social-proof-card-light .social-proof-card-quote {
    color: #f8fafc;
  }

  .social-proof-toast-badge {
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
  }

  .section-label,
  .social-proof-copy .section-label,
  .audience-copy .section-label,
  .faq-copy .section-label {
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.16);
    color: #bfdbfe;
  }

  .how-dynamic-shell {
    border-color: rgba(96, 165, 250, 0.2);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.22), rgba(124, 58, 237, 0.16));
    color: #bfdbfe;
    box-shadow:
      inset 0 -1px 0 rgba(96, 165, 250, 0.16),
      0 14px 34px rgba(2, 6, 23, 0.24);
  }

  .step-card:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(51, 65, 85, 0.4), rgba(96, 165, 250, 0.32), rgba(51, 65, 85, 0.4));
  }

  .step-icon-ring {
    box-shadow:
      0 0 0 14px rgba(8, 16, 31, 0.92),
      0 12px 32px rgba(37, 99, 235, 0.24);
  }

  .audience-section {
    background:
      radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.12), transparent 28%),
      radial-gradient(circle at 84% 78%, rgba(124, 58, 237, 0.12), transparent 30%),
      linear-gradient(180deg, #08101f 0%, #0c172a 100%);
  }

  .audience-quote-shell {
    border-top-color: rgba(148, 163, 184, 0.16);
  }

  .audience-quote-label {
    color: #93c5fd;
  }

  .audience-quote {
    border-left-color: rgba(96, 165, 250, 0.2);
  }

  .audience-card-icon {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(17, 29, 52, 0.72)),
      linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.14));
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow:
      0 12px 24px rgba(2, 6, 23, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #bfdbfe;
  }

  .problem-section {
    background: linear-gradient(180deg, #08101f 0%, #0c172a 100%);
  }

  .problem-shell {
    box-shadow: 0 28px 72px rgba(2, 6, 23, 0.36);
  }

  .activity-notes-section {
    background:
      radial-gradient(circle at 18% 24%, rgba(37, 99, 235, 0.12), transparent 28%),
      radial-gradient(circle at 82% 72%, rgba(124, 58, 237, 0.12), transparent 28%),
      linear-gradient(180deg, #091223 0%, #0b1426 100%);
  }

  .activity-notes-stage::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.12) 40%, transparent 72%);
  }

  .activity-note-emphasis {
    border-color: rgba(96, 165, 250, 0.24);
    box-shadow:
      0 24px 52px rgba(2, 6, 23, 0.34),
      0 12px 24px rgba(37, 99, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .activity-note:hover,
  .feature-card:hover,
  .faq-item.is-open,
  .faq-item:hover,
  .price-card.featured {
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow:
      0 28px 58px rgba(2, 6, 23, 0.36),
      0 14px 26px rgba(37, 99, 235, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .feature-card-label {
    background: rgba(37, 99, 235, 0.16);
    border-color: rgba(96, 165, 250, 0.18);
    color: #93c5fd;
  }

  .faq-section {
    background:
      radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.12), transparent 24%),
      radial-gradient(circle at 84% 76%, rgba(124, 58, 237, 0.11), transparent 24%),
      linear-gradient(180deg, #08101f 0%, #0c172a 100%);
  }

  .faq-item::before {
    opacity: 1;
  }

  .faq-item.is-open,
  .faq-item:hover {
    border-color: rgba(96, 165, 250, 0.18);
  }

  .price-card.featured {
    background: linear-gradient(#0f172a, #0f172a) padding-box, var(--grad) border-box;
  }

  .price-feature.muted,
  .x-icon {
    color: #64748b;
  }

  .price-cta-secondary {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.72);
  }

  .legal-page {
    background:
      radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 32%),
      radial-gradient(circle at top right, rgba(124, 58, 237, 0.14), transparent 34%),
      linear-gradient(180deg, #08101f 0%, #0c172a 24%);
  }

  .legal-home-link {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(148, 163, 184, 0.18);
  }

  .legal-section + .legal-section {
    border-top-color: rgba(148, 163, 184, 0.14);
  }

  .legal-callout {
    border-color: rgba(96, 165, 250, 0.18);
  }

  .legal-footer a {
    color: #bfdbfe;
  }
}

/* ============================================================
   WAITLIST MODAL
   ============================================================ */

/* Token */
:root {
  --wl-input-h: 2.75rem;
  --wl-radius: 0.5rem;
  --wl-border: #e2e8f0;
  --wl-bg-field: #f8fafc;
  --wl-gap-field: 0.375rem;
  --wl-gap-section: 1rem;
  --wl-pad: clamp(1.25rem, 4vw, 1.75rem);
}

body.wl-open {
  overflow: hidden;
}

/* ── Overlay ── */
.wl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow-y: auto;
  padding: clamp(1.25rem, 4vw, 2rem) var(--gutter);
  background: rgba(15, 23, 42, 0);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.wl-overlay.is-open {
  display: block;
}

.wl-overlay.is-visible {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
}

/* ── Card ── */
.wl-card {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.1),
    0 32px 64px rgba(15, 23, 42, 0.14);
  width: 100%;
  max-width: 540px;
  margin: 0 auto clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wl-overlay.is-visible .wl-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Gradient accent bar */
.wl-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--grad);
}

.wl-card-inner {
  padding: var(--wl-pad);
}

/* ── Close button ── */
.wl-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  z-index: 2;
}

/* Expand tap target to 44px minimum without affecting visual size */
.wl-close::before {
  content: '';
  position: absolute;
  inset: -6px;
}

.wl-close:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #475569;
}

.wl-close i,
.wl-close svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

/* ── Header ── */
.wl-header {
  padding-right: 2.5rem;
  margin-bottom: 1.25rem;
}

.wl-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.2rem, 1vw + 0.95rem, 1.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.3125rem;
}

.wl-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.wl-required {
  color: var(--blue);
  font-weight: 700;
}

/* ── Form structure ── */
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}

.wl-section {
  display: flex;
  flex-direction: column;
  gap: var(--wl-gap-section);
}

.wl-divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0;
}

/* Two-column rows — flex-start so mismatched heights don't stretch */
.wl-row {
  display: flex;
  flex-direction: column;
  gap: var(--wl-gap-section);
}

@media (min-width: 480px) {
  .wl-row--two {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .wl-row--two .wl-field {
    flex: 1 1 0;
    min-width: 0;
  }

  .wl-row--city .wl-field:first-child { flex: 1; }
  .wl-row--city .wl-field:last-child  { flex: 1; }
}

/* ── Field ── */
.wl-field {
  display: flex;
  flex-direction: column;
  gap: var(--wl-gap-field);
}

/* ── Labels ── */
.wl-label,
.wl-fieldset > legend.wl-label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wl-fieldset {
  border: none;
  padding: 0;
  min-width: 0;
}

.wl-fieldset--chips {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* ── Inputs & Selects (shared sizing tokens) ── */
.wl-input,
.wl-select {
  display: block;
  width: 100%;
  height: var(--wl-input-h);
  box-sizing: border-box;
  padding: 0 0.875rem;
  border: 1.5px solid var(--wl-border);
  border-radius: var(--wl-radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: #0f172a;
  background: var(--wl-bg-field);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1;
}

.wl-input::placeholder {
  color: #94a3b8;
}

.wl-input:focus,
.wl-select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wl-input[aria-invalid="true"] {
  border-color: #f87171;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

/* Select-specific overrides */
.wl-select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.wl-select-wrap {
  position: relative;
}

.wl-select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
}

/* ── Multi-select ── */
.wl-select--multi {
  height: auto;
  padding: 0;
  border-radius: var(--wl-radius);
  appearance: auto;
  overflow-y: auto;
  line-height: 1.5;
}

.wl-select--multi option {
  padding: 0.4375rem 0.875rem;
  font-size: 0.9rem;
  border-radius: 0;
}

.wl-select--multi option:checked {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}

/* ── Field error ── */
.wl-field-error {
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
  line-height: 1.3;
  min-height: 1em;
}

/* ── Activity chips ── */
.wl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}

.wl-chip {
  display: inline-flex;
  cursor: pointer;
}

.wl-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.wl-chip span {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.875rem;
  border: 1.5px solid var(--wl-border);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  background: var(--wl-bg-field);
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  user-select: none;
}

.wl-chip:hover span {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #2563eb;
}

.wl-chip input:checked + span {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px #2563eb;
}

.wl-chip input:focus-visible + span {
  outline: 2px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

/* ── Radio buttons (proper) ── */
.wl-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.wl-radio-opt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.wl-radio-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom radio dot */
.wl-radio-dot {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #fff;
  position: relative;
  transition: border-color 0.15s ease;
}

.wl-radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.wl-radio-opt:hover .wl-radio-dot {
  border-color: #93c5fd;
}

.wl-radio-opt input:checked ~ .wl-radio-dot {
  border-color: var(--blue);
}

.wl-radio-opt input:checked ~ .wl-radio-dot::after {
  opacity: 1;
  transform: scale(1);
}

.wl-radio-text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.wl-radio-opt input:checked ~ .wl-radio-dot ~ .wl-radio-text {
  color: var(--blue);
  font-weight: 600;
}

.wl-radio-opt input:focus-visible ~ .wl-radio-dot {
  outline: 2px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

/* ── Form footer ── */
.wl-form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: var(--wl-gap-section);
  border-top: 1px solid #f1f5f9;
}

/* ── Error banner ── */
.wl-error {
  display: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b91c1c;
  padding: 0.625rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--wl-radius);
  line-height: 1.5;
}

.wl-error.is-visible {
  display: block;
}

/* ── Submit button ── */
.wl-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3rem;
  padding: 0 1.5rem;
  background: var(--grad);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.15s ease;
}

.wl-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.wl-submit:active:not(:disabled) {
  transform: translateY(0);
}

.wl-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.wl-submit i,
.wl-submit svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Spinner ── */
.wl-submit-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wl-spin 0.65s linear infinite;
  flex-shrink: 0;
}

.wl-submit-spinner.is-visible {
  display: block;
}

@keyframes wl-spin {
  to { transform: rotate(360deg); }
}

/* ── Privacy note ── */
.wl-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ── Success state ── */
.wl-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem) var(--wl-pad);
  gap: 0.75rem;
}

.wl-success-state.is-active {
  display: flex;
}

.wl-form-state.is-hidden {
  display: none;
}

.wl-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.wl-success-icon i,
.wl-success-icon svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #16a34a;
}

.wl-success-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}

.wl-success-body {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 28ch;
}

.wl-success-close {
  margin-top: 0.5rem;
  height: 3rem;
  padding: 0 2rem;
  background: var(--grad);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wl-success-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.38);
}

/* ── Custom multiselect ── */
.wl-multiselect {
  position: relative;
}

.wl-multiselect-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--wl-input-h);
  box-sizing: border-box;
  padding: 0 0.75rem 0 0.875rem;
  border: 1.5px solid var(--wl-border);
  border-radius: var(--wl-radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: #94a3b8;
  background: var(--wl-bg-field);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.wl-multiselect-trigger.has-value {
  color: #0f172a;
}

.wl-multiselect-trigger:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wl-multiselect[aria-expanded="true"] .wl-multiselect-trigger {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wl-multiselect[aria-expanded="true"] .wl-select-icon {
  transform: translateY(-50%) rotate(180deg);
}

.wl-multiselect-value {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wl-multiselect-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--wl-border);
  border-radius: var(--wl-radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  z-index: 100;
  max-height: 14rem;
  overflow-y: auto;
  padding: 0.25rem 0;
}

.wl-multiselect-opt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: #0f172a;
  transition: background 0.1s ease;
}

.wl-multiselect-opt:hover {
  background: #f1f5f9;
}

.wl-multiselect-opt input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.wl-multiselect-opt span {
  flex: 1;
  line-height: 1.3;
}
