/* Prime Accessibility — Light marketing site */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --ink: #18141f;
  --surface: #ffffff;
  --surface-2: #f5f3f9;
  --surface-3: #ebe7f2;
  --line: rgba(24, 20, 31, 0.1);
  --text: #18141f;
  --muted: #5c5668;
  --violet: #7c3aed;
  --violet-deep: #5b21b6;
  --violet-bright: #8b5cf6;
  --mint: #10b981;
  --glow: rgba(124, 58, 237, 0.22);
  --grad: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #8b5cf6 100%);
  --mesh: radial-gradient(ellipse 80% 60% at 85% 0%, rgba(139, 92, 246, 0.12), transparent 55%),
          radial-gradient(ellipse 55% 45% at 5% 90%, rgba(124, 58, 237, 0.08), transparent 50%),
          radial-gradient(ellipse 40% 35% at 50% 40%, rgba(167, 139, 250, 0.05), transparent 65%);
  --font: 'Poppins', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 16px;
  --r-lg: 24px;
  --container: 1160px;
  --header: 68px;
  --shadow: 0 16px 48px rgba(24, 20, 31, 0.08);
  --shadow-sm: 0 2px 10px rgba(24, 20, 31, 0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  padding: 12px 18px; background: var(--violet); color: #fff; font-weight: 600; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 28px var(--glow); }
.btn-primary:hover { box-shadow: 0 14px 36px var(--glow); }
.btn-ghost {
  background: #fff; color: var(--text);
  border-color: var(--line); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: rgba(124, 58, 237, 0.35); color: var(--violet-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--violet); color: var(--violet-deep); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 15px; }

/* Header — light */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(24, 20, 31, 0.04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header); gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 15px; letter-spacing: -0.02em; }
.logo img { width: 32px; height: 32px; border-radius: 9px; }
.nav-main { display: flex; gap: 26px; }
.nav-main a { color: var(--muted); font-size: 13.5px; font-weight: 500; transition: color .2s; }
.nav-main a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; color: var(--text); padding: 8px; }

/* Hero — white / light */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header) + 56px) 0 80px;
  background: var(--surface); color: var(--text); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; background: var(--mesh); pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: end; width: 100%;
}
.hero-brand {
  font-family: var(--font); font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 14px;
  color: var(--text);
  opacity: 0; animation: rise .9s var(--ease) .08s forwards;
}
.hero-brand em {
  font-style: normal; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-eyebrow-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--violet-deep); margin-bottom: 12px;
  opacity: 0; animation: rise .9s var(--ease) .02s forwards;
}
.hero-lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.4;
  color: var(--text); max-width: 36ch; margin-bottom: 12px;
  opacity: 0; animation: rise .9s var(--ease) .2s forwards;
}
.hero-desc {
  font-size: .98rem; color: var(--muted); max-width: 48ch; margin-bottom: 28px;
  opacity: 0; animation: rise .9s var(--ease) .32s forwards;
}
.hero-desc strong { color: var(--text); font-weight: 600; }
.statement-heading {
  font-family: var(--font); font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 14px; line-height: 1.15; color: var(--text);
}
.statement-lead { color: var(--muted); margin-bottom: 20px; }
.statement-lead code {
  font-size: 0.85em; background: #fff; padding: 2px 6px; border-radius: 6px; border: 1px solid var(--line);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  opacity: 0; animation: rise .9s var(--ease) .42s forwards;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
  opacity: 0; animation: rise .9s var(--ease) .52s forwards;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--muted);
}
.chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: block; }

