/* ========================================================================
   LONLY FANS — Premium talent agency site
   Self-contained stylesheet. No external CSS framework.
======================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.5; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: #CA8A04; color: #08070A; }

/* ---------- Tokens ---------- */
:root {
  --ink-950: #08070A;
  --ink-900: #0C0A09;
  --ink-800: #14110F;
  --ink-700: #1C1917;
  --ink-600: #292524;
  --ink-500: #44403C;
  --bone-50: #FAFAF9;
  --bone-100: #F5F5F4;
  --bone-200: #E7E5E4;
  --bone-300: #D6D3D1;
  --gold-300: #FDE68A;
  --gold-400: #FCD34D;
  --gold-500: #EAB308;
  --gold-600: #CA8A04;
  --gold-700: #A16207;
  --gold-800: #854D0E;

  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-sans: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius-card: 24px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Base ---------- */
html, body { background: var(--ink-950); }
body {
  font-family: var(--font-sans);
  color: var(--bone-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ---------- Ambient background ---------- */
.ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  overflow: hidden;
}
.ambient-blob {
  position: absolute; border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
}
.ambient-blob.b1 {
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: rgba(202, 138, 4, 0.18);
  animation: drift1 22s ease-in-out infinite;
}
.ambient-blob.b2 {
  top: 30%; right: -200px;
  width: 700px; height: 700px;
  background: rgba(234, 179, 8, 0.10);
  animation: drift2 28s ease-in-out infinite;
}
.ambient-blob.b3 {
  bottom: -200px; left: 30%;
  width: 500px; height: 500px;
  background: rgba(161, 98, 7, 0.12);
  animation: drift3 25s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.08); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -40px) scale(.95); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -80px) scale(1.05); }
}
.grain {
  position: absolute; inset: 0;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, summary, [role="button"] { cursor: none; }
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  transition: width .25s, height .25s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(252, 211, 77, .55);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  border-color: var(--gold-400);
  background: rgba(252, 211, 77, .08);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 35%, #CA8A04 70%, #854D0E 100%);
  position: relative;
  box-shadow:
    0 0 24px rgba(202, 138, 4, .35),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -1px 0 rgba(0,0,0,.2);
}
.logo-mark::after {
  content: "L"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--ink-900);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500;
  letter-spacing: -.01em;
}
.logo-text span { color: var(--gold-500); font-style: italic; }

