:root {
  /* Dark Theme Colors - Interactive Competition Arena */
  --bg: #0a0614;
  --bg-secondary: #12092a;
  --paper: #1a1035;
  --paper-strong: #241845;
  --surface: rgba(26, 16, 53, 0.76);
  --surface-strong: rgba(36, 24, 69, 0.92);
  --shell: rgba(26, 16, 53, 0.72);
  --shell-strong: rgba(36, 24, 69, 0.92);
  --ink: #ffffff;
  --ink-soft: #c4b8e8;
  --muted: #8b7db5;
  --line: rgba(139, 125, 181, 0.15);
  --line-strong: rgba(139, 125, 181, 0.25);
  --shell-border: rgba(139, 125, 181, 0.15);

  /* Brand Colors - Purple/Violet Theme */
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #7c3aed;
  --accent: #c084fc;
  --accent-glow: rgba(139, 92, 246, 0.4);
  --cyan: #22d3ee;
  --cyan-glow: rgba(34, 211, 238, 0.4);
  --pink: #f472b6;
  --pink-glow: rgba(244, 114, 182, 0.4);
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #c084fc 50%, #f472b6 100%);
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  --gradient-dark: linear-gradient(180deg, #1a1035 0%, #0a0614 100%);
  --gradient-glow: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);

  /* Legacy Support */
  --navy: #8b5cf6;
  --navy-deep: #1a1035;
  --amber: #f59e0b;
  --amber-soft: #fbbf24;
  --teal: #06b6d4;
  --teal-soft: #22d3ee;
  --coral: #f472b6;
  --coral-soft: #fb7185;
  --plum: #a855f7;
  --olive: #10b981;

  /* Shadows with Glow */
  --shadow-soft: 0 16px 40px rgba(139, 92, 246, 0.08);
  --shadow-card: 0 24px 80px rgba(139, 92, 246, 0.15);
  --shadow-shell: 0 24px 72px rgba(139, 92, 246, 0.1);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3), 0 0 80px rgba(139, 92, 246, 0.15);
  --shadow-glow-cyan: 0 0 30px rgba(34, 211, 238, 0.4), 0 0 60px rgba(34, 211, 238, 0.2);

  /* Border Radius */
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Changa", "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(244, 114, 182, 0.12) 0%, transparent 50%),
    var(--gradient-dark);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.announcement-bar {
  position: relative;
  z-index: 25;
  padding: 12px 18px;
}

.announcement-link {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.announcement-badge {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 18px 0;
  overflow: visible;
}

.nav-shell {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px;
  border-radius: 26px;
  background: rgba(26, 16, 53, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.1);
  overflow: visible;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  width: 112px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(16, 35, 63, 0.14));
}

.site-nav .brand-mark {
  width: 132px;
  max-height: 76px;
}

.footer-brand .brand-mark {
  width: 118px;
  max-height: 68px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}

.brand-copy strong {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 11px 15px;
  border-radius: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.nav-mobile-cta {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
}

.btn-secondary,
.btn-ghost {
  color: var(--ink);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  backdrop-filter: blur(10px);
}

.btn-lg {
  padding: 13px 22px;
  border-radius: 18px;
  font-size: 0.93rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  background: rgba(255, 250, 242, 0.78);
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  inset-inline: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

main {
  display: block;
}

.site-main {
  padding-bottom: 16px;
}

.hero,
.section,
.final-cta,
.site-footer {
  padding-inline: 18px;
}

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

.hero-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 30px;
  align-items: start;
  padding: 34px;
  border-radius: 40px;
  background: rgba(26, 16, 53, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-shell), var(--shadow-glow);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.15), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(34, 211, 238, 0.1), transparent 40%);
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-copy,
.hero-stage,
.spotlight-card,
.market-card,
.feature-card,
.journey-step,
.pricing-card,
.testimonial-card,
.faq-item,
.final-cta-shell {
  opacity: 1;
  transform: translateY(0);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 34rem;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.section-tag,
.spotlight-badge,
.metric-badge,
.pricing-ribbon,
.testimonial-badge,
.mini-chip,
.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  background: rgba(16, 35, 63, 0.07);
  color: var(--navy);
}

