/* =====================================================
   LDS OPA CRM — Marketing Site Stylesheet
   Glass cards · LDS pink · Apple/Tesla aesthetic
   ===================================================== */

:root {
  --pink:       #EEA3C1;
  --pink-dk:    #C76E92;
  --pink-ink:   #8B3F5F;
  --pink-soft:  #FDECF4;
  --pink-2:     #F5CCDD;
  --ink:        #0F0A0D;
  --ink-2:      #2A1D24;
  --mute:       #6B5E65;
  --mute-2:     #A3A0A6;
  --canvas:     #FAF8F9;
  --paper:      #FFFFFF;
  --line:       #E9E0E5;
  --hairline:   rgba(11, 12, 14, 0.06);

  --good:       #2F7D4F;
  --warn:       #B97A14;
  --bad:        #B72D3B;

  --sans:       'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display:    'Playfair Display', 'Manrope', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(11,12,14,0.06), 0 2px 8px rgba(199,110,146,0.04);
  --shadow-md: 0 4px 16px rgba(11,12,14,0.08), 0 2px 24px rgba(199,110,146,0.06);
  --shadow-lg: 0 16px 48px rgba(11,12,14,0.1), 0 4px 32px rgba(199,110,146,0.12);
  --shadow-xl: 0 30px 80px rgba(11,12,14,0.14), 0 8px 40px rgba(199,110,146,0.16);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--canvas);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
em { font-style: italic; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-ink);
  background: var(--pink-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--ink);
}
h2 { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.08; }
h3 { font-size: 22px; font-family: var(--sans); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; }

h1 em, h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink-dk) 0%, var(--pink) 60%, var(--pink-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

p { margin: 0 0 14px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .18s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(11,12,14,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,12,14,0.28), inset 0 1px 0 rgba(255,255,255,0.12),
              0 0 0 3px rgba(238,163,193,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  background: var(--pink-soft);
  border-color: var(--pink);
  color: var(--pink-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(11,12,14,0.06); }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.2);
}

/* =====================================================
   FLOATING NAV
   ===================================================== */
.nav-float {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 18px 10px 22px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(11,12,14,0.08);
  max-width: calc(100vw - 24px);
  transition: all .2s ease;
}
.nav-float.scrolled {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 28px rgba(11,12,14,0.12);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-brand img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(199, 110, 146, 0.15));
}
.pipe {
  width: 1px; height: 16px; background: var(--line); display: inline-block;
  flex-shrink: 0;
}
.nav-subtitle {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 4px;
  padding: 0 6px;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all .15s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--pink-soft);
  color: var(--pink-ink);
}
.nav-cta {
  display: flex;
  gap: 6px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .nav-float {
    gap: 8px;
    padding: 6px 8px 6px 12px;
    top: 10px;
    width: calc(100% - 20px);
    max-width: 400px;
  }
  .nav-subtitle, .pipe { display: none; }
  .nav-brand img { height: 26px; }
  .nav-cta { gap: 4px; }
  .nav-cta .btn-sm { padding: 6px 12px; font-size: 12px; }
  .nav-cta .btn-ghost { display: none; } /* Sign-in still in hero CTA */
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 40px 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF5F9 0%, #FEE8F2 40%, #FAF8F9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }
  .hero-eyebrow {
    font-size: 10px;
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-cta {
    margin-bottom: 40px;
  }
  .hero-cta .btn-lg {
    flex: 1;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.orb-1 {
  width: 640px; height: 640px;
  top: -200px; right: -160px;
  background: radial-gradient(circle, #EEA3C1 0%, transparent 60%);
  opacity: 0.6;
}
.orb-2 {
  width: 480px; height: 480px;
  bottom: -100px; left: -120px;
  background: radial-gradient(circle, #C76E92 0%, transparent 60%);
  opacity: 0.32;
}
.orb-3 {
  width: 320px; height: 320px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, #F5CCDD 0%, transparent 70%);
  opacity: 0.35;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.3 0 0 0 0 0.4 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(238,163,193,0.3);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-ink);
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(199, 110, 146, 0.08);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--pink-dk);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.9); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Floating glass accent chips — positioned at proper corners */
.hero-float-chip {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(238, 163, 193, 0.4);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(199, 110, 146, 0.14),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-gentle 6s ease-in-out infinite;
}
.hero-float-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EEA3C1, #C76E92);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(238, 163, 193, 0.2);
}
.hero-float-chip .chip-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-ink);
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-float-chip .chip-val {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

/* Proper 4-corner anchoring with equal offsets */
.chip-1 { top: 130px; left: 48px; animation-delay: 0s; }
.chip-2 { top: 130px; right: 48px; animation-delay: -2s; }
.chip-3 { bottom: 130px; left: 48px; animation-delay: -4s; }
.chip-4 { bottom: 130px; right: 48px; animation-delay: -1s; }

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1280px) {
  .chip-1, .chip-3 { left: 24px; }
  .chip-2, .chip-4 { right: 24px; }
}
@media (max-width: 1100px) {
  .hero-float-chip { display: none; }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 32px;
  color: var(--ink);
  max-width: 900px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink-dk) 0%, var(--pink) 50%, var(--pink-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto 44px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  justify-content: center;
}

/* Integrated horizontal stats strip — elite glass pill */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 880px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(253,236,244,0.6) 100%);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1),
              0 20px 50px rgba(199, 110, 146, 0.14),
              0 4px 16px rgba(199, 110, 146, 0.08);
  margin-top: 8px;
}
.hero-stats.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(.2,.8,.2,1) 0.2s;
}
.hero-stats.js-reveal.in-view { opacity: 1; transform: translateY(0); }
.hero-stat {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(238, 163, 193, 0.25);
}
.hero-stat:last-child { border-right: none; }