/* Widget mock */
.hero-visual { position: relative; opacity: 0; animation: rise 1s var(--ease) .3s forwards, float 7s ease-in-out 1.5s infinite; }
.widget-mock {
  width: 100%; max-width: 380px; margin-left: auto;
  background: #fff; color: var(--text);
  border-radius: 22px; box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--line);
}
.widget-mock-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; background: var(--grad); color: #fff;
}
.widget-mock-header strong { font-size: 14px; }
.widget-mock-close {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.2);
  display: grid; place-items: center; font-size: 12px;
}
.widget-mock-body { padding: 16px 18px 18px; }
.widget-section-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 10px;
}
.widget-profiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 16px; }
.widget-profile {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 10px 4px; border-radius: 12px; background: var(--surface-2);
  font-size: 9.5px; font-weight: 650; color: var(--muted); text-align: center; line-height: 1.2;
}
.widget-profile.active { background: rgba(124,58,237,.1); color: var(--violet-deep); box-shadow: inset 0 0 0 1.5px var(--violet); }
.widget-profile-icon {
  width: 26px; height: 26px; border-radius: 8px; background: #fff;
  display: grid; place-items: center; font-size: 12px;
}
.widget-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.widget-tool {
  padding: 11px 6px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line);
  text-align: center; font-size: 10.5px; font-weight: 650;
}
.widget-tool span { display: block; font-size: 16px; margin-bottom: 3px; }
.widget-launcher {
  position: absolute; bottom: -10px; right: -6px;
  width: 54px; height: 54px; border-radius: 50%; background: var(--grad);
  box-shadow: 0 10px 28px var(--glow); display: grid; place-items: center; color: #fff;
  animation: ring 2.8s ease-out infinite;
}

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes ring {
  0% { box-shadow: 0 10px 28px var(--glow), 0 0 0 0 rgba(124,58,237,.25); }
  70% { box-shadow: 0 10px 28px var(--glow), 0 0 0 20px rgba(124,58,237,0); }
  100% { box-shadow: 0 10px 28px var(--glow), 0 0 0 0 rgba(124,58,237,0); }
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -18px) rotate(8deg); }
}
@keyframes drift-alt {
  0%, 100% { transform: translate(0, 0) rotate(12deg); }
  50% { transform: translate(-16px, 10px) rotate(-4deg); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: .55; }
  50% { opacity: .85; }
}
@keyframes pulse-scale {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .55; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: .85; }
}

/* ── Creative shapes ── */
.shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.has-shapes,
.hero,
.final-cta,
#pricing {
  position: relative;
  overflow: hidden;
}
.has-shapes > .container,
.hero > .container,
.final-cta > .container,
#pricing > .container {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  display: block;
}

/* Blob */
.shape-blob {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.22), rgba(91, 33, 182, 0.08));
  animation: drift 12s ease-in-out infinite;
  filter: blur(2px);
}
.shape-blob--alt {
  width: 280px; height: 280px;
  top: auto; bottom: -80px; left: -60px; right: auto;
  background: linear-gradient(200deg, rgba(124, 58, 237, 0.16), rgba(167, 139, 250, 0.06));
  animation: drift-alt 14s ease-in-out infinite;
}
.shape-blob--glow {
  width: 520px; height: 520px;
  top: 50%; left: 50%;
  background: radial-gradient(circle, rgba(135, 62, 255, 0.4) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(8px);
  animation: pulse-scale 6s ease-in-out infinite;
}

/* Ring */
.shape-ring {
  width: 220px; height: 220px;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  top: 18%; left: 42%;
  animation: spin-slow 28s linear infinite;
}
.shape-ring::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(139, 92, 246, 0.25);
  border-radius: 50%;
}
.shape-ring--sm {
  width: 140px; height: 140px;
  top: 12%; right: 8%; left: auto;
  border-color: rgba(124, 58, 237, 0.18);
}
.shape-ring--lg {
  width: 360px; height: 360px;
  top: -80px; right: -100px; left: auto;
  border-width: 3px;
  border-color: rgba(124, 58, 237, 0.12);
  animation-duration: 40s;
}
.shape-ring--light {
  width: 280px; height: 280px;
  top: -60px; right: 8%; left: auto;
  border-color: rgba(255, 255, 255, 0.14);
}
.shape-ring--light::after { border-color: rgba(255, 255, 255, 0.1); }

/* Dot / orbit */
.shape-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--violet);
  top: 28%; left: 8%;
  box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.12);
  animation: pulse-soft 4s ease-in-out infinite;
}
.shape-dot--light {
  background: #a78bfa;
  top: 70%; left: 12%;
  box-shadow: 0 0 0 10px rgba(167, 139, 250, 0.15);
}

/* Rounded square */
.shape-square {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(124, 58, 237, 0.2);
  bottom: 18%; left: 6%;
  transform: rotate(18deg);
  animation: drift-alt 10s ease-in-out infinite;
}
.shape-square--rot {
  width: 96px; height: 96px;
  top: 40%; left: 4%; bottom: auto;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), transparent);
}