.eyebrow {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.eyebrow.subtle {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 11.5ch;
}

.hero-highlight {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.rotating-word {
  display: block;
  min-height: 1.2em;
  color: var(--navy);
}

.hero-subtitle {
  margin: 0;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-chip {
  min-height: 128px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(16, 35, 63, 0.09);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 246, 238, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-chip strong {
  font-size: 1.62rem;
  letter-spacing: -0.03em;
}

.metric-chip small,
.metric-chip p {
  margin: 0;
}

.metric-chip small {
  color: var(--muted);
  font-weight: 700;
}

.metric-chip p {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.metric-amber { border-color: rgba(212, 135, 55, 0.24); }
.metric-teal { border-color: rgba(15, 139, 141, 0.24); }
.metric-coral { border-color: rgba(202, 96, 81, 0.24); }

.audience-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink-soft);
  font-weight: 700;
}

.audience-pill.audience-navy { background: rgba(23, 52, 93, 0.08); }
.audience-pill.audience-teal { background: rgba(15, 139, 141, 0.09); }
.audience-pill.audience-coral { background: rgba(202, 96, 81, 0.09); }
.audience-pill.audience-amber { background: rgba(212, 135, 55, 0.1); }
.audience-pill.audience-plum { background: rgba(114, 91, 133, 0.1); }
.audience-pill.audience-olive { background: rgba(111, 124, 70, 0.1); }

.hero-stage {
  display: grid;
  gap: 16px;
  align-self: start;
  position: relative;
  z-index: 1;
}

.stage-card {
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 20px 56px rgba(16, 35, 63, 0.12);
}

.stage-card-primary {
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.3), transparent 50%),
    linear-gradient(145deg, rgba(139, 92, 246, 0.4) 0%, rgba(26, 16, 53, 0.9) 50%, rgba(36, 24, 69, 0.8) 100%);
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stage-card-secondary {
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.stage-head h2,
.stage-head p {
  margin: 0;
}

.stage-head h2 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 1.58rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.stage-head p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.stage-pulse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pulse-box {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pulse-box span,
.pulse-box small {
  display: block;
}

.pulse-box span,
.pulse-box small {
  color: rgba(255, 255, 255, 0.66);
}

.pulse-box strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.stage-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.timeline-step strong,
.timeline-step small {
  display: block;
}

.timeline-step small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.mini-screen {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 241, 232, 0.96) 100%);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.mini-screen-top,
.mini-screen-bar,
.micro-stack,
.testimonial-top,
.journey-step-head,
.spotlight-top,
.spotlight-foot,
.market-card-meta,
.feature-card-top,
.footer-grid,
.footer-bottom {
  display: flex;
  align-items: center;
}

.mini-screen-top {
  justify-content: space-between;
  margin-bottom: 16px;
}

.mini-chip {
  background: rgba(23, 52, 93, 0.08);
}

.mini-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: none;
}

.mini-question {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mini-options {
  display: grid;
  gap: 10px;
}

.opt {
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
}

.opt-a { background: rgba(202, 96, 81, 0.1); }
.opt-b { background: rgba(15, 139, 141, 0.1); }
.opt-c { background: rgba(212, 135, 55, 0.12); }
.opt-d { background: rgba(23, 52, 93, 0.08); }

.mini-screen-bar {
  margin-top: 14px;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.08);
  overflow: hidden;
}

.mini-screen-bar span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber) 0%, var(--coral) 100%);
  animation: none;
}

.micro-stack {
  gap: 10px;
  margin-top: 12px;
}