/* ---------- Navbar ---------- */
.nav-wrap {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 50;
  display: flex; justify-content: center;
}
.nav {
  width: 100%; max-width: 1100px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(20, 17, 15, .55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow:
    0 8px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.nav-links { display: none; gap: 32px; font-size: 14px; color: rgba(245, 245, 244, .7); }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link { position: relative; transition: color .2s; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--bone-50); }
.nav-link:hover::after { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; letter-spacing: .005em;
  border-radius: var(--radius-pill);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, filter .2s;
  white-space: nowrap;
}
.btn-gold {
  padding: 14px 26px; font-size: 15px;
  background: linear-gradient(180deg, #FDE68A 0%, #FCD34D 35%, #CA8A04 100%);
  color: var(--ink-700);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 12px 32px -8px rgba(202, 138, 4, .55);
}
.btn-gold:hover {
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 16px 44px -8px rgba(202, 138, 4, .85);
}
.btn-gold::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transition: left .8s var(--ease);
}
.btn-gold:hover::before { left: 100%; }
.btn-gold-sm {
  padding: 9px 16px; font-size: 13px;
  background: linear-gradient(180deg, #FDE68A 0%, #FCD34D 35%, #CA8A04 100%);
  color: var(--ink-700);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 6px 18px -6px rgba(202, 138, 4, .6);
}
.btn-gold-sm:hover { filter: brightness(1.06); }
.btn-ghost {
  padding: 14px 24px; font-size: 15px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  color: var(--bone-50);
  transition: background .25s, border-color .25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(252, 211, 77, .35);
}
.btn-block { width: 100%; justify-content: center; }

/* ---------- Typography helpers ---------- */
.gold-text {
  background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 30%, #CA8A04 65%, #FDE68A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.italic { font-style: italic; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(252, 211, 77, .85);
  font-weight: 500;
}
.kicker {
  font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(252, 211, 77, .85);
  font-weight: 500;
}
.section-header { text-align: center; max-width: 760px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02; margin-top: 14px;
  font-weight: 400;
  letter-spacing: -.015em;
}
.section-sub {
  margin-top: 22px;
  color: rgba(245, 245, 244, .6);
  font-size: 17px; line-height: 1.7;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

/* ---------- Section ---------- */
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }

/* ---------- Pill (status) ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.pill-text {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245, 245, 244, .8);
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(252, 211, 77, .6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(252, 211, 77, .55); }
  70% { box-shadow: 0 0 0 9px rgba(252, 211, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(252, 211, 77, 0); }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
}
.hero-pill { display: flex; justify-content: center; margin-bottom: 32px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.025em;
}
.hero-title .line {
  display: block; overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 1s var(--ease);
}
.hero.in .hero-title .word { transform: translateY(0); opacity: 1; }
.hero-title .line-2 { margin-top: 8px; }

/* Re-apply gradient on split words (background-clip doesn't reach inline-block children) */
.hero-title .gold-text .word {
  background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 30%, #CA8A04 65%, #FDE68A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
.hero-title .italic .word { font-style: italic; }
.hero-sub {
  margin: 30px auto 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 245, 244, .7);
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s 0.7s var(--ease), transform 1s 0.7s var(--ease);
}
.hero.in .hero-sub { opacity: 1; transform: translateY(0); }
.hero-actions {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s 0.85s var(--ease), transform 1s 0.85s var(--ease);
}
.hero.in .hero-actions { opacity: 1; transform: translateY(0); }

/* ---------- Stat row ---------- */
.stats {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 28px;
  overflow: hidden;
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.2s 1s var(--ease), transform 1.2s 1s var(--ease);
}
.hero.in .stats { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(8, 7, 10, .85);
  padding: 36px 28px;
  position: relative;
  text-align: left;
  transition: background .35s;
}
.stat:hover { background: rgba(20, 17, 15, .95); }
.stat-row {
  display: flex; align-items: baseline; gap: 4px;
  line-height: 1;
}
.stat-prefix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold-400);
  font-weight: 700;
  margin-right: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  background: linear-gradient(180deg, #FFFFFF 0%, #EDEAE7 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 500;
  color: var(--gold-400);
}
.stat-label {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(245, 245, 244, .55);
  letter-spacing: .01em;
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 56px 0;
  background: rgba(12, 10, 9, .4);
  backdrop-filter: blur(8px);
}
.marquee-label {
  text-align: center;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(245, 245, 244, .45);
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden;
  -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: flex; gap: 56px; align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: rgba(245, 245, 244, .42);
  letter-spacing: .005em;
}
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(252, 211, 77, .5);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Services / Bento ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}
.bento {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.012) 100%);
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
  min-height: 280px;
  transform-style: preserve-3d;
  transition: border-color .4s, transform .35s var(--ease), box-shadow .4s;
  grid-column: span 2;
}
@media (min-width: 768px) {
  .bento.span-2 { grid-column: span 2; }
  .bento.span-4 { grid-column: span 4; min-height: 340px; }
}
.bento:hover {
  border-color: rgba(252, 211, 77, .25);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.bento::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(252, 211, 77, .12), transparent 50%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.bento:hover::before { opacity: 1; }
.bento-glow {
  position: absolute; inset: -1px;
  border-radius: var(--radius-card);
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent 30%, rgba(252, 211, 77, .55) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.bento:hover .bento-glow {
  opacity: 1;
  animation: rotate-conic 4s linear infinite;
}
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes rotate-conic { to { --angle: 360deg; } }

.bento-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.bento-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.bento.span-4 .bento-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}
.bento-text {
  color: rgba(245, 245, 244, .65);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 36ch;
}
.bento.span-4 .bento-text {
  font-size: 16px;
  max-width: 52ch;
}
.bento-foot { margin-top: auto; padding-top: 28px; }
.bento-flex { display: flex; flex-direction: column; height: 100%; }

.icon-tile {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(252, 211, 77, .14) 0%, rgba(252, 211, 77, .04) 100%);
  border: 1px solid rgba(252, 211, 77, .2);
  color: var(--gold-400);
  flex-shrink: 0;
  transition: transform .4s var(--ease), border-color .3s;
}
.bento:hover .icon-tile {
  transform: rotate(-6deg) scale(1.05);
  border-color: rgba(252, 211, 77, .4);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 12.5px;
  color: rgba(245, 245, 244, .8);
}

.mini-chart {
  margin-top: 24px;
  height: 64px; position: relative;
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(252, 211, 77, .08));
}
.mini-chart::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 64' preserveAspectRatio='none'%3E%3Cpath d='M0,54 Q30,46 50,40 T100,22 T150,12 T200,4' stroke='%23FCD34D' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.msg-stack { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.msg-bubble {
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 12.5px;
  max-width: 85%;
  line-height: 1.4;
}
.msg-in { background: rgba(255, 255, 255, .06); color: rgba(245, 245, 244, .85); border-bottom-left-radius: 4px; }
.msg-out {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--ink-700);
  font-weight: 500;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

