/* =========================================================
   PridePulse MANAGEMENT — premium dark design system
   Rename the brand by editing "PridePulse" / ".brand" everywhere.
   Palette nods to the trans-pride flag (blue → pink → white).
   ========================================================= */

:root {
  /* Core surfaces — deep OLED black (Ethereal Glass archetype) */
  --bg:        #050507;
  --bg-soft:   #0a0a11;
  --surface:   #101019;
  --surface-2: #15151f;
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);
  --hairline:  rgba(255, 255, 255, 0.06);

  /* Text */
  --text:      #f4f4f8;
  --muted:     #a7a7b8;
  --faint:     #6f6f82;

  /* Brand accents (trans-pride inspired) */
  --blue:  #5bcefa;
  --pink:  #f5a9b8;
  --rose:  #ff7fb0;
  --grad:  linear-gradient(120deg, #5bcefa 0%, #c8a6ff 45%, #ff8fc0 100%);
  --grad-soft: linear-gradient(120deg, rgba(91,206,250,.16), rgba(255,143,192,.16));

  --radius:    26px;   /* exaggerated squircle */
  --radius-sm: 16px;
  --bezel:     6px;    /* outer-shell padding for double-bezel cards */
  /* soft, diffused ambient shadow + faint colored glow — never harsh black */
  --shadow:    0 30px 70px -28px rgba(0,0,0,.55), 0 8px 24px -16px rgba(120,90,255,.18);
  --inset-top: inset 0 1px 0 rgba(255,255,255,.08);
  --maxw:      1180px;
  --nav-h:     74px;

  /* physics-based easing — no linear / ease-in-out */
  --ease:      cubic-bezier(0.32, 0.72, 0, 1);

  /* Premium type system (Inter is banned) */
  --font:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  --serif:   "Instrument Serif", Georgia, "Times New Roman", serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ambient gradient glow behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(620px circle at 12% -5%,  rgba(91,206,250,.14), transparent 55%),
    radial-gradient(680px circle at 92% 8%,   rgba(255,143,192,.13), transparent 55%),
    radial-gradient(700px circle at 50% 110%, rgba(200,166,255,.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; z-index: 1; padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad);
}

h1, h2, h3 { font-family: var(--display); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }

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

/* PridePulse signature: emphasis words in headings become an elegant
   italic serif (matches the Instagram brand voice). Numbers in h3/divs
   stay sans-serif for legibility. */
h1 .gradient-text, h2 .gradient-text, .accent-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  padding-right: .06em;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .95rem;
  padding: 9px 9px 9px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.975); }
