:root {
  --bg-color: #05060a;
  --bg-gradient:
    radial-gradient(1200px circle at 50% -20%, rgba(0, 255, 163, 0.14) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(900px circle at 15% 10%, rgba(98, 140, 255, 0.10) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(900px circle at 85% 20%, rgba(0, 255, 163, 0.08) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, #07070b 0%, #05060a 55%, #040509 100%);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --accent: #00ffa3;
  --accent-glow: rgba(0, 255, 163, 0.35);
  --accent-hover: #4dffbf;
  --panel-bg: rgba(255, 255, 255, 0.03);
  --panel-border: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.02);
  --glass-card: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 100%);
  --glass-hover: rgba(255, 255, 255, 0.065);
  --glass-border: rgba(255, 255, 255, 0.07);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.62);
  --shadow-glow: 0 0 45px rgba(0, 255, 163, 0.12);
  --ring: 0 0 0 3px rgba(0, 255, 163, 0.22);
}


/* Background Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 82%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px circle at 50% -10%, rgba(0,255,163,0.12), rgba(0,0,0,0) 58%),
    radial-gradient(900px circle at 10% 10%, rgba(98,140,255,0.10), rgba(0,0,0,0) 60%),
    radial-gradient(900px circle at 90% 12%, rgba(0,255,163,0.08), rgba(0,0,0,0) 62%),
    radial-gradient(900px circle at 50% 120%, rgba(0,0,0,0), rgba(0,0,0,0.72) 70%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.035), rgba(0,0,0,0) 55%);
  opacity: 0.95;
  pointer-events: none;
  z-index: -2;
}
.bonus-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas: "main aside";
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.bonus-layout-single {
  grid-template-columns: 1fr;
  grid-template-areas: "main";
}
.bonus-main .bonus-grid {
  margin: 0;
}
.bonus-main { grid-area: main; }
.month-aside { grid-area: aside; }
.month-aside .month-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top1-strip {
  margin: 0 auto 34px;
}

.bonus-copy {
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.72rem;
  white-space: nowrap;
}

.bonus-copy:hover {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

.top1-strip-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.top1-strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(255,255,255,0.12), var(--accent-glow), rgba(255,255,255,0.08), var(--accent-glow), rgba(255,255,255,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
}

.top1-strip-card::before {
  content: "";
  position: absolute;
  inset: -120px -40px auto -40px;
  height: 240px;
  background: radial-gradient(closest-side, rgba(255,255,255,0.10), rgba(0,0,0,0));
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.top1-strip-card > * {
  position: relative;
  z-index: 1;
}

.top1-strip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.top1-strip-title {
  font-size: 2.0rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.96);
  line-height: 1.05;
}

.top1-strip-sub {
  margin-top: 8px;
  color: rgba(255,255,255,0.70);
  font-weight: 750;
  letter-spacing: -0.01em;
}

.top1-strip-accent {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  font-weight: 950;
}

.top1-strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.top1-strip-card .bonus-pill {
  padding: 7px 10px;
  font-size: 0.78rem;
}

.top1-strip-right {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.top1-strip-cta {
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(255,255,255,0.12) 160%);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(0,0,0,0.88);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35), 0 0 35px var(--accent-glow);
  white-space: nowrap;
}

.top1-strip-date {
  color: rgba(255,255,255,0.55);
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.top1-strip-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 85px rgba(0,0,0,0.45), 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .top1-strip-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .top1-strip-right {
    justify-items: start;
  }
}

.top1-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.top1-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(255,255,255,0.12), var(--accent-glow), rgba(255,255,255,0.08), var(--accent-glow), rgba(255,255,255,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
}

.top1-card::before {
  content: "";
  position: absolute;
  inset: -60px -40px auto -40px;
  height: 180px;
  background: radial-gradient(closest-side, rgba(255,255,255,0.08), rgba(0,0,0,0));
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.top1-card > * {
  position: relative;
  z-index: 1;
}

.top1-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.top1-rank {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.top1-num {
  font-weight: 950;
  letter-spacing: -0.05em;
  font-size: 2.05rem;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 0 34px rgba(0,0,0,0.35);
}

.top1-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.top1-arrow {
  color: rgba(255,255,255,0.70);
  font-weight: 900;
}

.top1-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.top1-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.top1-info {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.top1-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
}

.top1-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.top1-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.top1-card .bonus-pill {
  padding: 7px 10px;
  font-size: 0.78rem;
}

.top1-foot {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top1-date {
  color: rgba(255,255,255,0.55);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.top1-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.top1-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 85px rgba(0,0,0,0.45), 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}
.month-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #eaeaea;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  transition: all .2s ease;
}
.month-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(45,138,116,0.4);
}
.month-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}
.ml-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ml-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.ml-sub {
  color: var(--muted);
  font-size: 0.8rem;
}
.ml-arrow {
  margin-left: auto;
  color: var(--accent);
  font-weight: 700;
  transition: transform .2s ease;
}
.month-link:hover .ml-arrow {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .bonus-layout { 
    grid-template-columns: 1fr; 
    grid-template-areas: 
      "aside"
      "main";
  }

  .bonus-layout-single {
    grid-template-areas: "main";
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
}

::selection {
  background: rgba(0, 255, 163, 0.22);
  color: rgba(255,255,255,0.98);
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Animations */
@keyframes float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes glow {
  0% { box-shadow: 0 0 20px rgba(45, 138, 116, 0.1); }
  50% { box-shadow: 0 0 40px rgba(45, 138, 116, 0.3); }
  100% { box-shadow: 0 0 20px rgba(45, 138, 116, 0.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

main {
  flex: 1;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* Header & Nav */
header {
  padding: 16px 0;
  position: sticky;
  top: 16px;
  z-index: 100;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(14, 16, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  max-width: 1100px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  gap: 16px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: transform 0.2s, text-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.42),
    0 0 0 4px rgba(0,255,163,0.08),
    0 0 26px rgba(0,255,163,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand:hover .brand-mark {
  transform: scale(1.04);
  border-color: rgba(0,255,163,0.26);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.46),
    0 0 0 5px rgba(0,255,163,0.10),
    0 0 34px rgba(0,255,163,0.20);
}

.brand .brand-text {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.brand:hover .brand-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

.menu {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}

.menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
}

.menu a:not(.request-link) {
  border: 1px solid transparent;
  background: transparent;
}

.menu a:not(.request-link):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.menu a:not(.request-link).active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
header .menu a:not(.request-link)::before {
  display: none;
}

.menu a:not(.request-link)::before {
  content: '→';
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: all 0.2s;
  color: var(--accent);
  font-weight: 700;
}

.menu a:not(.request-link):hover::before {
  opacity: 1;
}

.request-link {
  color: var(--accent) !important;
  font-weight: 600 !important;
  text-shadow: 0 0 20px rgba(45, 138, 116, 0.3);
}

/* Header Specific Request Link Styling */
header .request-link {
  background: linear-gradient(135deg, rgba(0,255,163,0.14) 0%, rgba(98,140,255,0.10) 100%);
  border: 1px solid rgba(0,255,163,0.25);
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(0,255,163,0.08);
  margin-left: 8px;
}

header .request-link:hover {
  background: linear-gradient(135deg, rgba(0,255,163,0.22) 0%, rgba(98,140,255,0.14) 100%);
  border-color: rgba(0,255,163,0.55);
  color: #fff !important;
  box-shadow: 0 10px 35px rgba(0,0,0,0.55), 0 0 35px rgba(0,255,163,0.18);
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(0, 255, 163, 0.25);
}

.request-link:hover {
  color: var(--accent-hover) !important;
  text-shadow: 0 0 25px rgba(58, 168, 141, 0.5);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(255,255,255,0.04);
}

.scroll-progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(0,255,163,0.95), rgba(98,140,255,0.78), rgba(0,255,163,0.92));
  box-shadow: 0 0 18px rgba(0,255,163,0.22);
}

.section-dots {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 120;
  padding: 10px;
  border-radius: 999px;
  background: rgba(14,16,20,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section-dots a {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  display: block;
}

.section-dots a.active {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), var(--accent) 38%, rgba(0,0,0,0) 72%);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06), 0 0 22px var(--accent-glow);
}

.fab {
  position: fixed;
  right: 16px;
  bottom: 96px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(14,16,20,0.62);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  z-index: 160;
}

.fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 28px 85px rgba(0,0,0,0.62), 0 0 40px var(--accent-glow);
}

.toast-stack {
  position: fixed;
  top: 76px;
  right: 16px;
  z-index: 240;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: rgba(14,16,20,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 750;
  letter-spacing: -0.01em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-tools {
  margin: 16px 0 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.faq-search {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0 14px;
  color: rgba(255,255,255,0.90);
  outline: none;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.faq-search::placeholder {
  color: rgba(255,255,255,0.48);
}

.faq-clear {
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.faq-clear:hover {
  border-color: rgba(0,255,163,0.22);
  color: rgba(255,255,255,0.90);
}

.faq-empty {
  margin-top: 12px;
  color: rgba(255,255,255,0.62);
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(22px);
  opacity: 0;
  pointer-events: none;
  z-index: 150;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: min(900px, calc(100% - 40px));
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(22px);
  pointer-events: none;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(14,16,20,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sticky-cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.40), rgba(98,140,255,0.18), rgba(255,255,255,0.10), rgba(0,255,163,0.22), rgba(0,255,163,0.40));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.sticky-cta-inner > * { position: relative; z-index: 1; }

.sticky-cta-title {
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
}

.sticky-cta-sub {
  margin-top: 2px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
}

.wow-section {
  margin: 140px 0;
  position: relative;
  padding-top: 22px;
}

.wow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,163,0.20), rgba(98,140,255,0.16), rgba(0,255,163,0.12), transparent);
  opacity: 0.8;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.preview-card {
  position: relative;
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
  overflow: hidden;
  isolation: isolate;
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.42), rgba(98,140,255,0.18), rgba(255,255,255,0.10), rgba(0,255,163,0.24), rgba(0,255,163,0.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.preview-card > * { position: relative; z-index: 1; }

.preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.preview-title {
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.96);
}

.preview-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-chip {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
}

.preview-body {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 18px;
  background: radial-gradient(700px circle at 30% 20%, rgba(0,255,163,0.10), rgba(0,0,0,0) 55%), rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  filter: blur(0.6px);
  opacity: 0.9;
}

.preview-body.preview-channels {
  padding: 14px 14px;
  filter: blur(1.35px);
  opacity: 0.58;
  background:
    radial-gradient(700px circle at 30% 15%, rgba(0,255,163,0.10), rgba(0,0,0,0) 55%),
    rgba(10, 12, 16, 0.45);
  border: 1px solid rgba(255,255,255,0.10);
}

.channel-group-title {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 2px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channel-list {
  display: grid;
  gap: 8px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
}

.channel-row.is-redacted {
  position: relative;
  opacity: 0.92;
}

.channel-row.is-redacted::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(255,255,255,0.07), rgba(0,0,0,0));
  transform: translateX(-110%);
  animation: shimmer 3.6s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

.preview-scrim {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  pointer-events: none;
  background:
    radial-gradient(700px circle at 50% 35%, rgba(0,255,163,0.12), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(6,7,10,0.10), rgba(6,7,10,0.72));
  z-index: 2;
}

.lock-center {
  text-align: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(14,16,20,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.lock-title {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
}

.lock-sub {
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.preview-card:hover .preview-body.preview-channels {
  opacity: 0.66;
}

.preview-card:hover .preview-scrim {
  background:
    radial-gradient(700px circle at 50% 35%, rgba(0,255,163,0.14), rgba(0,0,0,0) 56%),
    linear-gradient(180deg, rgba(6,7,10,0.10), rgba(6,7,10,0.76));
}

.preview-card:hover .lock-center {
  border-color: rgba(0,255,163,0.18);
  box-shadow: 0 28px 90px rgba(0,0,0,0.62), 0 0 28px rgba(0,255,163,0.10);
}

@keyframes shimmer {
  0% { transform: translateX(-110%); }
  45% { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}

.channel-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(0,255,163,0.88);
  font-weight: 900;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

.channel-name {
  font-weight: 750;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.88);
}

.preview-card:hover .channel-row {
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.preview-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  margin-top: 12px;
}
.preview-line:first-child { margin-top: 0; }
.preview-line.w90 { width: 90%; }
.preview-line.w85 { width: 85%; }
.preview-line.w80 { width: 80%; }
.preview-line.w75 { width: 75%; }
.preview-line.w70 { width: 70%; }
.preview-line.w60 { width: 60%; }
.preview-line.w55 { width: 55%; }
.preview-line.w50 { width: 50%; }

.preview-lock {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.lock-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(14,16,20,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.72rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
}

.proof-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.38), rgba(98,140,255,0.16), rgba(255,255,255,0.10), rgba(0,255,163,0.22), rgba(0,255,163,0.38));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.52;
  z-index: 0;
}

.proof-card > * { position: relative; z-index: 1; }

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.proof-title {
  font-weight: 850;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
}

.proof-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,255,163,0.10);
  border: 1px solid rgba(0,255,163,0.22);
  color: rgba(255,255,255,0.86);
}

.proof-metrics { margin-top: 18px; display: grid; gap: 14px; }

.metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}

.metric-value {
  color: rgba(255,255,255,0.90);
  font-weight: 800;
}

.metric-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.metric-bar .fill {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,255,163,0.85), rgba(98,140,255,0.55));
  box-shadow: 0 0 22px rgba(0,255,163,0.12);
}

