/* proeagle – dark editorial + gold accents */

:root {
  --bg: #07090d;
  --bg-2: #0b0e14;
  --panel: rgba(255, 255, 255, .032);
  --panel-2: rgba(255, 255, 255, .055);
  --line: rgba(232, 176, 75, .14);
  --line-soft: rgba(255, 255, 255, .08);
  --ink: #ece9e1;
  --muted: #9aa0ab;
  --gold: #e8b04b;
  --gold-deep: #c97f1f;
  --gold-bright: #f8dd8f;
  --sky: #5fa8f5;
  --green: #4ade80;
  --grad-gold: linear-gradient(110deg, #c97f1f, #e8b04b 50%, #f8dd8f);
  --grad-gold-soft: linear-gradient(135deg, rgba(232,176,75,.16), rgba(201,127,31,.05));
  --f-display: "Sora", sans-serif;
  --f-body: "Plus Jakarta Sans", sans-serif;
  --f-mono: "DM Mono", monospace;
  --blue: #1d5dd8;
  --blue-bright: #4f9cf9;
  --grad-blue: linear-gradient(110deg, #1d4ed8, #3b82f6 55%, #7cc0ff);
  --radius: 20px;
  --container: 1180px;
  --shadow-gold: 0 20px 60px -20px rgba(232, 176, 75, .25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--gold); color: #14100a; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #232834; border-radius: 6px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }

/* film grain overlay */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 2000; pointer-events: none;
  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='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .035;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-3%, -5%); }
  30% { transform: translate(4%, 2%); } 50% { transform: translate(-2%, 6%); }
  70% { transform: translate(5%, -3%); } 90% { transform: translate(-4%, 4%); }
}

/* sections */
.section { position: relative; padding: 110px 0; }

.sec-label {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.sec-label::before { content: ""; width: 38px; height: 1px; background: var(--grad-gold); }
.sec-label.center { justify-content: center; }
.sec-label.center::after { content: ""; width: 38px; height: 1px; background: var(--grad-gold); }

.sec-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 4.6vw, 50px); line-height: 1.08;
  letter-spacing: -.015em; color: var(--ink);
}
.sec-title .gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.sec-sub { color: var(--muted); font-size: 17px; margin-top: 18px; max-width: 560px; }

.sec-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 60px; flex-wrap: wrap;
}
.sec-head-center { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.sec-head-center .sec-sub { margin-inline: auto; }

/* buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 32px; border-radius: 14px; border: 0; cursor: pointer;
  font-family: var(--f-body); font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  transition: transform .3s cubic-bezier(.2,.9,.3,1.4), box-shadow .3s ease, background .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--grad-gold); color: #181107;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 70px -18px rgba(232,176,75,.45); }
.btn-line {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-soft);
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn .arr { transition: transform .3s ease; }
.btn:hover .arr { transform: translateX(5px); }

/* scroll progress + header */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2.5px; width: 0%;
  background: var(--grad-gold); z-index: 300;
}

.site-header {
  position: fixed; inset: 10px 0 auto; z-index: 200;
  transition: top .3s ease;
}
.header-pill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 22px; border-radius: 18px;
  background: rgba(11, 14, 20, .62);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled .header-pill {
  background: rgba(9, 11, 16, .88);
  border-color: var(--line);
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, .8);
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 36px; height: auto; }
.brand .brand-name {
  font-family: var(--f-display); font-weight: 800; font-size: 19px; letter-spacing: -.01em;
}
.brand .brand-name b {
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-desktop { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  position: relative; padding: 9px 15px; border-radius: 11px;
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  transition: color .25s ease, background .25s ease;
}
.nav-link:hover { color: var(--ink); background: var(--panel-2); }
.nav-link.active { color: var(--gold); }
.nav-cta { margin-left: 10px; padding: 11px 22px; font-size: 14px; border-radius: 12px; }

.menu-btn {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--panel-2); border: 1px solid var(--line-soft);
  color: var(--ink); cursor: pointer; align-items: center; justify-content: center;
}

.nav-mobile {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  margin-top: 8px; border-radius: 18px;
  background: rgba(9, 11, 16, .96); border: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: grid-template-rows .35s ease, border-color .35s ease;
}
.nav-mobile.open { grid-template-rows: 1fr; border-color: var(--line); }
.nav-mobile > div { min-height: 0; display: flex; flex-direction: column; padding-inline: 10px; }
.nav-mobile.open > div { padding-block: 10px; }
.nav-mobile a {
  padding: 13px 16px; border-radius: 12px; font-weight: 500; color: var(--muted);
  transition: background .2s ease, color .2s ease;
}
.nav-mobile a:hover { background: var(--panel-2); color: var(--gold); }