.micro-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 20px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.micro-card strong {
  line-height: 1.45;
  font-size: 0.98rem;
}

.micro-card small {
  color: var(--muted);
}

.micro-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(16, 35, 63, 0.06);
  font-size: 1.2rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 56px;
}

.section-shell {
  position: relative;
  padding: 32px;
  border-radius: 38px;
  background: rgba(26, 16, 53, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: var(--shadow-shell), 0 0 60px rgba(139, 92, 246, 0.05);
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.12), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(34, 211, 238, 0.08), transparent 50%);
  pointer-events: none;
}

.section-shell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.section-shell > * {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 660px;
  margin-bottom: 24px;
}

.section-head h2,
.section-head p {
  margin: 0;
}

.section-head h2 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3.15vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.spotlight-grid,
.market-grid,
.feature-mosaic,
.pricing-grid,
.testimonial-grid,
.journey-track {
  display: grid;
  gap: 16px;
}

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

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

.feature-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight-card {
  min-height: 280px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.05);
  background: rgba(26, 16, 53, 0.6);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spotlight-top {
  justify-content: space-between;
}

.spotlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.68);
  font-size: 1.38rem;
}

.spotlight-card h3,
.spotlight-card p {
  margin: 0;
}

.spotlight-card h3 {
  font-size: 1.35rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.spotlight-card p {
  color: var(--muted);
  line-height: 1.85;
}

.spotlight-foot {
  margin-top: 10px;
  justify-content: space-between;
  gap: 12px;
}

.spotlight-foot strong,
.spotlight-foot small {
  display: block;
}

.spotlight-foot a {
  font-weight: 800;
  color: inherit;
}

.tone-navy {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, rgba(26, 16, 53, 0.95) 100%);
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.tone-navy p,
.tone-navy .spotlight-foot small,
.tone-navy .feature-label,
.tone-navy .journey-step-badge,
.tone-navy .pricing-name,
.tone-navy .pricing-head p,
.tone-navy .pricing-head h3 small,
.tone-navy .testimonial-person span {
  color: rgba(255, 255, 255, 0.82);
}

.tone-navy .pricing-list {
  color: rgba(255, 255, 255, 0.9);
}

.tone-navy .spotlight-badge,
.tone-navy .testimonial-badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tone-navy .spotlight-icon,
.tone-navy .feature-icon,
.tone-navy .journey-step-icon,
.tone-navy .testimonial-icon {
  background: rgba(255, 255, 255, 0.14);
}

.tone-navy .testimonial-quote {
  color: rgba(255, 255, 255, 0.92);
}

.tone-amber { background: linear-gradient(180deg, rgba(255, 245, 229, 0.96) 0%, rgba(255, 236, 208, 0.96) 100%); }
.tone-teal { background: linear-gradient(180deg, rgba(233, 249, 247, 0.98) 0%, rgba(213, 243, 238, 0.98) 100%); }
.tone-coral { background: linear-gradient(180deg, rgba(255, 241, 238, 0.98) 0%, rgba(251, 226, 220, 0.98) 100%); }
.tone-plum { background: linear-gradient(180deg, rgba(246, 239, 251, 0.98) 0%, rgba(235, 224, 243, 0.98) 100%); }
.tone-olive { background: linear-gradient(180deg, rgba(242, 246, 232, 0.98) 0%, rgba(230, 238, 208, 0.98) 100%); }
.tone-ink { background: linear-gradient(180deg, rgba(246, 245, 242, 0.98) 0%, rgba(234, 231, 227, 0.98) 100%); }

.marketplace-section {
  position: relative;
}

.market-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.market-tab {
  border: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 800;
  cursor: pointer;
}

.market-tab span {
  margin-inline-start: 6px;
  color: var(--muted);
}

.market-tab.is-active {
  background: var(--navy);
  color: #fff;
}

.market-tab.is-active span {
  color: rgba(255, 255, 255, 0.74);
}

.market-panel {
  display: none;
  margin-top: 18px;
}

.market-panel.is-active {
  display: block;
}

.market-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  background: rgba(26, 16, 53, 0.7);
  backdrop-filter: blur(15px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.05);
}