.metric-bar .fill.f90 { width: 90%; }
.metric-bar .fill.f82 { width: 82%; }
.metric-bar .fill.f75 { width: 75%; }
.metric-bar .fill.f68 { width: 68%; }

.proof-side { display: grid; gap: 18px; }

.proof-mini {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 26px 80px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
}

.mini-title {
  font-weight: 850;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
}

.mini-text {
  margin-top: 10px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 26px 80px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
}

.testimonial-card.is-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.44), rgba(98,140,255,0.18), rgba(255,255,255,0.12), rgba(0,255,163,0.26), rgba(0,255,163,0.44));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.testimonial-card.is-featured > * { position: relative; z-index: 1; }

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45), 0 0 24px rgba(0,255,163,0.10);
}

.testimonial-logo.is-fallback {
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  background: radial-gradient(18px circle at 30% 25%, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 60%), rgba(255,255,255,0.03);
}

.testimonial-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-name {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
  text-decoration: none;
}

.testimonial-name:hover {
  color: rgba(255,255,255,1);
}

.testimonial-handle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: -0.01em;
}

.testimonial-head .testimonial-badge {
  margin-left: auto;
}

.member-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45), 0 0 24px rgba(0,255,163,0.10);
}

.member-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.member-name {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
}

.member-tag {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: -0.01em;
}