/* Arc */
.shape-arc {
  width: 160px; height: 160px;
  border: 3px solid transparent;
  border-top-color: rgba(124, 58, 237, 0.35);
  border-right-color: rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  bottom: 12%; right: 38%;
  animation: spin-slow 18s linear infinite reverse;
}
.shape-arc--light {
  bottom: 10%; left: 18%; right: auto;
  border-top-color: rgba(255, 255, 255, 0.28);
  border-right-color: rgba(167, 139, 250, 0.2);
}

/* Pill */
.shape-pill {
  width: 110px; height: 36px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.18);
  top: 42%; left: 36%;
  transform: rotate(-24deg);
  animation: drift 11s ease-in-out infinite;
}

/* Soft section helpers */
.shape-circle {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.28), rgba(124, 58, 237, 0.04));
  top: -40px; right: 5%;
  animation: pulse-soft 8s ease-in-out infinite;
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 62px solid rgba(124, 58, 237, 0.12);
  bottom: 40px; left: 6%;
  animation: drift 13s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.08));
}
.shape-dots {
  width: 64px; height: 64px;
  top: 55%; right: 10%;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.35) 1.5px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.7;
  animation: drift-alt 16s ease-in-out infinite;
}

.shapes--soft .shape-blob,
.shapes--pricing .shape-blob { filter: none; }

@media (max-width: 980px) {
  .shape-pill,
  .shape-arc,
  .shape-triangle,
  .shapes--pricing { display: none; }
  .shape-blob { width: 260px; height: 260px; top: -80px; right: -100px; }
  .shape-ring { width: 140px; height: 140px; top: 10%; left: auto; right: 5%; }
}

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

/* Sections */
.section { padding: 100px 0; background: var(--surface); color: var(--text); }
.section--ink,
.section--soft { background: var(--surface-2); color: var(--text); }
.section-head { max-width: 560px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--violet); margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font); font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 14px;
  color: var(--text);
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Cards always sit on a contrasting surface */
.card-surface {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* Compliance */
.compliance {
  padding: 22px 0; background: var(--surface-2); border-block: 1px solid var(--line);
}
.compliance-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 24px; }
.compliance-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.compliance-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.compliance-badge {
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--text); font-size: 12.5px; font-weight: 650;
}

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card {
  padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; min-height: 220px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.solution-card--accent {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.1);
}
.solution-card h3 { font-family: var(--font); font-size: 1.25rem; font-weight: 650; margin-bottom: 10px; letter-spacing: -0.02em; color: var(--text); }
.solution-card p { font-size: .92rem; color: var(--muted); flex: 1; margin-bottom: 18px; }
.solution-link { font-size: .9rem; font-weight: 650; color: var(--violet-deep); }