@media (max-width: 920px) {
  .nav-desktop { display: none; }
  .menu-btn { display: inline-flex; margin-left: 10px; }
  .theme-btn { margin-left: auto; }
}


/* hero */

.hero { position: relative; padding: 185px 0 110px; overflow: clip; }

.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg .aurora {
  position: absolute; border-radius: 50%; filter: blur(110px); opacity: .5;
}
.aurora-1 { width: 640px; height: 520px; background: rgba(201, 127, 31, .26); top: -200px; right: -120px; animation: drift 14s ease-in-out infinite alternate; }
.aurora-2 { width: 520px; height: 460px; background: rgba(34, 64, 120, .5); bottom: -180px; left: -160px; animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px, 50px) scale(1.12); } }

.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232, 176, 75, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 176, 75, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 25%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 25%, #000 25%, transparent 72%);
}

.hero-grid {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: 70px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 30px;
}
.hero-badge .dot {
  width: 7px;
   height: 7px;
    border-radius: 50%;
     background: var(--green);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); 
  animation: ping 2.2s infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }

.hero h1 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 70px); line-height: 1.04; letter-spacing: -.02em;
}
.hero h1 .gold-script {
  position: relative; display: inline-block; font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .gold-script svg {
  position: absolute; left: 0; bottom: -10px; width: 100%; height: 14px;
}
.hero h1 .gold-script svg path {
  stroke: var(--gold); stroke-width: 3.2; fill: none; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: draw 1.2s ease forwards .9s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-sub { margin-top: 28px; color: var(--muted); font-size: 18px; max-width: 530px; font-weight: 300; }
.hero-sub b { color: var(--ink); font-weight: 500; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

.hero-pillars {
  display: flex; gap: 14px 30px; flex-wrap: wrap; margin-top: 54px;
  border-top: 1px solid var(--line-soft); padding-top: 28px;
}
.pillar {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--muted);
}
.pillar .pi { color: var(--gold); font-size: 12px; }

/* hero entrance stagger */
.hero-in { opacity: 0; transform: translateY(26px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hi-1 { animation-delay: .05s; } .hi-2 { animation-delay: .18s; } .hi-3 { animation-delay: .32s; }
.hi-4 { animation-delay: .46s; } .hi-5 { animation-delay: .6s; } .hi-6 { animation-delay: .55s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* dashboard mock */
.hero-visual { position: relative; }

.dash {
  position: relative; border-radius: 24px; padding: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transform: rotate(1.6deg);
  transition: transform .2s ease;
  will-change: transform;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-dots { display: flex; gap: 7px; }
.dash-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-soft); }
.dash-dots i:first-child { background: rgba(232, 176, 75, .65); }
.dash-tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.dash-earn-label { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.dash-earn-row { display: flex; align-items: baseline; gap: 14px; margin: 6px 0 18px; }

.dash-earn {
  font-family: var(--f-display); font-weight: 800; font-size: 40px; letter-spacing: -.01em;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.dash-delta {
  font-size: 13px; font-weight: 600; color: var(--green);
  background: rgba(74, 222, 128, .1); border: 1px solid rgba(74, 222, 128, .25);
  padding: 4px 11px; border-radius: 999px;
}

.dash-chart { position: relative; }
.dash-chart svg { width: 100%; height: auto; }
.dash-chart .chart-line {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: draw-chart 2.2s cubic-bezier(.4,0,.2,1) forwards .8s;
}
@keyframes draw-chart { to { stroke-dashoffset: 0; } }
.dash-chart .chart-dot { animation: pop .5s ease forwards 2.7s; opacity: 0; transform-origin: center; }
@keyframes pop { from { opacity: 0; } to { opacity: 1; } }

.dash-meta { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.dash-chip {
  flex: 1; min-width: 90px; text-align: center; padding: 12px 8px; border-radius: 14px;
  background: var(--panel); border: 1px solid var(--line-soft);
}
.dash-chip b { display: block; font-family: var(--f-display); font-size: 18px; font-weight: 700; color: var(--ink); }
.dash-chip span { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.float-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-radius: 16px;
  background: rgba(13, 16, 23, .9); border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .75);
  font-size: 13.5px; font-weight: 500;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip small { display: block; color: var(--muted); font-size: 11.5px; font-weight: 400; }
.float-chip .ico {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  font-size: 17px; flex-shrink: 0; background: var(--grad-gold-soft); border: 1px solid var(--line);
}
.chip-a { top: -24px; left: -36px; animation-delay: .4s; }
.chip-b { bottom: -22px; right: -26px; animation-delay: 1.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-eagle-watermark {
  position: absolute; right: -70px; top: -90px; width: 230px; opacity: .07; z-index: -1;
  animation: floaty 8s ease-in-out infinite;
}

@media (max-width: 980px) {
  .hero { padding: 150px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-grid > div:first-child { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-pillars { justify-content: center; }
  .chip-a { left: -6px; } .chip-b { right: -6px; }
  .dash { transform: none; }
}


/* marquee */

.marquee {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232,176,75,.045), rgba(232,176,75,.015));
  padding: 22px 0; overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

.marquee-item {
  display: inline-flex; align-items: center; gap: 26px; padding-inline: 26px;
  font-family: var(--f-display); font-weight: 700; font-size: 19px;
  letter-spacing: .02em; color: var(--ink); white-space: nowrap;
}
.marquee-item .star { color: var(--gold); font-size: 15px; }
.marquee-item:nth-child(even) {
  color: transparent; -webkit-text-stroke: 1px rgba(236, 233, 225, .45);
}


/* about – bento grid */

.bento {
  display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: minmax(190px, auto);
  gap: 18px;
}
.bento-card {
  position: relative; border-radius: var(--radius); padding: 34px 30px;
  background: var(--panel); border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color .4s ease, transform .4s ease, background .4s ease;
}
.bento-card:hover { border-color: var(--line); transform: translateY(-5px); background: var(--panel-2); }
.bento-main { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.bento-main .emblem { position: relative; width: 130px; height: 130px; margin-bottom: 26px; }
.bento-main .emblem::before {
  content: ""; position: absolute; inset: -16px; border-radius: 50%;
  border: 1px dashed rgba(232, 176, 75, .35);
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.bento-main .emblem img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(79, 156, 249, .35)); }
.bento-main h3 { font-family: var(--f-display); font-size: 27px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.bento-main p { color: var(--muted); font-size: 15.5px; }
.bento-main .link-gold { margin-top: 26px; }
.bento-card h4 { font-family: var(--f-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.bento-card > p { color: var(--muted); font-size: 14.5px; }
.bento-num {
  position: absolute; right: 20px; bottom: 6px;
  font-family: var(--f-display); font-weight: 800; font-size: 74px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(232, 176, 75, .18);
  pointer-events: none;
}
.bento-ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-gold-soft); border: 1px solid var(--line);
  margin-bottom: 18px; color: var(--gold);
}
.link-gold {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold); font-weight: 600; font-size: 15px;
}
.link-gold .arr { transition: transform .3s ease; }
.link-gold:hover .arr { transform: translateX(5px); }

@media (max-width: 920px) { .bento { grid-template-columns: 1fr 1fr; } .bento-main { grid-column: span 2; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } .bento-main { grid-column: span 1; } }


/* feature grids */

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

.f-card {
  position: relative; border-radius: var(--radius); padding: 32px 28px;
  background: var(--panel); border: 1px solid var(--line-soft);
  overflow: hidden; transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.f-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(420px 180px at var(--mx, 50%) -20%, rgba(232, 176, 75, .14), transparent 70%);
  transition: opacity .4s ease;
}
.f-card:hover { transform: translateY(-7px); border-color: var(--line); background: var(--panel-2); }
.f-card:hover::after { opacity: 1; }

.f-ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-gold-soft); border: 1px solid var(--line);
  color: var(--gold); margin-bottom: 22px;
  transition: transform .4s cubic-bezier(.2,.9,.3,1.6);
}
.f-card:hover .f-ico { transform: rotate(-8deg) scale(1.1); }
.f-card h3 { font-family: var(--f-display); font-size: 17.5px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.f-card p { color: var(--muted); font-size: 14.5px; }


/* how it works – 3 steps */

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps::before {
  content: ""; position: absolute; top: 56px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 18px);
  opacity: .3;
}
.step { position: relative; text-align: center; padding: 30px 24px; }
.step-num {
  position: relative; z-index: 1; width: 84px; height: 84px; margin: 0 auto 26px;
  display: grid; place-items: center; border-radius: 26px;
  background: var(--bg-2); border: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 800; font-size: 26px;
  color: var(--gold);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.7);
  transition: transform .4s ease, box-shadow .4s ease;
}
.step:hover .step-num { transform: translateY(-6px) rotate(-4deg); box-shadow: var(--shadow-gold); }
.step h3 { font-family: var(--f-display); font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; max-width: 280px; margin-inline: auto; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }


/* affiliate */

.aff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 920px) { .aff-grid { grid-template-columns: 1fr; } }

.aff-rows { display: grid; gap: 14px; margin-top: 34px; }
.aff-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; border-radius: 18px;
  background: var(--panel); border: 1px solid var(--line-soft);
  transition: border-color .35s ease, transform .35s ease;
}
.aff-row:hover { border-color: var(--line); transform: translateX(8px); }
.aff-row .ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; color: var(--gold);
  background: var(--grad-gold-soft); border: 1px solid var(--line);
}
.aff-row h4 { font-family: var(--f-display); font-size: 17px; font-weight: 700; }
.aff-row p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.aff-quote {
  margin-top: 36px; font-family: var(--f-display); font-weight: 800;
  font-size: clamp(20px, 2.6vw, 27px); font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* commission card */
.comm-card {
  position: relative; border-radius: 24px; padding: 30px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
  transform: rotate(-1.6deg);
}
.comm-card .comm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.comm-card .comm-head span { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.comm-bars { display: flex; align-items: flex-end; gap: 13px; height: 170px; padding-bottom: 4px; }
.comm-bars .bar {
  flex: 1; border-radius: 9px 9px 4px 4px; min-height: 12px;
  background: linear-gradient(180deg, rgba(232,176,75,.85), rgba(201,127,31,.25));
  transform-origin: bottom; transform: scaleY(0);
  border-top: 2px solid var(--gold-bright);
}
.comm-bars.play .bar { animation: grow .9s cubic-bezier(.2,.7,.2,1.2) forwards; }
.comm-bars .bar:nth-child(2) { animation-delay: .12s; } .comm-bars .bar:nth-child(3) { animation-delay: .24s; }
.comm-bars .bar:nth-child(4) { animation-delay: .36s; } .comm-bars .bar:nth-child(5) { animation-delay: .48s; }
.comm-bars .bar:nth-child(6) { animation-delay: .6s; } .comm-bars .bar:nth-child(7) { animation-delay: .72s; }
@keyframes grow { to { transform: scaleY(1); } }

.comm-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.comm-foot .cf-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.comm-foot .cf-val { font-family: var(--f-display); font-weight: 800; font-size: 21px; color: var(--gold-bright); }


/* mission band */

.mission-band {
  position: relative; overflow: clip; text-align: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(800px 380px at 50% 120%, rgba(201, 127, 31, .16), transparent 70%),
    var(--bg-2);
  padding: 110px 0;
}
.mission-band .m-eagle { width: 88px; margin: 0 auto 30px; filter: drop-shadow(0 16px 40px rgba(79, 156, 249, .4)); animation: floaty 6s ease-in-out infinite; }
.mission-band h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 4.4vw, 46px); max-width: 880px; margin: 0 auto;
  line-height: 1.25;
}
.mission-band h2 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.mission-band .m-label { margin-bottom: 26px; justify-content: center; }
.mission-band .m-label::after { content: ""; width: 38px; height: 1px; background: var(--grad-gold); }


/* testimonials */

.testi-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: stretch; }
@media (max-width: 980px) { .testi-layout { grid-template-columns: 1fr; } }

.review-form-card {
  border-radius: 24px; padding: 38px 34px;
  background: linear-gradient(165deg, rgba(232,176,75,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.review-form-card h3 { font-family: var(--f-display); font-size: 23px; font-weight: 800; margin-bottom: 8px; }
.review-form-card .hint { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

.star-input { display: flex; gap: 6px; margin-bottom: 22px; }
.star-input button {
  background: none; border: 0; cursor: pointer; padding: 2px;
  color: rgba(255, 255, 255, .18); transition: transform .2s ease, color .2s ease;
}
.star-input button svg { width: 30px; height: 30px; fill: currentColor; }
.star-input button.lit { color: var(--gold); }
.star-input button:hover { transform: scale(1.2) rotate(-8deg); }

.review-form-card input[type="text"],
.review-form-card textarea {
  width: 100%; padding: 15px 18px; margin-bottom: 14px; border-radius: 13px;
  background: rgba(7, 9, 13, .6); border: 1px solid var(--line-soft);
  color: var(--ink); font-family: var(--f-body); font-size: 14.5px;
  outline: none; resize: vertical;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.review-form-card input::placeholder, .review-form-card textarea::placeholder { color: #5d6470; }
.review-form-card input:focus, .review-form-card textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 176, 75, .12);
}
.review-form-card .btn { width: 100%; margin-top: 8px; }

.review-total {
  display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 28px;
}
.review-total .rt-num { font-family: var(--f-display); font-weight: 800; font-size: 34px; }
.review-total .rt-meta { font-size: 13px; color: var(--muted); }
.review-total .rt-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }

/* vertical auto-scroll columns */
.testi-wall {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  height: 620px; overflow: hidden; border-radius: 24px;
}
.testi-wall::before, .testi-wall::after {
  content: ""; position: absolute; left: 0; right: 0; height: 90px; z-index: 4; pointer-events: none;
}
.testi-wall::before { top: 0; background: linear-gradient(180deg, var(--bg), transparent); }
.testi-wall::after { bottom: 0; background: linear-gradient(0deg, var(--bg), transparent); }
.testi-col { display: flex; flex-direction: column; gap: 18px; animation: scroll-y 38s linear infinite; }
.testi-col.rev { animation-direction: reverse; animation-duration: 46s; }
.testi-wall:hover .testi-col { animation-play-state: paused; }
@keyframes scroll-y { to { transform: translateY(-50%); } }

.t-card {
  border-radius: 20px; padding: 26px 24px;
  background: var(--panel); border: 1px solid var(--line-soft);
  transition: border-color .3s ease;
}
.t-card:hover { border-color: var(--line); }
.t-stars { color: var(--gold); font-size: 14px; letter-spacing: 2.5px; margin-bottom: 14px; }
.t-stars .off { color: rgba(255, 255, 255, .15); }
.t-text { color: #c4c9d2; font-size: 14px; line-height: 1.7; }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.t-avatar {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 800; font-size: 15px; color: #181107;
  background: var(--grad-gold);
}
.t-name { font-weight: 600; font-size: 14px; }
.t-role { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 600px) { .testi-wall { grid-template-columns: 1fr; } .testi-col.rev { display: none; } }


/* faq */

.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border-radius: 18px; background: var(--panel); border: 1px solid var(--line-soft);
  overflow: hidden; transition: border-color .35s ease, background .35s ease;
}
.faq-item.open { border-color: var(--line); background: var(--panel-2); }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-body); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-q .faq-x {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--grad-gold-soft); border: 1px solid var(--line); color: var(--gold);
  font-size: 17px; font-weight: 400; line-height: 1;
  transition: transform .35s ease;
}
.faq-item.open .faq-x { transform: rotate(45deg); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { min-height: 0; overflow: hidden; }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 14.5px; }


/* cta band */

.cta-band {
  position: relative; overflow: clip; border-radius: 30px; text-align: center;
  padding: 90px 36px;
  background:
    radial-gradient(640px 300px at 50% -40%, rgba(232, 176, 75, .3), transparent 70%),
    radial-gradient(500px 260px at 85% 130%, rgba(34, 64, 120, .4), transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line);
}
.cta-band .cta-eagle { width: 64px; margin: 0 auto 26px; animation: floaty 6s ease-in-out infinite; }
.cta-band h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.1; letter-spacing: -.015em;
  max-width: 720px; margin: 0 auto 18px;
}
.cta-band p { color: var(--muted); font-size: 17px; max-width: 540px; margin: 0 auto 38px; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* footer */

.site-footer { position: relative; border-top: 1px solid var(--line); background: #05070a; padding-top: 76px; overflow: clip; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; padding-bottom: 56px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 330px; margin-top: 18px; }

.socials { display: flex; gap: 10px; margin-top: 26px; }
.socials a {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line-soft); color: var(--muted);
  transition: all .3s ease;
}
.socials a:hover { color: #181107; background: var(--grad-gold); border-color: transparent; transform: translateY(-4px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.footer-col a { display: block; padding: 7px 0; color: var(--muted); font-size: 14.5px; transition: color .25s ease, padding-left .25s ease; }
.footer-col a:hover { color: var(--ink); padding-left: 7px; }

.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--muted);
}
.footer-giant {
  font-family: var(--f-display); font-weight: 800; text-align: center;
  font-size: clamp(64px, 15vw, 210px); line-height: .85; letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1px rgba(232, 176, 75, .13);
  user-select: none; pointer-events: none;
  margin-bottom: -.12em;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }


/* widgets, reveal, toast */

.whatsapp-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 150;
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, #2ee06c, #1aa84e);
  box-shadow: 0 18px 44px -12px rgba(46, 224, 108, .5);
  transition: transform .3s cubic-bezier(.2,.9,.3,1.6);
}
.whatsapp-fab:hover { transform: scale(1.12) rotate(-6deg); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: currentColor; }