.member-head .testimonial-badge {
  margin-left: auto;
}

.preview-card:hover,
.proof-card:hover,
.proof-mini:hover,
.testimonial-card:hover {
  transform: translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(0,255,163,0.18);
  box-shadow: 0 28px 85px rgba(0,0,0,0.45), 0 0 40px rgba(0,255,163,0.10);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.01em;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,255,163,0.10);
  border: 1px solid rgba(0,255,163,0.22);
  color: rgba(255,255,255,0.86);
}

.testimonial-muted {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.testimonial-extra {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.70);
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.testimonial-extra a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,255,163,0.22);
}

.testimonial-extra a:hover {
  border-bottom-color: rgba(0,255,163,0.45);
}

.testimonial-extra::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(0,255,163,0.95) 40%, rgba(0,255,163,0.55) 70%, rgba(0,0,0,0) 72%);
  box-shadow: 0 0 18px rgba(0,255,163,0.16);
  flex: 0 0 auto;
}

.faq-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 26px 80px rgba(0,0,0,0.26);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-weight: 900;
  color: rgba(0,255,163,0.85);
}

.faq-item[open] summary::after { content: "–"; }

.faq-content {
  margin-top: 12px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

.faq-cta {
  margin-top: 34px;
  text-align: center;
}

.bento-card,
.preview-card,
.testimonial-card,
.proof-card,
.proof-mini {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 900px) {
  .section-dots { display: none; }
}

@media (max-width: 1024px) {
  .preview-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.content-narrow {
  max-width: 600px;
  margin: 40px auto;
}

.premium-card {
  background: radial-gradient(circle at top center, rgba(30, 30, 30, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 100px rgba(45, 138, 116, 0.05);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(45, 138, 116, 0.03) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.premium-card .btn-text {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.premium-card .btn-text:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.premium-card h1 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.premium-card p.lede {
  color: #b0b0b0;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.premium-card p.lede .muted {
  color: #666;
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.invite-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 255, 163, 0.22);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(0, 255, 163, 0.06);
  background-image: linear-gradient(90deg, rgba(0,255,163,0.95), rgba(98,140,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-top-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.feature-list li {
  margin-bottom: 12px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}

.feature-list li span {
  color: var(--accent);
  font-weight: bold;
}

.feature-list li .error-icon {
  color: #ff4d4d;
}

/* Hero Section */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 80px);
  margin-top: 40px;
  padding: 54px 0 44px;
  align-items: center;
}

.hero-left { min-width: 0; }

.orbit-showcase {
  display: flex;
  justify-content: center;
  margin: 18px 0 26px;
  padding: 26px 0;
  position: relative;
}

.orbit-showcase::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
}

.orbit-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,163,0.18), rgba(98,140,255,0.14), transparent);
  pointer-events: none;
}

.hero-orbit {
  position: relative;
  width: 360px;
  height: 360px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
  filter: drop-shadow(0 22px 70px rgba(0,0,0,0.55));
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,255,163,0.14), rgba(0,0,0,0) 58%),
    radial-gradient(circle at 50% 50%, rgba(98,140,255,0.10), rgba(0,0,0,0) 64%);
  opacity: 0.85;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  mask-image: radial-gradient(circle at 50% 50%, transparent 0, black 42%, black 70%, transparent 78%);
  opacity: 0.8;
}

.hero-orbit-layer {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}

.hero-orbit-layer.layer-a {
  animation: orbitSpinA 26s linear infinite;
}

.hero-orbit-layer.layer-b {
  animation: orbitSpinB 18s linear infinite;
  opacity: 0.92;
}

.orbit-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(var(--ai));
  transform-origin: 50% 50%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.layer-a .orbit-chip {
  animation: orbitCounterA 26s linear infinite;
}

.layer-b .orbit-chip {
  animation: orbitCounterB 18s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  background: rgba(0,255,163,0.06);
  border-color: rgba(0,255,163,0.16);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(0,255,163,0.10), 0 0 55px rgba(0,255,163,0.20);
  opacity: 0.9;
}

.orbit-chip.o1 { --a: 0deg; --ai: 0deg; --r: 160px; }
.orbit-chip.o2 { --a: 36deg; --ai: -36deg; --r: 160px; }
.orbit-chip.o3 { --a: 72deg; --ai: -72deg; --r: 160px; }
.orbit-chip.o4 { --a: 108deg; --ai: -108deg; --r: 160px; }
.orbit-chip.o5 { --a: 144deg; --ai: -144deg; --r: 160px; }
.orbit-chip.o6 { --a: 180deg; --ai: -180deg; --r: 160px; }
.orbit-chip.o7 { --a: 216deg; --ai: -216deg; --r: 160px; }
.orbit-chip.o8 { --a: 252deg; --ai: -252deg; --r: 160px; }
.orbit-chip.o9 { --a: 288deg; --ai: -288deg; --r: 160px; }
.orbit-chip.o10 { --a: 324deg; --ai: -324deg; --r: 160px; }

.orbit-chip.i1 { --a: 10deg; --ai: -10deg; --r: 106px; }
.orbit-chip.i2 { --a: 70deg; --ai: -70deg; --r: 106px; }
.orbit-chip.i3 { --a: 130deg; --ai: -130deg; --r: 106px; }
.orbit-chip.i4 { --a: 190deg; --ai: -190deg; --r: 106px; }
.orbit-chip.i5 { --a: 250deg; --ai: -250deg; --r: 106px; }
.orbit-chip.i6 { --a: 310deg; --ai: -310deg; --r: 106px; }