/* Trusted marquee */
.trusted { padding: 36px 0; background: #fff; border-block: 1px solid var(--line); overflow: hidden; }
.trusted-label {
  text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--muted); margin-bottom: 18px;
}
.marquee { display: flex; gap: 40px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.03em; color: rgba(24,20,31,.28); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bento-item {
  padding: 22px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .25s var(--ease), box-shadow .25s var(--ease);
}
.bento-item:hover { border-color: rgba(124,58,237,.35); transform: translateY(-2px); box-shadow: var(--shadow); }
.bento-item h3 { font-size: .98rem; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 6px; }
.bento-item p { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.bento-modes { margin-top: 10px; font-size: 11px; font-weight: 600; color: var(--violet-deep); }

/* Profiles — light cards */
.profiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.profile-item {
  padding: 24px 20px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .2s, box-shadow .3s;
}
.profile-item:hover { transform: translateY(-4px); border-color: rgba(124,58,237,.35); box-shadow: var(--shadow); }
.profile-item h3 { font-size: 1rem; font-weight: 650; margin: 12px 0 6px; color: var(--text); }
.profile-item p { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.profile-mark {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(124,58,237,.1);
  color: var(--violet-deep); display: grid; place-items: center; font-size: 16px;
}

/* Checker */
.checker-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.rule-cats { display: flex; flex-direction: column; gap: 0; }
.rule-cats li {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
}
.rule-cats li:first-child { border-top: 1px solid var(--line); }
.rule-num { font-family: var(--font); font-size: 1.05rem; font-weight: 700; color: var(--violet); }
.rule-cats h3 { font-size: .95rem; font-weight: 650; margin-bottom: 4px; }
.rule-cats p { font-size: .84rem; color: var(--muted); }
.checker-panel {
  background: #fff; color: var(--text); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--line);
  position: sticky; top: calc(var(--header) + 16px);
}
.checker-panel-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: var(--text); }
.checker-panel-bar strong { color: var(--text); }
.checker-status {
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
  background: rgba(16,185,129,.12); color: #059669;
}
.issue-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 10px; background: var(--surface-2); margin-bottom: 7px; font-size: 12.5px;
  border: 1px solid var(--line);
}
.issue-row span { color: var(--muted); }
.ai-btn {
  display: inline-flex; padding: 5px 10px; border-radius: 999px; background: var(--grad);
  color: #fff; font-size: 11px; font-weight: 650; white-space: nowrap;
}
.provider-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.provider-chip {
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface-2); font-size: 11.5px; color: var(--muted); font-weight: 500;
}

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  border-radius: var(--r-lg); background: var(--surface-2); color: var(--text);
  padding: 28px; min-height: 280px; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.split-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(124,58,237,.1), transparent 50%);
}
.split-visual-inner { position: relative; z-index: 1; }
.preset-rows { display: flex; flex-direction: column; gap: 8px; }
.preset-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 14px; border-radius: 12px; background: #fff;
  border: 1px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--text);
}
.preset-row.on { border-color: rgba(124,58,237,.4); background: rgba(124,58,237,.08); color: var(--text); }
.pill {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 9px; border-radius: 999px; background: rgba(24,20,31,.06); color: var(--muted);
}
.pill.on { background: var(--violet); color: #fff; }
.bullets { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.bullets li {
  display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted);
}
.bullets li::before {
  content: ''; width: 7px; height: 7px; margin-top: 7px; border-radius: 50%;
  background: var(--violet); flex-shrink: 0;
}

/* Settings */
.settings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.settings-card {
  padding: 22px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.settings-card h3 { font-size: .95rem; font-weight: 650; margin-bottom: 8px; color: var(--text); }
.settings-card ul { display: flex; flex-direction: column; gap: 6px; }
.settings-card li { font-size: .84rem; color: var(--muted); padding-left: 14px; position: relative; }
.settings-card li::before { content: '·'; position: absolute; left: 2px; color: var(--violet); font-weight: 700; }

/* Statement */
.statement-block {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center;
  padding: 40px; background: var(--surface-2); border-radius: var(--r-lg); border: 1px solid var(--line);
}
.statement-doc {
  background: #fff; border-radius: var(--r); padding: 24px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.statement-doc h4 { font-family: var(--font); font-size: 1.15rem; font-weight: 650; margin-bottom: 10px; }
.statement-doc p { font-size: .86rem; color: var(--muted); margin-bottom: 8px; }
.statement-line { height: 7px; background: var(--surface-3); border-radius: 4px; margin-bottom: 7px; }
.statement-line.short { width: 58%; }

/* Compare */
.compare-wrap {
  overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line);
  background: #fff; box-shadow: var(--shadow-sm);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table th {
  background: var(--surface-2); font-size: 11px; text-transform: uppercase;
  letter-spacing: .07em; font-weight: 700; color: var(--muted);
}
.compare-table th.pro-col { color: var(--violet-deep); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:not(:first-child),
.compare-table th:not(:first-child) { text-align: center; }
.check { color: #059669; font-weight: 700; }
.cross { color: #a1a1aa; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.pricing-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.price-plan {
  padding: 30px 26px; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); color: var(--text);
}
.price-plan.featured {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
  position: relative;
  color: var(--text);
}
.price-plan.featured::before {
  content: 'Most popular'; position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 9px; border-radius: 999px; background: var(--grad); color: #fff;
}
.plan-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.featured .plan-name { color: var(--violet-deep); }
.plan-price { font-family: var(--font); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; color: var(--text); }
.plan-price span { font-family: var(--font); font-size: .95rem; font-weight: 500; color: var(--muted); }
.featured .plan-price span { color: var(--muted); }
.plan-desc { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.featured .plan-desc { color: var(--muted); }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.price-features li { font-size: .88rem; padding-left: 20px; position: relative; color: var(--text); }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--violet); font-weight: 700; }
.featured .price-features li::before { color: var(--violet); }
.price-plan .btn { width: 100%; }
.trial-note { text-align: center; margin-top: 24px; font-size: .92rem; color: var(--muted); }

/* Testimonials — light */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial {
  padding: 26px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); margin: 0; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonial p { font-size: .94rem; line-height: 1.55; margin-bottom: 18px; color: var(--text); }
.testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial strong { font-size: .88rem; color: var(--text); }
.testimonial span { font-size: .78rem; color: var(--muted); }

/* Challenges */
.challenges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.challenge-item { padding-top: 18px; border-top: 2px solid var(--violet); }
.challenge-item h3 {
  font-family: var(--font); font-size: 1.1rem; font-weight: 650;
  letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.3; color: var(--text);
}
.challenge-item p { font-size: .92rem; color: var(--muted); }

/* Free check — soft violet wash on white */
.free-check {
  padding: 80px 0; background: var(--surface-2); color: var(--text);
  position: relative; overflow: hidden; border-block: 1px solid var(--line);
}
.free-check::before { content: ''; position: absolute; inset: 0; background: var(--mesh); pointer-events: none; }
.free-check-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center;
}
.free-check-copy h2 {
  font-family: var(--font); font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; color: var(--text);
}
.free-check-copy p { color: var(--muted); max-width: 42ch; }
.free-check-form {
  display: flex; gap: 8px; background: #fff; padding: 8px;
  border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.free-check-form input {
  flex: 1; min-width: 0; border: none; background: transparent; color: var(--text);
  padding: 12px 16px; font: inherit; font-size: 14px; outline: none;
}
.free-check-form input::placeholder { color: rgba(24,20,31,.4); }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--text);
}
.faq-q::after {
  content: '+'; font-size: 1.35rem; font-weight: 400; color: var(--violet);
  transition: transform .25s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 18px; }