/* ---------- Process / Steps ---------- */
.steps-wrap { position: relative; margin-top: 100px; }
.steps-line {
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 211, 77, .35) 15%, rgba(252, 211, 77, .35) 85%, transparent);
}
@media (max-width: 768px) { .steps-line { display: none; } }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.step {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid rgba(255, 255, 255, .07);
  position: relative;
  transition: transform .4s var(--ease), border-color .35s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 211, 77, .25);
}
.step-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 500;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 14px;
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.step-text {
  color: rgba(245, 245, 244, .65);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 80px;
}
@media (min-width: 1024px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }
.result-card {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .35s;
}
.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 211, 77, .3);
}
.result-meta {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(252, 211, 77, .8);
}
.result-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-top: 14px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: rgba(245, 245, 244, 0.9);
  text-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 40px rgba(255,255,255,0.1);
}
.result-sub { color: rgba(245, 245, 244, .55); font-size: 14px; margin-top: 6px; }
.sparkline {
  margin-top: 32px;
  height: 90px;
  position: relative;
}
.sparkline svg {
  width: 100%; height: 100%;
}
.sparkline path.line {
  stroke: var(--gold-400);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s var(--ease);
}
.sparkline.in path.line { stroke-dashoffset: 0; }
.sparkline path.fill { fill: url(#sparkGrad); opacity: 0; transition: opacity 1s 1s; }
.sparkline.in path.fill { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 80px;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .4s var(--ease), border-color .35s;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 211, 77, .25);
}
.testimonial .quote-icon {
  width: 30px; height: 30px;
  color: rgba(252, 211, 77, .4);
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 245, 244, .85);
  font-style: italic;
}
.testimonial figcaption {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex; align-items: center; gap: 14px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(252, 211, 77, .35);
  flex-shrink: 0;
  position: relative; overflow: hidden;
}
.avatar-1 { background: linear-gradient(135deg, #FDE68A, #854D0E); }
.avatar-2 { background: linear-gradient(135deg, #CA8A04, #1C1917); }
.avatar-3 { background: linear-gradient(135deg, #FDE68A, #44403C); }
.avatar::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.3), transparent 60%);
}
.cap-name { font-weight: 500; font-size: 14.5px; }
.cap-meta { font-size: 12px; color: rgba(245, 245, 244, .5); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 60px; display: flex; flex-direction: column; gap: 10px; }
.faq {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq:hover { border-color: rgba(252, 211, 77, .25); }
.faq[open] { background: rgba(252, 211, 77, .035); border-color: rgba(252, 211, 77, .3); }
.faq summary {
  list-style: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.005em;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 14px; height: 14px;
  flex-shrink: 0;
  margin-left: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FCD34D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .4s var(--ease);
}
.faq[open] summary::after { transform: rotate(135deg); }
.faq p {
  padding: 0 28px 26px;
  color: rgba(245, 245, 244, .7);
  line-height: 1.7;
  font-size: 15px;
}

/* ---------- Apply / CTA ---------- */
.apply-card {
  position: relative;
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}
.apply-glow {
  position: absolute;
  top: -180px; right: -180px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 211, 77, .18), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
  animation: glowfloat 8s ease-in-out infinite;
}
@keyframes glowfloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}
.apply-grid { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; }
@media (min-width: 900px) { .apply-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
@media (max-width: 768px) { .apply-card { padding: 36px 26px; } }

.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: rgba(245, 245, 244, .85);
}
.check {
  width: 20px; height: 20px;
  flex-shrink: 0; margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid; place-items: center;
}
.check::after {
  content: ""; width: 9px; height: 5px;
  border-left: 1.5px solid var(--ink-700);
  border-bottom: 1.5px solid var(--ink-700);
  transform: rotate(-45deg) translate(0, -1px);
}

.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245, 245, 244, .5);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  color: var(--bone-50);
  font-family: inherit; font-size: 15px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-input:focus {
  outline: none;
  border-color: rgba(252, 211, 77, .55);
  background: rgba(0, 0, 0, .5);
  box-shadow: 0 0 0 4px rgba(252, 211, 77, .08);
}
.form-input::placeholder { color: rgba(245, 245, 244, .3); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FCD34D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
select.form-input option { background: var(--ink-800); color: var(--bone-50); }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-fineprint {
  text-align: center;
  font-size: 12px;
  color: rgba(245, 245, 244, .4);
  margin-top: 6px;
}
.apply-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 14px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.apply-text {
  margin-top: 22px;
  color: rgba(245, 245, 244, .7);
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.footer-tag {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(245, 245, 244, .55);
  max-width: 380px;
  line-height: 1.65;
}
.footer-socials { margin-top: 24px; display: flex; gap: 10px; }
.social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid; place-items: center;
  color: rgba(245, 245, 244, .6);
  transition: border-color .25s, color .25s, background .25s, transform .25s;
}
.social:hover {
  border-color: rgba(252, 211, 77, .5);
  color: var(--gold-400);
  background: rgba(252, 211, 77, .06);
  transform: translateY(-2px);
}
.footer-title {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(252, 211, 77, .85);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  color: rgba(245, 245, 244, .55);
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex; flex-direction: column; gap: 14px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245, 245, 244, .4);
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(245, 245, 244, .4); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .hero-title .word, .hero-sub, .hero-actions, .stats { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .ambient-blob { animation: none; }
  .sparkline path.line { stroke-dashoffset: 0; }
  .sparkline path.fill { opacity: 1; }
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- Spacer / alignment helpers ---------- */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