@keyframes orbitSpinA {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinB {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes orbitCounterA {
  from { transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(var(--ai)) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(var(--ai)) rotate(-360deg); }
}

@keyframes orbitCounterB {
  from { transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(var(--ai)) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(var(--ai)) rotate(360deg); }
}

@media (max-width: 768px) {
  .hero-orbit { width: 300px; height: 300px; }
  .orbit-chip { font-size: 0.72rem; letter-spacing: 0.10em; padding: 7px 10px; }
  .orbit-chip.o1,
  .orbit-chip.o2,
  .orbit-chip.o3,
  .orbit-chip.o4,
  .orbit-chip.o5,
  .orbit-chip.o6,
  .orbit-chip.o7,
  .orbit-chip.o8,
  .orbit-chip.o9,
  .orbit-chip.o10 { --r: 132px; }
  .orbit-chip.i1,
  .orbit-chip.i2,
  .orbit-chip.i3,
  .orbit-chip.i4,
  .orbit-chip.i5,
  .orbit-chip.i6 { --r: 90px; }
}

/* Background Graph Animation (Subtle) */
.hero-graph-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.06; /* 3-8% opacity as requested */
  pointer-events: none;
  overflow: hidden;
}

.hero-graph-svg {
  width: 200%; /* Wider than container for scrolling */
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: graphScroll 20s linear infinite;
}

@keyframes graphScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.hero-small {
  text-align: center;
  margin: 42px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-meta-bar--inline {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: auto;
  border-radius: 0;
}

.bonus-meta-bar--inline::after {
  display: none;
}

.bonus-meta-bar--inline .bonus-meta-item {
  color: rgba(255,255,255,0.62);
}

.bonus-meta-bar--inline .bonus-meta-count {
  color: rgba(255,255,255,0.86);
}

.bonus-meta-bar--inline .bonus-meta-sep {
  opacity: 0.5;
}

.hero-small .headline {
  font-size: clamp(2.9rem, 6vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 8px;
  max-width: 12.5ch;
  text-wrap: pretty;
}

.bonus-hero-card {
  width: fit-content;
  max-width: min(100%, 620px);
  display: block;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(520px circle at 12% 18%, rgba(0,255,163,0.10) 0%, rgba(0,0,0,0) 54%),
    linear-gradient(180deg, rgba(10,12,16,0.92) 0%, rgba(8,10,14,0.84) 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

.bonus-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,255,163,0.10), rgba(255,255,255,0.02) 35%, rgba(98,140,255,0.08) 100%);
  opacity: 0.6;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.bonus-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-width: 0;
}

.bonus-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  font-size: 0.67rem;
}

.bonus-hero-copy .kicker {
  margin-bottom: 12px;
}

.bonus-hero-copy .headline {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.bonus-hero-copy .headline br {
  display: block;
}

.bonus-hero-inline-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.bonus-hero-inline-avatar {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.32), 0 0 0 4px rgba(0,255,163,0.06);
  flex: 0 0 auto;
}

.bonus-hero-inline-text {
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-hero-inline-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.bonus-hero-inline-name {
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.96);
}

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 14px;
  background:
    radial-gradient(220px circle at 30% 30%, rgba(0,255,163,0.16) 0%, rgba(0,0,0,0) 62%),
    rgba(45, 138, 116, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(0,255,163,0.22);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55), 0 0 26px rgba(0,255,163,0.10);
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(0,255,163,0.92) 55%, rgba(0,0,0,0) 70%);
  filter: drop-shadow(0 0 14px rgba(0,255,163,0.20));
  vertical-align: middle;
}

.headline {
  font-size: clamp(2.6rem, 6.5vw, 4.75rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 70px rgba(0,0,0,0.55);
}

.hero-small .headline {
  font-size: 3rem;
}

.lede {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 400;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-left > .muted {
  padding: 14px 14px 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(500px circle at 20% 0%, rgba(0,255,163,0.12), rgba(0,0,0,0) 60%),
    rgba(255,255,255,0.02);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.hero-left > .muted span {
  text-shadow: 0 0 18px rgba(0,255,163,0.16);
}

.decision-section {
  margin: 120px auto 0;
  display: flex;
  justify-content: center;
}

.decision-card {
  width: min(900px, 100%);
  padding: clamp(26px, 4vw, 46px);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(1100px circle at 20% 0%, rgba(0,255,163,0.16) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(900px circle at 85% 30%, rgba(98,140,255,0.12) 0%, rgba(0,0,0,0) 60%),
    rgba(10, 10, 12, 0.52);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow: 0 32px 90px rgba(0,0,0,0.66), 0 0 40px rgba(0,255,163,0.10);
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.decision-card::before {
  content: "";
  position: absolute;
  inset: -180px;
  background:
    repeating-radial-gradient(circle at 35% 25%, rgba(255,255,255,0.05) 0 1px, rgba(0,0,0,0) 1px 18px),
    radial-gradient(900px circle at 50% 10%, rgba(0,255,163,0.14), rgba(0,0,0,0) 60%);
  opacity: 0.18;
  pointer-events: none;
}

.decision-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.44), rgba(98,140,255,0.18), rgba(255,255,255,0.10), rgba(0,255,163,0.24), rgba(0,255,163,0.44));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.decision-card > * {
  position: relative;
  z-index: 1;
}

.decision-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,163,0.22);
  background:
    radial-gradient(240px circle at 30% 30%, rgba(0,255,163,0.18) 0%, rgba(0,0,0,0) 62%),
    rgba(45, 138, 116, 0.08);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55), 0 0 26px rgba(0,255,163,0.10);
}

.decision-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(0,255,163,0.92) 55%, rgba(0,0,0,0) 70%);
  filter: drop-shadow(0 0 16px rgba(0,255,163,0.22));
}

.decision-title {
  margin: 20px 0 10px;
  font-size: clamp(2rem, 5.8vw, 3.6rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.60) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 80px rgba(0,0,0,0.60);
}

.decision-sub {
  margin: 0 auto;
  max-width: 56ch;
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
  line-height: 1.6;
}

.decision-timer {
  margin: 30px auto 14px;
  width: min(560px, 100%);
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 22px 70px rgba(0,0,0,0.60);
}

.decision-time {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.decision-num {
  display: inline-block;
  min-width: 2ch;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 900;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 16px 70px rgba(0,0,0,0.60);
}

.decision-sep {
  font-size: clamp(2.1rem, 6.3vw, 3.3rem);
  font-weight: 800;
  color: rgba(0,255,163,0.95);
  filter: drop-shadow(0 0 18px rgba(0,255,163,0.18));
  opacity: 0.9;
}

.decision-labels {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
}

.decision-label {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.decision-meta {
  margin-top: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  font-weight: 650;
}

.decision-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.decision-btn {
  width: min(420px, 100%);
  justify-content: center;
  padding: 18px 34px;
  border-radius: 18px;
}

.decision-note {
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .decision-section {
    margin-top: 90px;
  }

  .decision-card {
    text-align: left;
  }

  .decision-timer {
    width: 100%;
  }

  .decision-actions {
    align-items: stretch;
  }

  .decision-btn {
    width: 100%;
    max-width: 520px;
  }
}

.hero-aside {
  background:
    radial-gradient(900px circle at 30% 0%, rgba(0,255,163,0.12) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(800px circle at 85% 18%, rgba(98,140,255,0.10) 0%, rgba(0,0,0,0) 58%),
    rgba(10, 10, 12, 0.52);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0,0,0,0.58), 0 0 34px rgba(0, 255, 163, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* Force hardware acceleration */
}

.hero-aside:hover {
  border-color: rgba(0,255,163,0.22);
  box-shadow: 0 30px 86px rgba(0,0,0,0.62), 0 0 40px rgba(0, 255, 163, 0.12);
}

.hero-aside-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-portrait-wrap {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.60);
}

.hero-portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px circle at 50% 10%, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.hero-portrait {
  width: 100%;
  height: clamp(340px, 46vh, 460px);
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.08);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
}

.hero-aside:hover .hero-portrait {
  transform: scale(1.02) translateY(-8px);
}

.glow-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--accent);
  filter: blur(110px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.10em;
  opacity: 0.95;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  padding: 12px 16px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.scroll-indicator span {
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(0,255,163,0.16));
}