.to-top {
  position: fixed; left: 26px; bottom: 26px; z-index: 150;
  width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(11, 14, 20, .85); color: var(--gold); font-size: 17px; cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .35s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad-gold); color: #181107; border-color: transparent; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

.toast {
  position: fixed; top: 24px; left: 50%; transform: translate(-50%, -130%);
  z-index: 400; padding: 15px 26px; border-radius: 14px;
  background: rgba(13, 16, 23, .95); border: 1px solid var(--line);
  backdrop-filter: blur(14px); font-size: 14.5px; font-weight: 500;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.8);
  transition: transform .45s cubic-bezier(.2,.9,.3,1.3);
  display: flex; align-items: center; gap: 11px; white-space: nowrap; max-width: 92vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast .t-ico { font-size: 17px; }
.toast.ok { border-color: rgba(74, 222, 128, .4); }
.toast.err { border-color: rgba(248, 113, 113, .4); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-in { opacity: 1; transform: none; }
  .comm-bars .bar { transform: scaleY(1); }
  .dash-chart .chart-line { stroke-dashoffset: 0; }
  .dash-chart .chart-dot { opacity: 1; }
}


/* preloader */

.preloader {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .7s ease .1s, visibility .7s .1s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-inner img {
  width: 76px; margin: 0 auto 20px;
  filter: drop-shadow(0 14px 30px rgba(79, 156, 249, .45));
  animation: preFloat 1.6s ease-in-out infinite;
}
@keyframes preFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.04); } }
.pre-name {
  font-family: var(--f-display); font-weight: 800; font-size: 21px;
  letter-spacing: .36em; color: var(--ink); padding-left: .36em;
}
.pre-name span {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pre-bar {
  width: 150px; height: 2px; margin: 20px auto 0; border-radius: 2px;
  background: var(--line-soft); overflow: hidden;
}
.pre-bar i {
  display: block; height: 100%; width: 42%; border-radius: 2px;
  background: var(--grad-gold);
  animation: preBar 1.1s ease-in-out infinite;
}
@keyframes preBar { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }

/* theme toggle */
.theme-btn {
  position: relative; width: 42px; height: 42px; margin-left: 12px; flex-shrink: 0;
  border-radius: 12px; border: 1px solid var(--line-soft); background: var(--panel-2);
  color: var(--gold); cursor: pointer; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.theme-btn:hover { border-color: var(--gold); transform: rotate(14deg) scale(1.06); box-shadow: var(--shadow-gold); }
.theme-btn svg {
  position: absolute; width: 19px; height: 19px;
  transition: transform .55s cubic-bezier(.2,.9,.3,1.3), opacity .4s ease;
}
.theme-btn .i-sun { transform: translateY(150%) rotate(120deg); opacity: 0; }
html[data-theme="light"] .theme-btn .i-sun { transform: none; opacity: 1; }
html[data-theme="light"] .theme-btn .i-moon { transform: translateY(-150%) rotate(-120deg); opacity: 0; }

html.theme-anim, html.theme-anim *, html.theme-anim *::before, html.theme-anim *::after {
  transition: background-color .5s ease, color .4s ease, border-color .5s ease,
              box-shadow .5s ease, fill .4s ease, opacity .5s ease !important;
}

/* cursor glow */
.cursor-glow {
  position: fixed; left: 0; top: 0; width: 520px; height: 520px; border-radius: 50%;
  pointer-events: none; z-index: 5;
  background: radial-gradient(circle, rgba(232, 176, 75, .065), transparent 62%);
}

/* gold shine sweep on buttons */
.btn-gold { overflow: hidden; }
.btn-gold::before {
  content: ""; position: absolute; top: 0; left: -85%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: skewX(-22deg); transition: left .65s ease; pointer-events: none;
}
.btn-gold:hover::before { left: 135%; }

/* shimmer on gold text */
.hero h1 .gold-script, .aff-quote {
  background-image: linear-gradient(110deg, #c97f1f 0%, #e8b04b 38%, #fff0c9 50%, #e8b04b 62%, #c97f1f 100%);
  background-size: 200% auto;
  animation: shimmer 4.5s linear infinite;
}
@keyframes shimmer { to { background-position: -200% center; } }

/* rotating border on CTA + review form */
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.review-form-card { position: relative; }
.cta-band::after, .review-form-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--ang),
    transparent 0 8%, rgba(232, 176, 75, .9) 14%, transparent 22%,
    transparent 50%, rgba(79, 156, 249, .55) 62%, transparent 72% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: rotAng 7s linear infinite; pointer-events: none;
}
@keyframes rotAng { to { --ang: 360deg; } }

/* softer extras */
.marquee {
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reveal {
  filter: blur(9px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1), filter .85s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.in { filter: blur(0); }
.t-card:hover { transform: scale(1.02); transition: transform .35s ease, border-color .3s ease; }
.brand img { transition: transform .45s cubic-bezier(.2,.9,.3,1.5); }
.brand:hover img { transform: rotate(-8deg) scale(1.12); }

/* footer stays dark in both themes */
.site-footer {
  --ink: #ece9e1; --muted: #9aa0ab;
  --panel: rgba(255,255,255,.045); --panel-2: rgba(255,255,255,.07);
  --line-soft: rgba(255,255,255,.08); --line: rgba(232,176,75,.14);
  --gold: #e8b04b;
  --grad-gold: linear-gradient(110deg, #c97f1f, #e8b04b 50%, #f8dd8f);
}


/* ---- light theme ---- */

html[data-theme="light"] {
  --bg: #f6f4ee;
  --bg-2: #ffffff;
  --panel: rgba(18, 22, 30, .035);
  --panel-2: rgba(18, 22, 30, .06);
  --line: rgba(176, 111, 18, .3);
  --line-soft: rgba(18, 22, 30, .13);
  --ink: #171b22;
  --muted: #5d6571;
  --gold: #b9821e;
  --gold-deep: #9a6312;
  --gold-bright: #d99c2b;
  --grad-gold: linear-gradient(110deg, #9a6312, #c98a1d 50%, #e8b04b);
  --grad-gold-soft: linear-gradient(135deg, rgba(201, 127, 31, .13), rgba(201, 127, 31, .04));
  --shadow-gold: 0 20px 50px -20px rgba(176, 111, 18, .35);
}

html[data-theme="light"] ::-webkit-scrollbar-thumb { background: #cfc8b8; border-color: var(--bg); }
html[data-theme="light"] ::selection { background: #b9821e; color: #fff; }
html[data-theme="light"] body::after { opacity: .045; }
html[data-theme="light"] .header-pill { background: rgba(255, 255, 255, .68); }
html[data-theme="light"] .site-header.scrolled .header-pill { background: rgba(255, 255, 255, .93); box-shadow: 0 18px 50px -22px rgba(23, 20, 10, .28); }
html[data-theme="light"] .nav-mobile { background: rgba(255, 255, 255, .97); }
html[data-theme="light"] .aurora-1 { opacity: .38; }
html[data-theme="light"] .aurora-2 { opacity: .26; }
html[data-theme="light"] .hero-badge { background: #fff; color: var(--gold-deep); }

html[data-theme="light"] .hero h1 .gold-script,
html[data-theme="light"] .aff-quote {
  background-image: linear-gradient(110deg, #9a6312 0%, #c98a1d 38%, #f0c469 50%, #c98a1d 62%, #9a6312 100%);
}

html[data-theme="light"] .dash, html[data-theme="light"] .comm-card {
  background: linear-gradient(160deg, #ffffff, #fbf7ee);
  box-shadow: 0 36px 80px -32px rgba(23, 20, 10, .32), inset 0 1px 0 #fff;
}
html[data-theme="light"] .float-chip { background: rgba(255, 255, 255, .95); box-shadow: 0 22px 44px -18px rgba(23, 20, 10, .26); }
html[data-theme="light"] .marquee-item:nth-child(even) { -webkit-text-stroke-color: rgba(23, 27, 34, .4); }
html[data-theme="light"] .bento-num { -webkit-text-stroke-color: rgba(176, 111, 18, .28); }
html[data-theme="light"] .step-num { box-shadow: 0 18px 36px -16px rgba(23, 20, 10, .22); }

html[data-theme="light"] .cta-band {
  background:
    radial-gradient(640px 300px at 50% -40%, rgba(232, 176, 75, .32), transparent 70%),
    radial-gradient(500px 260px at 85% 130%, rgba(79, 156, 249, .2), transparent 70%),
    #ffffff;
}

html[data-theme="light"] .t-text { color: #454d5a; }
html[data-theme="light"] .t-stars .off { color: rgba(23, 27, 34, .18); }
html[data-theme="light"] .review-form-card { background: linear-gradient(165deg, rgba(201, 127, 31, .1), #ffffff); }

html[data-theme="light"] .review-form-card input[type="text"],
html[data-theme="light"] .review-form-card textarea { background: #fff; color: var(--ink); }
html[data-theme="light"] .review-form-card input::placeholder,
html[data-theme="light"] .review-form-card textarea::placeholder { color: #9aa2ad; }
html[data-theme="light"] .star-input button { color: rgba(23, 27, 34, .17); }
html[data-theme="light"] .star-input button.lit { color: var(--gold-bright); }
html[data-theme="light"] .toast { background: rgba(255, 255, 255, .97); box-shadow: 0 24px 60px -16px rgba(23, 20, 10, .32); }
html[data-theme="light"] .to-top { background: rgba(255, 255, 255, .92); }
html[data-theme="light"] .cursor-glow { background: radial-gradient(circle, rgba(176, 111, 18, .08), transparent 62%); }

@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
  .preloader { transition: none; }
}


/* misc polish */

[id] { scroll-margin-top: 105px; }

/* cinematic line reveal */
.hero h1 .line {
  display: block; overflow: hidden;
  padding-bottom: .22em; margin-bottom: -.22em;
}
.hero h1 .li {
  display: inline-block; transform: translateY(118%);
  animation: lineUp 1s cubic-bezier(.2,.75,.2,1) forwards;
}
.hero h1 .line:nth-child(2) .li { animation-delay: .18s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* sparkle particles */
.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkles i {
  position: absolute; left: var(--x); top: var(--y);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold), 0 0 22px rgba(232, 176, 75, .4);
  animation: twinkle var(--s, 2s) ease-in-out infinite alternate,
             floaty 7s ease-in-out infinite;
}
@keyframes twinkle {
  from { opacity: .1; transform: scale(.5); }
  to { opacity: .95; transform: scale(1.25); }
}

.site-header.tucked { top: -84px; }

/* tactile press */
.btn { transition: transform .3s cubic-bezier(.2,.9,.3,1.4), box-shadow .3s ease, background .3s ease, border-color .3s ease, scale .15s ease; }
.btn:active { scale: .94; }
.theme-btn:active, .menu-btn:active, .to-top:active { scale: .9; }
.theme-btn, .menu-btn, .to-top { transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease, scale .15s ease; }

/* earnings pulse */
.dash-earn.pulse, .v1.pulse, .v2.pulse, .v3.pulse { animation: earnPulse .6s ease; }
@keyframes earnPulse {
  35% { transform: scale(1.06); filter: brightness(1.35); }
  100% { transform: scale(1); filter: none; }
}

/* card hover glow */
.f-card:hover, .bento-card:hover, .aff-row:hover {
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .55), 0 0 0 1px rgba(232, 176, 75, .12), 0 0 44px -18px rgba(232, 176, 75, .3);
}
html[data-theme="light"] .f-card:hover,
html[data-theme="light"] .bento-card:hover,
html[data-theme="light"] .aff-row:hover {
  box-shadow: 0 24px 56px -26px rgba(23, 20, 10, .3), 0 0 0 1px rgba(176, 111, 18, .18), 0 0 40px -18px rgba(176, 111, 18, .22);
}

/* footer wordmark easter egg */
.footer-giant {
  pointer-events: auto; cursor: default;
  background: var(--grad-gold); background-size: 100%;
  -webkit-background-clip: text; background-clip: text;
  background-position: 0 1.2em; background-repeat: no-repeat;
  transition: background-position .9s cubic-bezier(.2,.7,.2,1), -webkit-text-stroke-color .6s ease;
}
.footer-giant:hover {
  background-position: 0 0;
  -webkit-text-stroke-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .li { transform: none; animation: none; }
  .sparkles { display: none; }
}