.faq-a p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* Final CTA — dark */
.final-cta {
  position: relative; padding: 110px 0;
  background: #09070e; color: #f7f5fb;
  text-align: center; overflow: hidden; border-top: none;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(135, 62, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(109, 25, 206, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.035em; margin-bottom: 14px; color: #fff;
}
.final-cta p { color: rgba(247, 245, 251, 0.68); max-width: 42ch; margin: 0 auto 28px; font-size: 1.05rem; }
.final-cta .hero-actions { justify-content: center; opacity: 1; animation: none; }
.final-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f5fb;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.final-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Footer — dark */
.site-footer {
  background: #09070e; color: rgba(247, 245, 251, 0.68); padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #f7f5fb; font-weight: 700; margin-bottom: 12px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-about { font-size: .86rem; max-width: 28ch; line-height: 1.55; }
.footer-col h4 {
  color: #f7f5fb; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.footer-col a { display: block; font-size: .86rem; margin-bottom: 9px; transition: color .2s; color: rgba(247, 245, 251, 0.68); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .8rem;
  color: rgba(247, 245, 251, 0.5);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile nav */
.nav-main.is-open {
  display: flex; position: fixed; inset: var(--header) 0 0; flex-direction: column;
  align-items: stretch; padding: 28px 24px; background: #fff; gap: 0; z-index: 999;
  border-top: 1px solid var(--line);
}
.nav-main.is-open a {
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid, .checker-layout, .split, .statement-block, .footer-grid,
  .solutions-grid, .testimonials-grid, .challenges-grid, .free-check-inner,
  .settings-grid, .pricing-grid { grid-template-columns: 1fr; }
  .bento, .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { max-width: 360px; margin: 36px auto 0; }
  .widget-mock { margin: 0 auto; }
  .nav-main { display: none; }
  .menu-toggle { display: grid; }
  .header-actions .hide-sm { display: none; }
  .checker-panel { position: static; }
  .statement-block { padding: 24px; }
  .free-check-form { flex-direction: column; border-radius: var(--r); }
  .free-check-form .btn { width: 100%; border-radius: 12px; }
  .price-plan.featured::before { top: 12px; right: 12px; }
}
@media (max-width: 560px) {
  .bento, .profiles-grid { grid-template-columns: 1fr; }
  .widget-profiles { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
  .hero { align-items: center; padding-bottom: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee { animation: none; }
}