.scroll-indicator:hover {
  border-color: rgba(0,255,163,0.30);
  background: rgba(0,255,163,0.06);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 78px 0 64px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
  isolation: auto;
}

.stats-bar::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(0,255,163,0.26), rgba(98,140,255,0.22), rgba(0,255,163,0.16), transparent);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.stats-bar > * {
  position: relative;
  z-index: 1;
}

.stat-item {
  position: relative;
  text-align: center;
  border-radius: 22px;
  padding: 18px 16px 16px;
  background: radial-gradient(600px circle at 50% 0%, rgba(0,255,163,0.10), rgba(255,255,255,0.02) 42%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.stat-item:not(:last-child)::after {
  display: none;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(0,255,163,0.95) 40%, rgba(0,255,163,0.55) 70%, rgba(0,0,0,0) 72%);
  filter: drop-shadow(0 0 16px rgba(0,255,163,0.18));
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.stat-item::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.42), rgba(98,140,255,0.16), rgba(255,255,255,0.10), rgba(0,255,163,0.22), rgba(0,255,163,0.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0,255,163,0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 34px rgba(0,255,163,0.10);
}

.stat-value {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(0,255,163,0.92));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 850;
}

.price-tag {
  background: rgba(0, 255, 163, 0.10);
  border: 1px solid rgba(0, 255, 163, 0.22);
  padding: 8px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.90);
}

.price-tag span {
  font-size: 0.8rem;
  opacity: 0.65;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
  margin-top: 40px;
}

@keyframes bentoAppear {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bento-card {
  background:
    radial-gradient(900px circle at 20% 10%, rgba(0,255,163,0.12), rgba(0,0,0,0) 55%),
    radial-gradient(700px circle at 80% 110%, rgba(98,140,255,0.10), rgba(0,0,0,0) 50%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1), background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  animation: bentoAppear 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    repeating-radial-gradient(circle at 40% 35%, rgba(255,255,255,0.05) 0 1px, rgba(0,0,0,0) 1px 18px),
    radial-gradient(700px circle at var(--mouse-x) var(--mouse-y), rgba(0,255,163,0.08), rgba(0,0,0,0) 46%);
  opacity: 0.18;
  transition: opacity 0.5s, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.44), rgba(98,140,255,0.18), rgba(255,255,255,0.10), rgba(0,255,163,0.24), rgba(0,255,163,0.44));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-card:hover::before {
  opacity: 0.34;
  transform: rotate(4deg);
}

.bento-card:hover {
  background:
    radial-gradient(900px circle at 20% 10%, rgba(0,255,163,0.15), rgba(0,0,0,0) 56%),
    radial-gradient(700px circle at 80% 110%, rgba(98,140,255,0.12), rgba(0,0,0,0) 52%),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(0, 255, 163, 0.30);
  transform: translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 28px 65px rgba(0,0,0,0.55), 0 0 40px rgba(0, 255, 163, 0.10);
}

.bento-card:hover::after {
  opacity: 0.95;
}

.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }

.bento-title {
  font-size: 1.35rem;
  font-weight: 850;
  margin-bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.62));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bento-icon {
  position: relative;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  color: var(--accent);
  font-size: 1.25rem;
  opacity: 1;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover .bento-icon {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(0,255,163,0.22);
  background: rgba(0,255,163,0.06);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45), 0 0 26px rgba(0,255,163,0.08);
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 80px 0 40px; }
  .lede { margin-left: auto; margin-right: auto; }
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .bento-card.tall { grid-row: span 1; }
  .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-it-works-grid { grid-template-columns: 1fr !important; }
  .scroll-indicator { display: none; }
}

@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .stats-bar { grid-template-columns: 1fr; padding: 12px; }
  .hero-portrait { height: clamp(320px, 44vh, 400px); }
}

@media (max-width: 420px) {
  .hero-aside-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .price-tag {
    justify-content: center;
  }
}

.hero-aside::before {
  content: "";
  position: absolute;
  inset: -140px;
  background:
    repeating-radial-gradient(circle at 35% 25%, rgba(255,255,255,0.05) 0 1px, rgba(0,0,0,0) 1px 18px),
    radial-gradient(800px circle at 60% 20%, rgba(0,255,163,0.12), rgba(0,0,0,0) 60%);
  opacity: 0.14;
  pointer-events: none;
}

.hero-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(0,255,163,0.40), rgba(98,140,255,0.18), rgba(255,255,255,0.10), rgba(0,255,163,0.22), rgba(0,255,163,0.40));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.hero-aside-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.badge-container {
  margin: 0;
}

.premium-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, rgba(0,255,163,0.22) 0%, rgba(26,58,50,0.85) 100%);
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.55), 0 0 18px rgba(0,255,163,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  text-transform: uppercase;
}

.analysis-title {
  font-size: clamp(1.55rem, 4.2vw, 2rem);
  font-weight: 800;
  margin: 6px 0 4px;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,163,0.18);
  background: rgba(0,255,163,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.link-arrow:hover {
  color: var(--accent-hover);
  background: rgba(0,255,163,0.10);
  border-color: rgba(0,255,163,0.42);
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.62), 0 0 26px rgba(0, 255, 163, 0.10);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn-hero {
  padding: 18px 40px;
  font-size: 1.08rem;
  border-radius: 16px;
}

.btn:active {
  transform: translateY(1px);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px rgba(0, 255, 163, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 163, 0.4); }
  100% { box-shadow: 0 0 20px rgba(0, 255, 163, 0.2); }
}

.btn-primary {
  background: linear-gradient(135deg, #00ffa3 0%, #00c77d 100%);
  color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 32px rgba(0,0,0,0.55), 0 0 28px rgba(0, 255, 163, 0.18);
  border: 1px solid rgba(0, 255, 163, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 42px rgba(0,0,0,0.6), 0 0 34px rgba(0, 255, 163, 0.26);
  border-color: rgba(255,255,255,0.55);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,255,163,0.06) inset;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,255,163,0.30);
  box-shadow: 0 14px 42px rgba(0,0,0,0.6), 0 0 22px rgba(0,255,163,0.12);
  transform: translateY(-1px);
}

.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.58;
  filter: saturate(0.85);
}