.btn-primary {
  background: var(--grad);
  color: #0a0a12;
  box-shadow: 0 14px 36px -14px rgba(255,143,192,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -16px rgba(255,143,192,.7); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-lg { padding: 11px 11px 11px 28px; font-size: 1rem; }

/* button-in-button: trailing arrow lives in its own circular island */
.btn .arrow {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: .95rem;
  line-height: 1;
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.btn-lg .arrow { width: 34px; height: 34px; }
.btn-primary .arrow { background: rgba(0,0,0,.12); }
.btn-ghost .arrow  { background: rgba(255,255,255,.1); }
.btn:hover .arrow { transform: translate(3px, -1px) scale(1.06); }

/* buttons with no trailing arrow keep balanced padding */
.btn:not(:has(.arrow)) { padding-inline: 26px; }
.btn-lg:not(:has(.arrow)) { padding-inline: 34px; }

/* ---------- navbar ---------- */
.nav {
  position: sticky;
  top: 18px;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: 16px;
  transition: top .4s var(--ease);
}
.nav .wrap {
  width: auto;
  max-width: calc(var(--maxw) + 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 11px 12px 11px 24px;
  border-radius: 100px;
  background: rgba(12,12,20,.55);
  border: 1px solid var(--hairline);
  box-shadow: var(--inset-top), 0 18px 50px -22px rgba(0,0,0,.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled .wrap { background: rgba(10,10,16,.8); border-color: var(--border-2); }
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand .dot {
  width: 24px; height: 24px; border-radius: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%235bcefa'/%3E%3Cstop offset='1' stop-color='%23ff8fc0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100' height='100' rx='26' fill='url(%23g)'/%3E%3Cpath d='M10 56 H32 L42 28 L57 76 L67 52 H90' fill='none' stroke='%23fff' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover no-repeat;
  box-shadow: 0 0 16px rgba(255,143,192,.55);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--grad); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1;
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(60px, 9vw, 110px);
  /* PridePulse "pulse" soundwave arcs radiating from the corners */
  background-image:
    repeating-radial-gradient(circle at 116% 128%, transparent 0 46px, rgba(91,206,250,.07) 46px 48px, transparent 48px 96px),
    repeating-radial-gradient(circle at -14% -12%, transparent 0 52px, rgba(255,143,192,.06) 52px 54px, transparent 54px 104px);
}

/* reusable pulse-arc backdrop for accent sections */
.pulse-bg {
  background-image:
    repeating-radial-gradient(circle at 108% 120%, transparent 0 40px, rgba(91,206,250,.06) 40px 42px, transparent 42px 84px),
    repeating-radial-gradient(circle at -8% -10%, transparent 0 44px, rgba(255,143,192,.055) 44px 46px, transparent 46px 92px);
}
.hero-inner { max-width: 820px; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 36px; font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  font-size: .82rem; color: var(--muted);
  margin-bottom: 26px;
}
.badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #5be38a;
  box-shadow: 0 0 0 0 rgba(91,227,138,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(91,227,138,.55); }
  70% { box-shadow: 0 0 0 9px rgba(91,227,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,227,138,0); }
}

/* ---------- stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.stat .num { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; letter-spacing: -.03em; }
.stat .label { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ---------- cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Double-bezel: outer shell (machined tray) wrapping an inner core */
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: calc(30px + var(--bezel));
  transition: transform .3s var(--ease), border-color .5s var(--ease), box-shadow .6s var(--ease);
  overflow: hidden;
  box-shadow: var(--inset-top);
}
/* inner core ring — concentric squircle inside the outer shell */
.card::before {
  content: "";
  position: absolute;
  inset: var(--bezel);
  border-radius: calc(var(--radius) - var(--bezel));
  border: 1px solid var(--hairline);
  box-shadow: var(--inset-top);
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--inset-top), var(--shadow); }
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--border-2);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .num-tag {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--faint);
  margin-bottom: 14px;
  display: block;
}

/* feature list */
.feature-list { display: grid; gap: 14px; margin-top: 8px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--muted);
}
.feature-list .tick {
  flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-soft); border: 1px solid var(--border-2);
  display: grid; place-items: center; color: var(--blue);
  font-size: .7rem; margin-top: 3px;
}

/* split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.media-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-soft));
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.media-card::before {
  content: "";
  position: absolute; inset: -40%;
  background: var(--grad);
  filter: blur(80px);
  opacity: .22;
}
.media-card .inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }

/* ---------- testimonials ---------- */
.quote {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.quote .stars { color: var(--rose); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { color: var(--text); font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center;
  font-weight: 700; color: #0a0a12;
}
.quote .who .name { font-weight: 600; font-size: .92rem; }
.quote .who .role { color: var(--faint); font-size: .82rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; z-index: 1;
  border-radius: 28px;
  border: 1px solid var(--border-2);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-soft));
  padding: clamp(44px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -50% 20% auto 20%; height: 360px;
  background: var(--grad); filter: blur(110px); opacity: .25;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 30px; }

/* ---------- forms ---------- */
.form {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: .96rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(91,206,250,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--faint); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(91,227,138,.1);
  border: 1px solid rgba(91,227,138,.4);
  color: #b8f5cf;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: .92rem;
}

/* ---------- accordion (FAQ) ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  color: var(--text); font-size: 1.05rem; font-weight: 600;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: inherit;
}
.faq-q .plus { flex: none; font-size: 1.5rem; color: var(--blue); transition: transform .3s; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--muted); }
.faq-a p { padding-bottom: 24px; }

/* ---------- steps / timeline ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n {
  font-family: var(--serif);
  font-size: 2.6rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 700; line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border-2); background: rgba(255,255,255,.03);
  font-size: .85rem; color: var(--muted);
}

/* ---------- page hero (interior pages) ---------- */
.page-hero { position: relative; z-index: 1; padding: clamp(60px, 8vw, 110px) 0 clamp(30px, 4vw, 50px); }
.page-hero .lead { margin-top: 18px; }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer .brand { margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  color: var(--faint); font-size: .85rem;
}
.footer-bottom .age {
  border: 1px solid var(--border-2); border-radius: 100px;
  padding: 4px 12px; font-weight: 600; color: var(--muted);
}

/* ---------- scroll reveal — heavy fade-up with blur ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 88px 16px auto 16px;
    flex-direction: column; gap: 0;
    background: rgba(8,8,14,.9);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--border-2);
    border-radius: 24px;
    box-shadow: var(--inset-top), var(--shadow);
    padding: 10px 22px 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }
  .nav-links.show { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a.active::after { display: none; }
  .grid-3, .grid-4, .grid-2, .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* =========================================================
   "WOW" FX LAYER — aurora, grain, cursor glow, spotlight,
   scroll progress, shimmer, marquee. Injected via main.js.
   Performance: transform/opacity only; blur on fixed layers.
   ========================================================= */

/* drifting animated aurora orbs (fixed, behind content) */
.fx-aurora {
  position: fixed; inset: -10vmax; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.fx-aurora .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .55;
  will-change: transform;
  mix-blend-mode: screen;
}
.fx-aurora .orb.o1 {
  width: 46vmax; height: 46vmax; left: -6vmax; top: -8vmax;
  background: radial-gradient(circle, rgba(91,206,250,.55), transparent 62%);
  animation: drift1 26s var(--ease) infinite alternate;
}
.fx-aurora .orb.o2 {
  width: 42vmax; height: 42vmax; right: -8vmax; top: -4vmax;
  background: radial-gradient(circle, rgba(255,143,192,.5), transparent 62%);
  animation: drift2 30s var(--ease) infinite alternate;
}
.fx-aurora .orb.o3 {
  width: 50vmax; height: 50vmax; left: 28%; bottom: -22vmax;
  background: radial-gradient(circle, rgba(200,166,255,.45), transparent 62%);
  animation: drift3 34s var(--ease) infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(14vw, 10vh) scale(1.18); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(-12vw, 14vh) scale(.9); } }