.hs-val {
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.hs-val span {
  font-size: 0.5em;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-left: 3px;
}
.hs-lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pink-ink);
  margin-top: 10px;
}

@media (max-width: 820px) {
  .hero-stats {
    flex-wrap: wrap;
    padding: 18px 14px;
    gap: 0;
    border-radius: 22px;
  }
  .hero-stat {
    flex: 1 1 50%;
    padding: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(238, 163, 193, 0.2);
  }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(238, 163, 193, 0.2); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 420px) {
  .hero-stat { flex: 1 1 100%; border-right: none !important; }
  .hero-stat:not(:last-child) { border-bottom: 1px solid rgba(238, 163, 193, 0.2); }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
  padding: 120px 24px;
  position: relative;
}
@media (max-width: 640px) {
  .section {
    padding: 60px 20px;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-lead {
    font-size: 15px;
  }
}
/* Reveal-on-scroll: applied by JS after first paint. Browsers
   without JS or when observer hasn't fired yet still see content. */
.section.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.section.js-reveal.in-view { opacity: 1; transform: translateY(0); }
.section-alt {
  background: linear-gradient(180deg, #FAF8F9 0%, #FFF5F9 50%, #FAF8F9 100%);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.narrow { max-width: 640px; }
.section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 560px;
  margin: 10px auto 0;
}

/* =====================================================
   STEPS
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.step-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(238,163,193,0.45), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), var(--shadow-lg);
}
.step-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--pink-dk) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 18px;
}
.step-card h3 {
  margin-bottom: 10px;
}
.step-card p {
  color: var(--ink-2);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step-chips span {
  background: var(--pink-soft);
  color: var(--pink-ink);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .steps-grid { gap: 14px; }
  .step-card { padding: 24px 22px; }
  .step-num { font-size: 44px; margin-bottom: 12px; }
  .step-card h3 { font-size: 18px; }
  .step-card p { font-size: 13px; }
}

/* =====================================================
   SCORING SHOWCASE
   ===================================================== */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), var(--shadow-md);
}
.glass.dark {
  background: linear-gradient(135deg, #1A0F14 0%, #2A1D24 100%);
  color: #fff;
  border: 1px solid rgba(238,163,193,0.2);
}
.glass.accent {
  background: linear-gradient(135deg, rgba(253,236,244,0.85), rgba(245,204,221,0.7));
  border: 1px solid rgba(238,163,193,0.4);
}

.score-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.score-card {
  padding: 28px 26px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.score-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-ink);
  background: rgba(238,163,193,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.score-tag.light {
  color: var(--pink);
  background: rgba(238,163,193,0.15);
}
.score-formula {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--ink);
}
.score-formula.light { color: #fff; }
.score-eq {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.score-eq > span {
  background: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.glass.dark .score-eq > span {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.score-eq .op {
  background: transparent !important;
  border: none !important;
  font-weight: 800;
  color: var(--pink-dk);
  padding: 0 !important;
  font-size: 16px;
}
.score-eq .op.light { color: var(--pink); }
.score-eq .passed { color: var(--good); }
.score-eq .crit {
  background: var(--bad) !important;
  color: #fff !important;
  border-color: var(--bad) !important;
  font-weight: 800;
}
.score-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .score-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .score-showcase { gap: 12px; }
  .score-card { padding: 22px 20px; }
  .score-formula { font-size: 17px; }
  .crit-gallery {
    padding: 20px 22px;
    margin-top: 24px;
    border-radius: 18px;
  }
  .crit-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
}

.crit-gallery {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(238,163,193,0.3);
  border-radius: 22px;
}
.crit-gallery-head {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-ink);
  margin-bottom: 16px;
}
.crit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.crit-pill {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(11,12,14,0.15);
  transition: transform .15s ease;
}
.crit-pill:hover {
  transform: translateY(-2px) scale(1.02);
}

/* =====================================================
   AI SHOWCASE
   ===================================================== */
.ai-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.ai-card {
  padding: 32px 28px;
  border-radius: 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.ai-card:hover { transform: translateY(-4px); }
.ai-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(199,110,146,0.3);
  margin-bottom: 20px;
}
.ai-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.ai-prompts {
  max-width: 1100px;
  margin: 40px auto 0;
}
.ai-prompts-head {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-ink);
  margin-bottom: 18px;
  text-align: center;
}
.ai-prompts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ai-prompt {
  padding: 16px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-style: italic;
  color: var(--ink-2);
  font-family: var(--display);
  font-weight: 500;
}

@media (max-width: 900px) {
  .ai-showcase { grid-template-columns: 1fr; }
  .ai-prompts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ai-showcase { gap: 12px; }
  .ai-card { padding: 24px 22px; }
  .ai-prompt { font-size: 14px; padding: 14px 20px; }
}

/* =====================================================
   SELF-SERVICE PANEL
   ===================================================== */
.self-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.self-panel.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.self-panel.js-reveal.in-view { opacity: 1; transform: translateY(0); }
.self-panel h2 { margin-bottom: 14px; }
.self-panel p { font-size: 16px; color: var(--ink-2); margin-bottom: 24px; line-height: 1.55; }
.self-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.self-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.self-features li:last-child { border-bottom: none; }
.self-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.self-muted {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.04em;
}

/* Phone mockup */
.phone-mock {
  position: relative;
  width: 300px;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(135deg, #1a1216 0%, #2A1D24 100%);
  border-radius: 44px;
  box-shadow: 0 30px 80px rgba(11,12,14,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.phone-mock::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 18px;
  background: #0a0608;
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  background: #FAF8F9;
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  position: relative;
}
.phone-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 12px 28px 6px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  z-index: 3;
}
.phone-content {
  padding: 50px 18px 20px;
  height: 100%;
}
.phone-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.phone-progress {
  background: linear-gradient(135deg, #FDECF4 0%, #F5CCDD 100%);
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
}
.pp-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-ink);
  margin-bottom: 8px;
}
.pp-bar {
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-dk), var(--pink));
  border-radius: 100px;
}
.pp-score {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.pp-score span {
  font-size: 14px;
  color: var(--mute);
  font-weight: 600;
}
.phone-item {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 8px;
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
}
.phone-item:last-of-type { border-bottom: none; }
.pi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--good);
}
.phone-item.fail .pi-dot { background: var(--bad); }
.pi-text {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}
.phone-item.fail .pi-text { color: var(--bad); font-weight: 700; }
.pi-pts {
  background: var(--ink);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
}
.crit-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--pink-ink);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-left: 4px;
  vertical-align: middle;
}
.phone-fab {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  box-shadow: 0 6px 16px rgba(199,110,146,0.4);
}

@media (max-width: 900px) {
  .self-panel {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }
  .phone-mock { width: 240px; }
}
@media (max-width: 640px) {
  .self-panel {
    padding: 32px 22px;
    gap: 28px;
    border-radius: 22px;
  }
  .self-panel p { font-size: 15px; }
  .self-features li { font-size: 13px; padding: 8px 0; }
  .self-muted { font-size: 11px; }
  .phone-mock { width: 220px; }
}

/* =====================================================
   FEATURES GRID
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  padding: 24px 22px;
  border-radius: 18px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.feature-card:hover { transform: translateY(-4px); }
.fc-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta-final {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(135deg, #0F0A0D 0%, #2A1D24 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.cta-final.js-reveal.in-view { opacity: 1; transform: translateY(0); }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(238,163,193,0.35) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 16px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.55;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-final { padding: 70px 20px; }
  .cta-final p { font-size: 15px; margin-bottom: 26px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .site-footer { padding: 36px 20px 28px; }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 12px; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 50px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer-brand-sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