.btn.is-disabled,
.link-arrow.is-disabled {
  box-shadow: none;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Premium Button Special */
#start-application-btn {
  background: #369a84;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 20px rgba(54, 154, 132, 0.4);
  font-weight: 700;
  text-transform: none;
  font-size: 1.1rem;
  letter-spacing: normal;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  padding: 18px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#start-application-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

#start-application-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(54, 154, 132, 0.6);
  background: #3bb096;
}

#start-application-btn:hover::after {
  transform: translateX(100%);
}

/* Content Card (General) */
.content-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(24px, 3.2vw, 44px);
  box-shadow: var(--shadow-card);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 120px;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 0;
}

.content-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,255,163,0.35), rgba(98,140,255,0.20), rgba(255,255,255,0.10));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.content-card > * {
  position: relative;
  z-index: 1;
}

.content-card:hover {
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.15);
}

.content-card:hover::after {
  opacity: 0.95;
}

.content-card h1,
.content-card h2,
.content-card h3 {
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.02em;
}

.content-card h1 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.1; }
.content-card h2 { font-size: clamp(1.35rem, 2.3vw, 1.9rem); line-height: 1.15; }
.content-card h3 { font-size: 1.12rem; line-height: 1.25; }

/* Bonus Grid Redesign */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  margin-bottom: 60px;
}

.bonus-meta-bar {
  margin: 14px auto 34px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14,16,20,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255,255,255,0.62);
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.bonus-meta-item {
  color: rgba(255,255,255,0.70);
}

.bonus-meta-count {
  color: rgba(255,255,255,0.92);
}

.bonus-meta-sep {
  opacity: 0.35;
}

.bonus-meta-ad {
  color: rgba(255,255,255,0.78);
}

.bonus-meta-bar > * {
  position: relative;
  z-index: 1;
}

.bonus-meta-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from 210deg, rgba(255,255,255,0.10), var(--accent-glow), rgba(255,255,255,0.06), var(--accent-glow), rgba(255,255,255,0.10));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.bonus-card {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), rgba(10,10,10,0.45));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 138, 116, 0.45);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 450px;
  width: 100%;
  text-decoration: none; /* Ensure no underline if it's an anchor */
  color: inherit; /* Ensure text color is preserved */
  cursor: pointer;
}
.bonus-card.featured {
  border-color: rgba(45, 138, 116, 0.45);
  box-shadow: var(--shadow-card);
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), rgba(10,10,10,0.45));
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 0;
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,255,163,0.38), rgba(98,140,255,0.18), rgba(255,255,255,0.10));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.bonus-card > * {
  position: relative;
  z-index: 1;
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 138, 116, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(45, 138, 116, 0.15);
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), rgba(10,10,10,0.5));
}

.bonus-card:hover::before {
  opacity: 0.5;
}

.bonus-card:hover::after {
  opacity: 0.95;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.new-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, #3aa88d 0%, #1a3a32 100%);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 18px rgba(45,138,116,0.35);
}

.bonus-logo {
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bonus-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.bonus-card:hover .bonus-logo {
  transform: scale(1.05) rotate(-3deg);
}

.bonus-rating {
  color: #fbbf24;
  letter-spacing: 4px;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

.bonus-content {
  position: relative;
  z-index: 1;
}

.bonus-content h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0, 255, 163, 0.20);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.bonus-offer {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #e0e0e0;
  line-height: 1.4;
}

.bonus-offer .highlight {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3rem;
  text-shadow: 0 0 20px rgba(45, 138, 116, 0.4);
}

.bonus-terms {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
}

.bonus-features {
  list-style: none;
  margin-bottom: 36px;
}

.bonus-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  color: #d0d0d0;
  font-weight: 500;
}

.bonus-features li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 900;
  background: rgba(45, 138, 116, 0.15);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  top: 2px;
}

.bonus-action {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.bonus-action .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--accent) 0%, #3aa88d 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(45, 138, 116, 0.3);
}

.bonus-action .btn:hover {
  box-shadow: 0 8px 30px rgba(45, 138, 116, 0.5);
  transform: translateY(-2px);
}

.terms-link {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 16px;
  opacity: 0.75;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.terms-link:hover {
  opacity: 1;
  border-color: rgba(0,255,163,0.25);
  background: rgba(0,255,163,0.06);
}

.terms-link-action {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-decoration-color: rgba(0,255,163,0.38);
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.terms-link-action:hover,
.terms-link-action:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.bonus-card-lodur,
.bonus-card-wide {
  max-width: 980px;
  padding: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}

.bonus-lodur-aside {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.bonus-lodur-logo {
  width: 150px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,0.45));
}

.bonus-lodur-rating {
  display: grid;
  gap: 4px;
  text-align: center;
}

.bonus-lodur-stars {
  color: #fbbf24;
  letter-spacing: 4px;
  font-size: 0.95rem;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.25));
}

.bonus-lodur-score {
  font-weight: 850;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.01em;
}

.bonus-lodur-main {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-lodur-title {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.96);
}

.bonus-lodur-sub {
  margin-top: 6px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.84);
  letter-spacing: -0.01em;
}

.bonus-lodur-accent {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  font-weight: 900;
}

.bonus-lodur-note {
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

.bonus-lodur-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,16,20,0.30);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: 0.85rem;
}

.swish-logo {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, #6ee7ff, #628cff, #a855f7, #ff5bd6, #ffd166, #6ee7ff);
  box-shadow: 0 0 16px rgba(98,140,255,0.18);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 54%);
  mask: radial-gradient(circle, transparent 52%, #000 54%);
  flex: 0 0 auto;
}

.swish-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(98,140,255,0.18));
}

.bonus-pill.is-swish {
  border-color: rgba(98,140,255,0.22);
  box-shadow: 0 0 0 4px rgba(98,140,255,0.08), 0 0 26px rgba(98,140,255,0.18);
  background: radial-gradient(18px circle at 30% 25%, rgba(98,140,255,0.18), rgba(255,255,255,0.02) 62%), rgba(14,16,20,0.30);
  color: rgba(255,255,255,0.92);
}

.bonus-pill.is-swish .swish-logo-img {
  filter: drop-shadow(0 0 16px rgba(98,140,255,0.30));
}

.bonus-pill.is-swish:hover {
  border-color: rgba(98,140,255,0.35);
  box-shadow: 0 0 0 4px rgba(98,140,255,0.10), 0 0 34px rgba(98,140,255,0.26);
}