.market-card-cover {
  height: 210px;
  background: linear-gradient(135deg, var(--navy) 0%, #35689d 100%);
}

.market-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.market-card-body h3,
.market-card-body p {
  margin: 0;
}

.market-card-body h3 {
  font-size: 1.22rem;
  line-height: 1.28;
}

.market-card-body p {
  color: var(--muted);
  line-height: 1.8;
}

.market-card-meta {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.market-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
}

.market-card-link.subtle {
  color: var(--ink-soft);
  opacity: 0.88;
}

.market-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.market-card-cover {
  position: relative;
  overflow: hidden;
}

.market-card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 20, 38, 0.58) 100%);
}

.market-card-badges,
.market-card-cover-meta {
  position: absolute;
  z-index: 1;
}

.market-card-badges {
  top: 16px;
  inset-inline-start: 16px;
  display: flex;
  flex-wrap: wrap;
  max-width: calc(100% - 32px);
  gap: 8px;
}

.market-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: rgba(26, 16, 53, 0.9);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.market-card-badge.state-active {
  background: rgba(6, 182, 212, 0.9);
  color: #fff;
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.market-card-badge.state-trending {
  background: rgba(245, 158, 11, 0.9);
  color: #fff;
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.market-card-badge.state-new {
  background: rgba(168, 85, 247, 0.9);
  color: #fff;
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.market-card-badge.state-ready {
  background: rgba(139, 92, 246, 0.9);
  color: #fff;
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.market-card-cover-meta {
  inset-inline: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-discovery {
  display: grid;
  gap: 18px;
}

.hero-discovery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-discovery-feature .market-card {
  min-height: 0;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.market-card-hero .market-card-cover {
  height: 224px;
}

.market-card-hero .market-card-body {
  padding: 20px;
}

.market-card-hero .market-card-body h3 {
  font-size: 1.36rem;
}

.discover-shell {
  display: grid;
  gap: 24px;
}

.discover-results-shell {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    radial-gradient(circle at top left, rgba(131, 215, 205, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 244, 0.78));
  box-shadow: 0 18px 48px rgba(16, 35, 63, 0.08);
}

.discover-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 18px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.discover-search-copy h3,
.discover-search-copy p {
  margin: 0;
}

.discover-search-copy h3 {
  margin-top: 10px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.discover-search-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.85;
}

.discover-search-box {
  display: grid;
  gap: 14px;
}

.discover-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  padding-inline-start: 58px;
  padding-inline-end: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.discover-search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.discover-search-input::placeholder {
  color: rgba(39, 66, 104, 0.58);
}

.discover-search-icon {
  position: absolute;
  inset-inline-start: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(16, 35, 63, 0.06);
  color: var(--ink-soft);
  font-size: 1rem;
}

.discover-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.discover-category-chip {
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-weight: 800;
  cursor: pointer;
}

.discover-rail-stack,
.discover-rail-grid {
  display: grid;
  gap: 18px;
}

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

.discover-rail {
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 44px rgba(16, 35, 63, 0.08);
}

.discover-rail-head,
.discover-toolbar,
.discover-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.discover-rail-head {
  margin-bottom: 14px;
}

.discover-rail-head h3,
.discover-results strong,
.discover-empty h3 {
  margin: 0;
}

.discover-rail-head h3 {
  margin-top: 8px;
  font-size: 1.15rem;
}

.discover-rail-head a {
  font-weight: 800;
  color: var(--navy);
}

.discover-toolbar {
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.discover-tabs {
  max-width: 100%;
}

.discover-results {
  min-width: 170px;
  justify-content: flex-end;
  color: var(--muted);
}

.discover-results strong {
  font-size: 1.3rem;
  color: var(--ink);
}

.market-grid-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.market-grid-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-card-rail .market-card-cover,
.market-card-catalog .market-card-cover {
  height: 220px;
}

.market-card-rail-compact .market-card-cover {
  height: 180px;
}

.market-card-rail-compact .market-card-body,
.market-card-catalog .market-card-body {
  padding: 16px;
}

.market-card-rail-compact .market-card-body h3 {
  font-size: 1.04rem;
}

.market-card-rail-compact .market-card-meta {
  font-size: 0.8rem;
}

.market-card.is-hidden {
  display: none;
}

.discover-empty {
  padding: 28px 20px;
  text-align: center;
  border-radius: 26px;
  border: 1px dashed rgba(16, 35, 63, 0.18);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
}

.discover-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(16, 35, 63, 0.06);
  color: var(--ink);
  font-size: 1.6rem;
}

.discover-empty p {
  margin: 10px auto 0;
  max-width: 46ch;
  line-height: 1.8;
}

.feature-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.03);
  background: rgba(26, 16, 53, 0.5);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.feature-card-top {
  justify-content: space-between;
  gap: 10px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 1.55rem;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.feature-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
}

.feature-card h3,
.feature-card p {
  margin: 0;
}

.feature-card h3 {
  font-size: 1.28rem;
  line-height: 1.24;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.85;
}

.journey-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-step {
  min-height: 224px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  background: rgba(26, 16, 53, 0.5);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
}

.journey-step-head {
  justify-content: space-between;
}

.journey-step-badge {
  color: var(--muted);
  font-weight: 800;
}

.journey-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.56);
  font-size: 1.32rem;
}

.journey-step h3,
.journey-step p {
  margin: 0;
}

.journey-step h3 {
  font-size: 1.26rem;
  line-height: 1.26;
}

.journey-step p {
  color: var(--muted);
  line-height: 1.85;
}

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

.pricing-card {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  background: rgba(26, 16, 53, 0.6);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.is-featured {
  transform: none;
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.25), 0 0 60px rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.1);
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.pricing-head {
  padding-top: 22px;
}

.pricing-name,
.pricing-head p {
  color: var(--muted);
}

.pricing-name {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-head h3 {
  margin: 10px 0;
  font-size: 1.85rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pricing-head h3 small {
  font-size: 0.88rem;
  letter-spacing: 0;
  color: var(--muted);
}

.pricing-head p {
  margin: 0;
  line-height: 1.75;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: var(--ink-soft);
}

.pricing-list li {
  position: relative;
  padding-inline-start: 22px;
  line-height: 1.7;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.4;
}

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

.testimonial-card {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  background: rgba(26, 16, 53, 0.5);
  backdrop-filter: blur(12px);
}

.testimonial-top {
  justify-content: space-between;
  gap: 10px;
}

.testimonial-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.58);
  font-size: 1.35rem;
}

.testimonial-quote {
  margin: 14px 0 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  font-size: 1.08rem;
}

.testimonial-person span {
  color: var(--muted);
  margin-top: 4px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 28px;
  background: rgba(26, 16, 53, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-title {
  font-size: 1.12rem;
  line-height: 1.6;
}

.faq-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(16, 35, 63, 0.06);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.9;
}

.final-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 56px;
  padding-bottom: 40px;
}

.final-cta-shell {
  padding: 32px 28px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.3), transparent 40%),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.2), transparent 40%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(26, 16, 53, 0.95) 50%, rgba(36, 24, 69, 0.9) 100%);
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-shell::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-shell .section-kicker {
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.final-cta-shell h2,
.final-cta-shell p {
  margin: 0 auto;
}

.final-cta-shell h2 {
  margin-top: 16px;
  margin-bottom: 14px;
  max-width: 14ch;
  font-size: clamp(1.55rem, 3.15vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.final-cta-shell p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.footer-grid,
.footer-bottom {
  justify-content: space-between;
  gap: 20px;
}

.footer-grid {
  align-items: flex-end;
  padding-top: 30px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-note {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  color: var(--muted);
  flex-wrap: wrap;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.packs-section .section-head p {
  max-width: 52ch;
  color: var(--muted, #64748b);
  line-height: 1.65;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.pack-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 22px;
  background: var(--surface, #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.pack-card-accent {
  position: absolute;
  inset-inline: 16px;
  top: 0;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.pack-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

.pack-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 4px;
}

.pack-desc {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
  line-height: 1.55;
  flex: 1;
}

.pack-meta {
  font-size: 0.82rem;
  color: var(--muted, #64748b);
}

.pack-cta {
  margin-top: 4px;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-stage {
    order: 1;
  }

  .hero h1 {
    max-width: none;
  }

  .section-shell {
    padding: 26px;
    border-radius: 34px;
  }

  .spotlight-grid,
  .feature-mosaic,
  .journey-track,
  .pricing-grid,
  .testimonial-grid,
  .market-grid,
  .market-grid-rail,
  .market-grid-catalog,
  .discover-rail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discover-search-panel {
    grid-template-columns: 1fr;
  }

  .discover-results-shell {
    padding: 20px;
  }

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

@media (max-width: 860px) {
  .announcement-link {
    justify-content: flex-start;
    text-align: right;
  }

  .nav-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(16, 35, 63, 0.28);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  body.nav-menu-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    z-index: 10;
    display: grid;
    gap: 6px;
    padding: 14px 14px 16px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.98);
    border: 1px solid rgba(16, 35, 63, 0.1);
    box-shadow: 0 24px 70px rgba(16, 35, 63, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    max-height: min(72vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    background: rgba(16, 35, 63, 0.04);
    justify-self: stretch;
    text-align: center;
    padding: 14px 16px;
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(16, 35, 63, 0.1);
  }

  .btn-nav-mobile {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-shell,
  .section-shell {
    padding: 22px;
  }

  .hero-metrics,
  .stage-pulse-grid,
  .spotlight-grid,
  .feature-mosaic,
  .journey-track,
  .pricing-grid,
  .testimonial-grid,
  .market-grid,
  .market-grid-rail,
  .market-grid-catalog,
  .market-grid-compact,
  .discover-rail-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .discover-toolbar,
  .discover-rail-head,
  .discover-results,
  .hero-discovery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-card,
  .final-cta-shell {
    padding: 22px 18px;
  }

  .micro-stack,
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .announcement-bar,
  .site-nav,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    padding-inline: 14px;
  }

  .announcement-link {
    gap: 10px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .nav-shell {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-mark {
    width: 96px;
    height: auto;
    max-height: 58px;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding-top: 16px;
    padding-bottom: 8px;
  }

  .hero-shell {
    padding: 20px 18px;
    gap: 18px;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: 1.68rem;
    line-height: 1.28;
    letter-spacing: -0.008em;
  }

  .hero-subtitle {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .hero-actions,
  .hero-actions.center {
    flex-direction: column;
  }

  .section {
    padding-top: 58px;
  }

  .section-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .section-head h2 {
    font-size: 1.72rem;
  }

  .discover-rail {
    padding: 18px;
    border-radius: 24px;
  }

  .discover-results-shell {
    padding: 18px;
    border-radius: 26px;
  }

  .discover-search-input-wrap {
    min-height: 60px;
    padding-inline-start: 52px;
  }

  .market-card-hero .market-card-cover,
  .market-card-rail .market-card-cover,
  .market-card-catalog .market-card-cover {
    height: 190px;
  }

  .spotlight-card,
  .feature-card,
  .journey-step,
  .pricing-card,
  .testimonial-card {
    min-height: auto;
  }

  .final-cta-shell {
    padding: 22px 18px;
    border-radius: 30px;
  }
}