@keyframes drift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(10vw, -12vh) scale(1.2); } }

/* film-grain overlay (fixed, top layer, non-interactive) */
.fx-grain {
  position: fixed; inset: 0; z-index: 60;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor-following glow (behind content, lightens only) */
.fx-cursor {
  position: fixed; top: 0; left: 0; z-index: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,170,255,.16), rgba(255,143,192,.08) 40%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.fx-cursor.on { opacity: 1; }

/* scroll progress bar */
.fx-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  transform: scaleX(var(--p, 0)); transform-origin: 0 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(255,143,192,.6);
  pointer-events: none;
}

/* animated shimmer on gradient text */
.gradient-text {
  background-size: 200% auto;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* cursor-tracking spotlight on cards (overrides the soft tint) */
.card::after {
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%),
              rgba(255,255,255,.07), transparent 60%), var(--grad-soft);
}

/* gentle float for the hero badge */
.badge { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ---------- marquee (trust strip) ---------- */
.marquee {
  position: relative; z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 56px;
  white-space: nowrap;
  animation: scrollx 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: "✦"; color: var(--blue); opacity: .5; font-size: .8em; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* custom cursor only where a fine pointer exists */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor-fx { cursor: none; }
  body.has-cursor-fx a, body.has-cursor-fx button,
  body.has-cursor-fx input, body.has-cursor-fx select,
  body.has-cursor-fx textarea, body.has-cursor-fx label { cursor: none; }
  .fx-dot {
    position: fixed; top: 0; left: 0; z-index: 201;
    width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
    border-radius: 50%; background: #fff;
    pointer-events: none; mix-blend-mode: difference;
    will-change: transform;
    transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease);
  }
  .fx-dot.grow { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: var(--blue); }
}

/* =========================================================
   ELITE PASS — hero dashboard, preloader, tilt, scrollbar,
   selection, gradient borders.
   ========================================================= */

/* branded selection + custom scrollbar */
::selection { background: rgba(255,143,192,.32); color: #fff; }
html { scrollbar-color: rgba(255,143,192,.5) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--rose));
  border-radius: 100px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #7ad8ff, #ff9ec3); }