.bonus-lodur-actions {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.bonus-lodur-actions .btn {
  width: auto;
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.bonus-lodur-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-weight: 750;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.bonus-lodur-sep {
  opacity: 0.35;
}

.bonus-lodur-ad {
  color: rgba(255,255,255,0.70);
}

@media (max-width: 820px) {
  .bonus-card-lodur,
  .bonus-card-wide {
    grid-template-columns: 1fr;
  }

  .bonus-lodur-aside {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .bonus-lodur-rating {
    text-align: right;
  }
}

/* Frontpage preview */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.preview-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), rgba(10,10,10,0.3));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,138,116,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(45,138,116,0.12);
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.07), rgba(10,10,10,0.36));
}
.preview-title {
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.preview-text {
  color: var(--muted);
  font-size: 0.95rem;
}
.preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.preview-list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.preview-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.preview-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.preview-thumbs img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.preview-card:hover .preview-thumbs img:nth-child(1) { transform: translateY(-2px); }
.preview-card:hover .preview-thumbs img:nth-child(2) { transform: translateY(-4px); }
.preview-card:hover .preview-thumbs img:nth-child(3) { transform: translateY(-2px); }
.preview-card:hover .link-arrow { gap: 10px; }
@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .preview-grid { grid-template-columns: 1fr; }
  .preview-thumbs img { height: 56px; }
}

.month-section {
  margin-top: 12px;
}
.month-section.content-card {
  padding: 16px;
  border-radius: 16px;
}
.month-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin-top: 8px;
}
.month-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px;
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.05), rgba(10,10,10,0.28));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 92px;
}
.month-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45,138,116,0.4);
  box-shadow: 0 8px 22px rgba(0,0,0,0.55), 0 0 20px rgba(45,138,116,0.1);
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.07), rgba(10,10,10,0.36));
}
.month-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}
.month-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
}
.month-title {
  font-weight: 800;
  font-size: 0.92rem;
}
.month-sub {
  color: var(--muted);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .month-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
/* Premium Info Content */
.info-section {
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  margin-bottom: 44px;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.how-it-works-grid .bento-card {
  justify-content: flex-start;
  min-height: 280px;
}

.how-it-works-grid .bento-card > div:first-child {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  opacity: 1 !important;
  top: 18px !important;
  right: 18px !important;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-it-works-grid .bento-card:nth-child(1) { animation-delay: 0.1s; }
.how-it-works-grid .bento-card:nth-child(2) { animation-delay: 0.2s; }
.how-it-works-grid .bento-card:nth-child(3) { animation-delay: 0.3s; }

.text-highlight {
  color: var(--accent);
  font-weight: 600;
}

.text-accent {
  color: var(--accent);
}

.lede-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

.feature-block {
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.clean-list, .red-list, .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.95rem;
}

.clean-list li:last-child {
  border-bottom: none;
}

.red-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.red-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff4d4d;
  font-weight: bold;
}

.check-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.final-call {
  margin-top: 24px;
  padding: 20px;
  background: rgba(45, 138, 116, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(45, 138, 116, 0.1);
  text-align: center;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
}
.faq-q {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-a {
  color: var(--muted);
}

/* Result gallery */
.win-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.win-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
}
.win-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}
.win-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .win-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .win-item img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .win-gallery {
    grid-template-columns: 1fr;
  }
  .win-item img {
    height: 200px;
  }
}

/* Utilities */
.mb-10 { margin-bottom: 40px; }
.mb-6 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 16px; }
.mt-4 { margin-top: 16px; }
.mt-2 { margin-top: 8px; }
.italic { font-style: italic; }
.small { font-size: 0.9rem; }

/* Responsible Gaming Footer */
.responsible-gaming-footer {
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.responsible-gaming-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.rg-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.rg-logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.rg-logo-text:hover {
  opacity: 1;
}

.rg-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(900px circle at 20% 0%, rgba(0,255,163,0.09) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(800px circle at 85% 10%, rgba(98,140,255,0.08) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(6,7,10,0.0) 0%, rgba(6,7,10,0.86) 14%, rgba(4,5,9,1) 100%);
  padding: 84px 0 38px;
  margin-top: 110px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: 26px 28px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(520px circle at 0% 0%, rgba(0,255,163,0.09) 0%, rgba(0,0,0,0) 48%),
    radial-gradient(520px circle at 100% 0%, rgba(98,140,255,0.08) 0%, rgba(0,0,0,0) 48%),
    linear-gradient(180deg, rgba(255,255,255,0.028) 0%, rgba(255,255,255,0.012) 100%);
  box-shadow: 0 18px 55px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,255,163,0.05), transparent 28%, transparent 72%, rgba(98,140,255,0.05));
  pointer-events: none;
  opacity: 1;
}

.footer-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand-block .brand-mark {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.32),
    0 0 0 4px rgba(0,255,163,0.06);
}

.footer-brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.footer-brand-block .brand-text {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  font-weight: 850;
  background: linear-gradient(90deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.footer-social-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-social-row a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.footer-social-row a:hover {
  color: #fff;
  border-color: rgba(0,255,163,0.26);
  background: rgba(0,255,163,0.08);
  box-shadow: 0 0 0 4px rgba(0,255,163,0.06);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  position: relative;
  z-index: 1;
}

.footer-bottomrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.footer-legal-row {
  display: flex;
  gap: 0;
  color: rgba(255,255,255,0.60);
  font-size: 0.88rem;
  font-weight: 500;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal-row span,
.footer-legal-row a {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-legal-row a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-row a:hover {
  color: #fff;
}

.footer-legal-sep {
  padding: 0 10px !important;
  color: rgba(255,255,255,0.28) !important;
}

.copyright {
  color: rgba(255,255,255,0.46);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}



/* Application Form */
.application-form {
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
  padding: 40px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-progress {
  margin-bottom: 32px;
}

.progress-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.4s ease;
}

.progress-text {
  text-align: right;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.form-question {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.3;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.2s;
}

.radio-option:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.radio-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}

.option-content {
  display: flex;
  flex-direction: column;
}

.option-title {
  font-weight: 500;
  color: #e0e0e0;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.form-actions .next-step {
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(45, 138, 116, 0.3);
  letter-spacing: 0.02em;
}

.form-actions .next-step:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 138, 116, 0.5);
}

.form-actions .back-step {
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-actions .back-step:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 10px 20px;
  transition: color 0.2s;
  font-weight: 500;
}

.btn-text:hover {
  color: var(--text);
}

.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 168, 141, 0.4);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 18px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 2px rgba(45, 138, 116, 0.2);
}

.form-input::placeholder {
  color: var(--muted);
  opacity: 0.4;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 4px;
}

/* Success State */
.application-success {
  text-align: center;
  padding: 48px;
  background: var(--glass-card);
  border-radius: 20px;
  border: 1px solid rgba(45, 138, 116, 0.3);
  box-shadow: 0 0 40px rgba(45, 138, 116, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 138, 116, 0.2);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

/* Policy Page */
.policy-section {
  margin-bottom: 24px;
  text-align: left;
}

.policy-section h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.policy-section p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.policy-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--muted);
}

.policy-section li {
  margin-bottom: 4px;
}

.philosophy-quote {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
}

.highlight-text {
  color: var(--accent);
  font-weight: 650;
}

.legal-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  opacity: 0.8;
}

/* Read More Button Styling */
#read-more-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 16px;
  width: auto;
  min-width: 280px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.01em;
}

#read-more-btn:hover {
  background: rgba(45, 138, 116, 0.15);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 138, 116, 0.15);
  text-shadow: 0 0 10px rgba(45, 138, 116, 0.4);
}

#read-more-btn svg {
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

#read-more-btn:hover svg {
  opacity: 1;
  stroke: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .headline { font-size: clamp(2.15rem, 9.8vw, 2.85rem); line-height: 1.05; letter-spacing: -0.045em; }
    .hero-small .headline { font-size: clamp(2.15rem, 9.8vw, 2.85rem); }
    .bonus-hero-card {
        width: 100%;
        max-width: 100%;
        padding: 18px;
        border-radius: 22px;
    }

    .bonus-hero-meta {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .bonus-hero-copy {
        align-items: center;
        text-align: center;
    }

    .bonus-hero-copy .headline,
    .bonus-hero-copy .lede {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .bonus-hero-inline-brand {
        justify-content: center;
        text-align: left;
    }

    .bonus-hero-inline-avatar {
        width: 42px;
        height: 42px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        margin-top: 20px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .btn-hero {
        width: 100%;
        max-width: 380px;
    }

    .lede {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.08rem;
        line-height: 1.6;
    }
    
    .nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .menu {
        flex-wrap: nowrap;
        gap: 14px;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .menu a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .premium-card {
        padding: 32px 20px;
    }
  /* Ensure read-more link is visible on mobile */
  #read-more-container {
      margin-top: 6px !important;
      margin-bottom: 12px !important;
  }
  #read-more-btn {
      min-width: 0;
      padding: 12px 20px;
      font-size: 0.95rem;
  }
    
    .premium-card h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 24px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 16px;
        align-items: stretch;
    }
    
    .form-actions button {
        width: 100%;
    }

    .footer-shell {
        padding: 20px 18px 18px;
        gap: 18px;
    }

    .footer-toprow,
    .footer-bottomrow {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-block {
        justify-content: center;
        text-align: center;
    }

    .footer-brand-copy {
        justify-items: center;
    }

    .footer-social-row,
    .footer-legal-row {
        justify-content: center;
    }

    .footer-legal-sep {
        padding: 0 8px !important;
    }

    .copyright {
        white-space: normal;
    }
}

/* Single Bonus Page */
.single-bonus-page {
  padding-top: 40px;
  padding-bottom: 20px;
}

.single-bonus-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 0;
}

.single-bonus-card {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.back-to-bonuses {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.back-to-bonuses:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(45, 138, 116, 0.15);
  transform: translateX(-4px);
  box-shadow: 0 4px 20px rgba(45, 138, 116, 0.15);
}

.back-to-bonuses-bottom {
  margin-bottom: 0;
  margin-top: 32px;
}

@media (max-width: 768px) {
    .single-bonus-page {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .single-bonus-wrapper {
        padding: 8px 0 16px;
        min-height: auto;
    }

    .single-bonus-card {
        max-width: 100%;
        padding: 20px 18px;
    }

    .single-bonus-card .bonus-header {
        margin-bottom: 12px;
    }

    .single-bonus-card .bonus-logo {
        width: 48px;
        height: 48px;
    }

    .single-bonus-card .bonus-content h3 {
        margin-bottom: 6px;
        font-size: 1.25rem;
    }

    .single-bonus-card .bonus-offer {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .single-bonus-card .bonus-offer .highlight {
        font-size: 1.05rem;
    }

    .single-bonus-card .bonus-terms {
        font-size: 0.8rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .single-bonus-card .bonus-features {
        margin-bottom: 16px;
    }

    .single-bonus-card .bonus-features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding-left: 26px;
    }

    .single-bonus-card .bonus-features li::before {
        width: 17px;
        height: 17px;
        font-size: 0.65rem;
    }

    .single-bonus-card .bonus-action .btn {
        padding: 14px;
        font-size: 1rem;
    }

    .single-bonus-card .terms-link {
        margin-top: 10px;
        font-size: 0.65rem;
    }

    .back-to-bonuses {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 12px;
    }

    .back-to-bonuses-bottom {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .single-bonus-page {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .single-bonus-wrapper {
        padding: 4px 0 12px;
    }

    .single-bonus-card {
        padding: 16px 14px;
    }

    .single-bonus-card .bonus-header {
        margin-bottom: 8px;
    }

    .single-bonus-card .bonus-logo {
        width: 40px;
        height: 40px;
    }

    .single-bonus-card .bonus-content h3 {
        margin-bottom: 4px;
        font-size: 1.15rem;
    }

    .single-bonus-card .bonus-offer {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .single-bonus-card .bonus-terms {
        font-size: 0.75rem;
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .single-bonus-card .bonus-features {
        margin-bottom: 12px;
    }

    .single-bonus-card .bonus-features li {
        font-size: 0.8rem;
        margin-bottom: 4px;
        padding-left: 22px;
    }

    .single-bonus-card .bonus-features li::before {
        width: 15px;
        height: 15px;
        font-size: 0.6rem;
    }

    .single-bonus-card .bonus-action .btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .back-to-bonuses {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 0;
    }

    .page-top-meta {
        gap: 10px;
        margin-bottom: 18px;
    }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.subnav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: transparent;
  margin-top: 18px;
  margin-bottom: 26px;
}
.subnav-inner {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 12px 12px;
  width: fit-content;
  margin: 24px auto 0;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, rgba(0,255,163,0.08), rgba(255,255,255,0.03) 55%, rgba(0,0,0,0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,255,163,0.06) inset;
  position: relative;
  isolation: isolate;
}
.subnav-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,255,163,0.35), rgba(98,140,255,0.22), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}
.subnav a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  font-weight: 750;
  font-size: 0.9rem;
  background: transparent;
  white-space: nowrap;
  line-height: 1.1;
  position: relative;
  z-index: 0;
}
.subnav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.subnav a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0,255,163,0.18) 0%, rgba(98,140,255,0.14) 100%);
  border-color: rgba(0,255,163,0.40);
  box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 0 24px rgba(0,255,163,0.12);
}
.subnav a.active::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(0,255,163,0.25), rgba(98,140,255,0.08) 55%, rgba(0,0,0,0) 75%);
  filter: blur(14px);
  opacity: 0.75;
  z-index: -1;
  pointer-events: none;
}

.subnav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(0,255,163,0.85), rgba(98,140,255,0.75));
  opacity: 0.9;
  pointer-events: none;
}

.scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.scroll-hint a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(45,138,116,0.3);
  border-radius: 999px;
  background: rgba(45,138,116,0.08);
  transition: all .2s;
}
.scroll-hint a:hover {
  color: #fff;
  background: rgba(45,138,116,0.18);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .subnav { top: 60px; }
  .subnav-inner { 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    padding: 9px 10px; 
    gap: 8px; 
    -webkit-overflow-scrolling: touch; 
    width: 100%;
    justify-content: flex-start;
  }
  .subnav-inner::-webkit-scrollbar { display: none; }
  .subnav a { 
    font-size: 0.9rem; 
    padding: 10px 14px; 
    line-height: 1; 
    border-radius: 999px; 
    background: transparent; 
    border-color: transparent;
  }
}