/* ---------- intro preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--bg);
  gap: 22px;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .pl-brand {
  font-family: var(--display);
  font-weight: 700; font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: .06em;
  display: flex; align-items: center; gap: 14px;
  animation: plPop 1s var(--ease) both;
}
.preloader .pl-brand .dot {
  width: 40px; height: 40px; border-radius: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%235bcefa'/%3E%3Cstop offset='1' stop-color='%23ff8fc0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100' height='100' rx='26' fill='url(%23g2)'/%3E%3Cpath d='M10 56 H32 L42 28 L57 76 L67 52 H90' fill='none' stroke='%23fff' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover no-repeat;
  box-shadow: 0 0 30px rgba(255,143,192,.7);
}
.preloader .pl-bar {
  width: min(220px, 50vw); height: 2px;
  background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden;
}
.preloader .pl-bar i { display: block; height: 100%; width: 0; background: var(--grad); animation: plFill 1.1s var(--ease) forwards; }
body.preloading { overflow: hidden; }
@keyframes plPop { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes plFill { to { width: 100%; } }

/* ---------- hero split + floating dashboard ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-visual { position: relative; perspective: 1200px; min-height: 420px; }

.dash {
  position: relative;
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border-2);
  box-shadow: var(--inset-top), 0 40px 90px -30px rgba(0,0,0,.75), 0 0 60px -20px rgba(150,120,255,.4);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform-style: preserve-3d;
  transition: transform .3s var(--ease);
  animation: floaty 7s ease-in-out infinite;
}
.dash-head { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.dash-head .dash-dot { width: 8px; height: 8px; border-radius: 50%; background: #5be38a; box-shadow: 0 0 10px #5be38a; }
.dash-head .dash-pill {
  margin-left: auto; font-size: .78rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(91,227,138,.14); color: #7df2a8; border: 1px solid rgba(91,227,138,.3);
}
.dash-balance { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.03em; }
.dash-balance span { display: block; font-family: var(--font); font-size: .82rem; font-weight: 500; color: var(--faint); letter-spacing: 0; margin-top: 2px; }
.dash-bars { display: flex; align-items: flex-end; gap: 10px; height: 110px; margin: 22px 0; }
.dash-bars i {
  flex: 1; border-radius: 7px 7px 4px 4px;
  background: linear-gradient(180deg, var(--blue), var(--rose));
  height: var(--h); transform: scaleY(0); transform-origin: bottom;
  animation: barGrow .9s var(--ease) forwards; animation-delay: var(--d, 0s);
  opacity: .92;
}
@keyframes barGrow { to { transform: scaleY(1); } }
.dash-rows { display: grid; gap: 10px; }
.dash-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--hairline);
}
.dash-row .ava { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: #0a0a12; }
.dash-row .rtxt { font-size: .85rem; }
.dash-row .rtxt b { display: block; font-weight: 600; }
.dash-row .rtxt small { color: var(--faint); }
.dash-row .ramt { margin-left: auto; font-weight: 700; color: #7df2a8; font-size: .9rem; }

.float-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: 100px;
  background: rgba(16,16,26,.7); border: 1px solid var(--border-2);
  box-shadow: var(--inset-top), 0 18px 40px -16px rgba(0,0,0,.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-size: .85rem; font-weight: 600; white-space: nowrap;
}
.float-chip .em { font-size: 1.05rem; }
.chip-a { top: -7%; right: -6%; animation: floaty 5.5s ease-in-out infinite; }
.chip-b { bottom: -6%; left: -8%; animation: floaty 6.5s ease-in-out .8s infinite; }

/* ---------- 3D tilt (cards + dashboard) ---------- */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* ---------- animated gradient border (featured) ---------- */
.card-featured { border-color: transparent !important; }
.card-featured::before {
  inset: 0 !important;
  border-radius: var(--radius) !important;
  border: 0 !important;
  padding: 1px;
  background: conic-gradient(from var(--a, 0deg), var(--blue), var(--rose), #c8a6ff, var(--blue)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinBorder 6s linear infinite;
}
@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spinBorder { to { --a: 360deg; } }

/* ---------- hero trust badges ---------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); }
.trust-badge .tb-i {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem;
  background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--blue);
}
.trust-badge b { color: var(--text); font-weight: 700; }

/* ---------- accent / reversed marquee ---------- */
.marquee--accent .marquee-track { animation-duration: 26s; animation-direction: reverse; }
.marquee--accent .marquee-track span { color: var(--text); font-weight: 600; }
.marquee--accent .marquee-track span::after { content: "✦"; color: var(--rose); opacity: .7; }

/* ---------- pain cards ---------- */
.pain .icon { background: rgba(255,90,120,.1); border-color: rgba(255,90,120,.28); color: #ff7a96; }

/* ---------- comparison ---------- */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.compare-col {
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  padding: 28px;
  box-shadow: var(--inset-top);
}
.compare-col.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--inset-top), 0 30px 70px -28px rgba(150,120,255,.5);
  transform: translateY(-6px);
}
.compare-col .c-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.compare-col h3 { font-size: 1.15rem; }
.compare-col .c-sub { color: var(--faint); font-size: .85rem; margin-bottom: 20px; }
.compare-col.featured .c-tag {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; color: #0a0a12; background: var(--grad);
}
.compare-li { display: flex; gap: 11px; align-items: flex-start; padding: 11px 0; border-top: 1px solid var(--hairline); color: var(--muted); font-size: .92rem; }
.compare-li:first-of-type { border-top: 0; }
.compare-li .mk { flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .66rem; margin-top: 2px; font-weight: 700; }
.mk.no { background: rgba(255,90,120,.14); color: #ff7a96; border: 1px solid rgba(255,90,120,.3); }
.mk.yes { background: rgba(91,227,138,.14); color: #7df2a8; border: 1px solid rgba(91,227,138,.3); }
.compare-col.featured .compare-li { color: var(--text); }

/* ---------- revenue calculator ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 26px; overflow: hidden; border: 1px solid var(--border-2); box-shadow: var(--inset-top), var(--shadow); }
.calc-inputs { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); padding: clamp(26px, 4vw, 40px); }
.calc-result { position: relative; padding: clamp(26px, 4vw, 40px); background: linear-gradient(150deg, rgba(91,206,250,.1), rgba(255,143,192,.1)); overflow: hidden; }
.calc-result::before { content: ""; position: absolute; inset: -40% 30% auto; height: 300px; background: var(--grad); filter: blur(100px); opacity: .25; }
.calc-result > * { position: relative; z-index: 1; }
.calc-field { margin-bottom: 24px; }
.calc-field .cf-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc-field label { font-weight: 600; font-size: .9rem; }
.calc-field .cf-val { font-family: var(--display); font-weight: 700; color: var(--blue); font-size: 1.05rem; }
.calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: rgba(255,255,255,.1); outline: none; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); cursor: pointer; border: 3px solid var(--bg); box-shadow: 0 4px 14px -4px rgba(255,143,192,.8); }
.calc input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #ff8fc0; cursor: pointer; border: 3px solid var(--bg); }
.calc-tier { display: flex; gap: 8px; }
.calc-tier button {
  flex: 1; padding: 11px 8px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-2); color: var(--muted);
  font-family: inherit; font-weight: 600; font-size: .85rem; transition: all .3s var(--ease);
}
.calc-tier button.active { background: var(--grad); color: #0a0a12; border-color: transparent; }
.calc-result .cr-label { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.calc-result .cr-now { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--muted); margin: 4px 0 22px; }
.calc-result .cr-big { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.calc-result .cr-sub { color: var(--muted); margin-top: 6px; }
.calc-result .cr-delta { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 7px 14px; border-radius: 100px; background: rgba(91,227,138,.14); border: 1px solid rgba(91,227,138,.3); color: #7df2a8; font-weight: 700; font-size: .9rem; }
.calc-note { font-size: .78rem; color: var(--faint); margin-top: 20px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 12px; max-width: 460px; }
  .float-chip { display: none; }
  .compare { grid-template-columns: 1fr; }
  .compare-col.featured { transform: none; order: -1; }
  .calc { grid-template-columns: 1fr; }
}

/* =========================================================
   INTERACTIVE TOOLS — segmented controls, calculator v2,
   growth dashboard, onboarding timeline, profile review.
   ========================================================= */

/* segmented control (shared) */
.seg { display: flex; gap: 6px; background: rgba(255,255,255,.04); padding: 5px; border-radius: 14px; border: 1px solid var(--border-2); }
.seg button {
  flex: 1; padding: 9px 6px; border-radius: 9px; cursor: pointer;
  background: transparent; border: 0; color: var(--muted);
  font-family: inherit; font-weight: 600; font-size: .82rem; transition: all .3s var(--ease);
}
.seg button.active { background: var(--grad); color: #0a0a12; }

/* ---------- calculator v2 ---------- */
.calc-field .seg { margin-top: 4px; }
.calc-toggle { display: inline-flex; gap: 4px; background: rgba(255,255,255,.06); border-radius: 100px; padding: 4px; margin-bottom: 20px; }
.calc-toggle button { padding: 6px 16px; border-radius: 100px; border: 0; cursor: pointer; background: transparent; color: var(--muted); font-family: inherit; font-weight: 600; font-size: .82rem; transition: all .3s var(--ease); }
.calc-toggle button.active { background: var(--grad); color: #0a0a12; }
.calc-bars { margin: 22px 0 6px; display: grid; gap: 14px; }
.calc-bar-row .cbr-top { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; color: var(--muted); }
.calc-bar-track { height: 14px; border-radius: 100px; background: rgba(255,255,255,.07); overflow: hidden; }
.calc-bar-fill { height: 100%; border-radius: 100px; width: 0; transition: width .8s var(--ease); }
.calc-bar-fill.now { background: rgba(255,255,255,.25); }
.calc-bar-fill.proj { background: var(--grad); }

/* ---------- growth dashboard (animated charts) ---------- */
.growth-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; }
.panel {
  border-radius: var(--radius); padding: 28px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--hairline); box-shadow: var(--inset-top); position: relative; overflow: hidden;
}
.panel h3 { font-size: 1.05rem; margin-bottom: 4px; }
.panel .p-sub { color: var(--faint); font-size: .85rem; margin-bottom: 20px; }
.chart { width: 100%; height: 230px; display: block; }
.chart .area { opacity: 0; transition: opacity 1s var(--ease) .3s; }
.chart .line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.chart.draw .line { animation: drawLine 1.6s var(--ease) forwards; }
.chart.draw .area { opacity: 1; }
.chart .pt { opacity: 0; }
.chart.draw .pt { animation: popPt .4s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes popPt { to { opacity: 1; } }
.chart-x { display: flex; justify-content: space-between; margin-top: 10px; color: var(--faint); font-size: .72rem; }

.donut-wrap { display: flex; align-items: center; gap: 22px; }
.donut {
  width: 132px; height: 132px; border-radius: 50%; flex: none; position: relative;
  background: conic-gradient(var(--blue) 0 0); /* set via JS --c1/--c2 */
  transition: background 1s var(--ease);
}
.donut::after { content: ""; position: absolute; inset: 16px; border-radius: 50%; background: var(--bg-soft); box-shadow: var(--inset-top); }
.donut .d-center { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.legend { display: grid; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.legend-dot { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.legend-item .lv { margin-left: auto; color: var(--muted); font-weight: 600; }

.metric-bars { display: grid; gap: 18px; margin-top: 4px; }
.metric-bar .mb-top { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 7px; }
.metric-bar .mb-top b { font-family: var(--display); color: var(--blue); }
.metric-track { height: 9px; border-radius: 100px; background: rgba(255,255,255,.07); overflow: hidden; }
.metric-fill { height: 100%; width: 0; border-radius: 100px; background: var(--grad); transition: width 1.1s var(--ease); }

/* ---------- onboarding timeline ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 56px; }
.timeline .tl-track { position: absolute; left: 19px; top: 8px; bottom: 8px; width: 3px; border-radius: 3px; background: rgba(255,255,255,.1); overflow: hidden; }
.timeline .tl-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--grad); border-radius: 3px; box-shadow: 0 0 16px rgba(255,143,192,.6); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: -56px; top: 0; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.1rem;
  background: var(--surface-2); border: 1px solid var(--border-2);
  transition: all .4s var(--ease); z-index: 1;
}
.tl-item.on .tl-node { background: var(--grad); border-color: transparent; box-shadow: 0 0 0 6px rgba(255,143,192,.12), 0 10px 24px -8px rgba(255,143,192,.6); transform: scale(1.06); }
.tl-when { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 4px; }
.tl-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: .95rem; }

/* ---------- free profile review ---------- */
.review { max-width: 920px; margin-inline: auto; }
.review-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 14px; }
.review-form input {
  background: var(--bg); border: 1px solid var(--border-2); border-radius: 100px;
  padding: 15px 22px; color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.review-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91,206,250,.18); }
.review-seg { display: flex; gap: 8px; justify-content: center; margin-bottom: 22px; flex-wrap: wrap; }
.review-result { display: none; }
.review-result.show { display: block; animation: fadeUp .6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.review-loading { display: none; text-align: center; padding: 30px 0; }
.review-loading.show { display: block; }
.review-spinner {
  width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12); border-top-color: var(--blue); animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.review-score { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.score-ring {
  width: 132px; height: 132px; border-radius: 50%; flex: none; position: relative;
  display: grid; place-items: center;
  background: conic-gradient(var(--rose) calc(var(--score,0) * 1%), rgba(255,255,255,.08) 0);
  transition: background 1.2s var(--ease);
}
.score-ring::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: var(--bg-soft); }
.score-ring .sr-num { position: relative; z-index: 1; font-family: var(--display); font-weight: 700; font-size: 2.1rem; }
.score-meta h3 { font-size: 1.4rem; margin-bottom: 6px; }
.score-meta p { color: var(--muted); }
.review-rows { display: grid; gap: 16px; margin-bottom: 24px; }
.rev-row .rr-top { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 7px; }
.rev-row .rr-top span:last-child { color: var(--muted); font-weight: 600; }
.rev-track { height: 9px; border-radius: 100px; background: rgba(255,255,255,.07); overflow: hidden; }
.rev-fill { height: 100%; width: 0; border-radius: 100px; background: var(--grad); transition: width 1s var(--ease); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 12px; max-width: 460px; }
  .float-chip { display: none; }
  .compare { grid-template-columns: 1fr; }
  .compare-col.featured { transform: none; order: -1; }
  .calc { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: 1fr; }
  .review-form { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .fx-aurora, .fx-cursor, .fx-grain { display: none; }
  body.has-cursor-fx { cursor: auto; }
  .fx-dot { display: none; }
  .dash-bars i { transform: scaleY(1); }
  .preloader { display: none; }
  body.preloading { overflow: auto; }
  .chart .line { stroke-dashoffset: 0; }
  .chart .area, .chart .pt { opacity: 1; }
}

/* =========================================================
   BLOG — cards, article prose, chat mockup
   ========================================================= */

/* blog index grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  box-shadow: var(--inset-top);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.post-cover {
  height: 168px; position: relative; overflow: hidden;
  background: var(--grad);
  display: grid; place-items: center;
}
.post-cover::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-radial-gradient(circle at 110% 120%, transparent 0 26px, rgba(0,0,0,.12) 26px 28px, transparent 28px 56px),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.35));
}
.post-cover .glyph { position: relative; z-index: 1; font-size: 3rem; filter: drop-shadow(0 6px 16px rgba(0,0,0,.4)); }
.post-cover .cat {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.post-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.25; }
.post-body p { color: var(--muted); font-size: .92rem; flex: 1; }
.post-meta { display: flex; gap: 14px; margin-top: 18px; color: var(--faint); font-size: .8rem; }
.post-card .readmore { margin-top: 16px; color: var(--blue); font-weight: 600; font-size: .88rem; display: inline-flex; gap: 6px; }
.post-card:hover .readmore { color: #7ad8ff; }

/* featured / large post */
.post-card.feature { grid-column: span 2; flex-direction: row; }
.post-card.feature .post-cover { height: auto; width: 44%; flex: none; }
.post-card.feature .post-body { justify-content: center; padding: 34px; }
.post-card.feature .post-body h3 { font-size: 1.6rem; }

/* article prose */
.post-hero { text-align: center; max-width: 760px; margin-inline: auto; }
.post-hero .pmeta { display: inline-flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; color: var(--muted); font-size: .88rem; margin-top: 20px; }
.post-hero .pmeta .cat { color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }
.post-hero .pmeta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }
.prose { max-width: 720px; margin-inline: auto; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.7em; letter-spacing: -.02em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose p { color: var(--muted); font-size: 1.06rem; line-height: 1.8; }
.prose strong { color: var(--text); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { display: grid; gap: 12px; padding-left: 4px; }
.prose ul li { display: flex; gap: 12px; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.prose ul li::before { content: "✦"; color: var(--rose); flex: none; }
.prose ol { counter-reset: li; }
.prose ol li { display: flex; gap: 14px; color: var(--muted); font-size: 1.04rem; line-height: 1.7; counter-increment: li; }
.prose ol li::before { content: counter(li); flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--blue); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }
.prose blockquote {
  position: relative; padding: 6px 0 6px 28px; margin: 1.6em 0;
  font-family: var(--serif); font-style: italic; font-size: 1.45rem; line-height: 1.5; color: var(--text);
}
.prose blockquote::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 3px; background: var(--grad); }
.post-author {
  display: flex; align-items: center; gap: 14px; margin-top: 48px; padding: 22px;
  border-radius: var(--radius-sm); border: 1px solid var(--hairline); background: rgba(255,255,255,.03);
}
.post-author .ava { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; color: #0a0a12; flex: none; }
.post-author .name { font-weight: 700; }
.post-author .role { color: var(--faint); font-size: .86rem; }

/* ---------- chat mockup (chatting page) ---------- */
.chat-window {
  max-width: 420px; width: 100%;
  border-radius: 26px; border: 1px solid var(--border-2);
  background: linear-gradient(180deg, var(--surface-2), var(--bg-soft));
  box-shadow: var(--inset-top), var(--shadow);
  padding: 20px; position: relative; overflow: hidden;
}
.chat-head { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 16px; }
.chat-head .ava { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; color: #0a0a12; }
.chat-head .ci b { display: block; font-size: .92rem; }
.chat-head .ci small { color: #7df2a8; font-size: .76rem; display: flex; align-items: center; gap: 5px; }
.chat-head .ci small::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #5be38a; box-shadow: 0 0 8px #5be38a; }
.bubble { max-width: 80%; padding: 11px 15px; border-radius: 18px; font-size: .92rem; line-height: 1.5; margin-bottom: 10px; width: fit-content; }
.bubble.fan { background: rgba(255,255,255,.06); border: 1px solid var(--hairline); border-bottom-left-radius: 6px; }
.bubble.me { background: var(--grad); color: #0a0a12; margin-left: auto; border-bottom-right-radius: 6px; font-weight: 500; }
.bubble.ppv {
  margin-left: auto; padding: 0; overflow: hidden; border-radius: 18px; border-bottom-right-radius: 6px;
  border: 1px solid var(--border-2); max-width: 70%;
}
.ppv-preview { height: 96px; background: var(--grad); position: relative; display: grid; place-items: center; }
.ppv-preview::after { content: ""; position: absolute; inset: 0; backdrop-filter: blur(6px); background: rgba(10,10,18,.3); }
.ppv-preview .lock { position: relative; z-index: 1; font-size: 1.4rem; }
.ppv-buy { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,.05); font-size: .85rem; font-weight: 600; }
.ppv-buy .price { color: #0a0a12; background: var(--grad); padding: 5px 12px; border-radius: 100px; }
.chat-typing { display: inline-flex; gap: 4px; padding: 12px 16px; background: rgba(255,255,255,.06); border: 1px solid var(--hairline); border-radius: 18px; border-bottom-left-radius: 6px; }
.chat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.chat-typing i:nth-child(2) { animation-delay: .2s; }
.chat-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

@media (max-width: 880px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-card.feature { grid-column: span 2; }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-card.feature { grid-column: span 1; flex-direction: column; }
  .post-card.feature .post-cover { width: 100%; height: 168px; }
}

/* =========================================================
   LANGUAGE SWITCHER (Google Translate engine, custom UI)
   ========================================================= */
/* hide Google's default banner / chrome */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame, iframe.skiptranslate { display: none !important; visibility: hidden !important; }
body { top: 0 !important; }
html.translated-ltr body, html.translated-rtl body { top: 0 !important; }
#google_translate_element { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.goog-tooltip, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }

.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: 100px;
  border: 1px solid var(--border-2); background: rgba(255,255,255,.04);
  color: var(--text); font-family: inherit; font-weight: 600; font-size: .86rem;
  cursor: pointer; transition: background .3s var(--ease), border-color .3s var(--ease);
}
.lang-btn:hover { background: rgba(255,255,255,.09); }
.lang-btn .globe { font-size: 1rem; line-height: 1; }
.lang-btn .chev { font-size: .62rem; opacity: .7; transition: transform .3s var(--ease); }
.lang-switch.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 200px;
  background: rgba(12,12,20,.92); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-2); border-radius: 16px;
  box-shadow: var(--inset-top), var(--shadow); padding: 8px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 130; max-height: 360px; overflow-y: auto;
}
.lang-switch.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu button {
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  padding: 9px 12px; border-radius: 10px; background: transparent; border: 0;
  color: var(--muted); font-family: inherit; font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: background .2s, color .2s;
}
.lang-menu button:hover { background: rgba(255,255,255,.06); color: var(--text); }
.lang-menu button.active { color: var(--text); }
.lang-menu button .flag { font-size: 1.05rem; }
.lang-menu button .tick { margin-left: auto; color: var(--blue); }
.lang-menu .lm-foot { padding: 9px 12px 4px; color: var(--faint); font-size: .7rem; border-top: 1px solid var(--hairline); margin-top: 6px; }
@media (max-width: 680px) { .lang-btn .lang-label { display: none; } }
