/**
 * Premium layer — Plus Jakarta Sans + Lexend.
 * Nav/header tokens shared on home, store, and reviews; hero/home sections stay .page-home only.
 */

.site-premium-nav,
.page-home,
.page-store,
.page-reviews,
.page-learn-what {
  --font-main: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Lexend", "Plus Jakarta Sans", system-ui, sans-serif;
  --nav-font: var(--font-main);
  --brand: #00e67a;
  --brand-bright: #5dffb0;
  --brand-dim: #00b85f;
  --accent-champagne: rgba(212, 175, 120, 0.35);
  --ink: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.11);
  --line2: rgba(255, 255, 255, 0.06);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-elevated: rgba(10, 14, 12, 0.78);
  --r-xl: 28px;
  --r-lg: 18px;
  --shadow-soft: 0 32px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 80px rgba(0, 230, 122, 0.12);
  --max: var(--site-max, min(1720px, max(1120px, 90vw)));
}

body.site-premium-nav,
body.page-home,
body.page-store,
body.page-reviews,
body.page-learn-what {
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes reviewSpotIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Reviews: spotlight layout (v3) —— */
.page-reviews--spotlight .bg {
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(0, 230, 122, 0.11), transparent 55%),
    linear-gradient(180deg, #040605 0%, #0a0d0b 50%, #050706 100%);
}

.page-reviews--spotlight .bg::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 230, 122, 0.08), transparent 70%);
}

.page-reviews--spotlight .reviews-hero {
  position: relative;
  z-index: 1;
  margin: 12px auto 40px;
  max-width: 38rem;
  text-align: center;
}

.page-reviews--spotlight .reviews-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.page-reviews--spotlight .reviews-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.page-reviews--spotlight .reviews-lead a {
  color: var(--brand-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-reviews--spotlight .reviews-lead a:hover {
  color: #fff;
}

.page-reviews--spotlight .reviews-showcase {
  position: relative;
  z-index: 1;
}

.page-reviews--spotlight .reviews-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.page-reviews--spotlight .reviews-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #021208;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 55%, var(--brand-dim) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 230, 122, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-reviews--spotlight .reviews-discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 230, 122, 0.35);
}

.page-reviews--spotlight .reviews-status {
  margin: 0 0 24px;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.page-reviews--spotlight .reviews-status[hidden] {
  display: none;
}

.page-reviews--spotlight .reviews-grid--spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: min(100%, var(--site-max, var(--max, 1160px)));
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-reviews--spotlight .reviews-grid--spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: var(--max, 1160px);
  }
}

/* Spotlight card */
.page-reviews--spotlight .review-card--spotlight {
  --review-i: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  margin: 0;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 14, 0.85);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: reviewSpotIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--review-i) * 60ms);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-reviews--spotlight .review-card--spotlight:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 122, 0.22);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 230, 122, 0.08);
}

.page-reviews--spotlight .review-spot-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 20px;
}

.page-reviews--spotlight .review-spot-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.page-reviews--spotlight .review-spot-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.page-reviews--spotlight .review-spot-avatar--brand {
  object-fit: contain;
  padding: 6px;
  background: rgba(0, 0, 0, 0.4);
}

.page-reviews--spotlight .review-spot-meta {
  min-width: 0;
}

.page-reviews--spotlight .review-spot-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-reviews--spotlight .review-spot-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.page-reviews--spotlight .review-spot-stars[aria-hidden="true"] {
  /* decorative rating row */
}

.page-reviews--spotlight .review-spot-star-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.page-reviews--spotlight .review-spot-star {
  font-size: 0.85rem;
  color: var(--brand);
  opacity: 0.9;
}

.page-reviews--spotlight .review-spot-quote {
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

.page-reviews--spotlight .review-spot-quote .review-emoji {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 2px;
  vertical-align: -0.2em;
}

.page-reviews--spotlight .review-spot-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-reviews--spotlight .review-spot-date {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
  .page-reviews--spotlight .reviews-hero {
    margin-bottom: 28px;
  }

  .page-reviews--spotlight .review-spot-inner {
    padding: 20px 18px 18px;
  }

  .page-reviews--spotlight .review-spot-quote {
    font-size: 0.9375rem;
  }
}

.page-home main.wrap {
  max-width: var(--max);
}

.page-home .bg {
  background:
    radial-gradient(ellipse 140% 90% at 50% -20%, rgba(0, 230, 122, 0.12), transparent 50%),
    radial-gradient(1000px 560px at 8% 0%, rgba(0, 230, 122, 0.14), transparent 58%),
    radial-gradient(880px 500px at 100% 4%, rgba(0, 184, 95, 0.09), transparent 55%),
    radial-gradient(700px 420px at 50% 110%, rgba(0, 230, 122, 0.06), transparent 62%),
    linear-gradient(168deg, #010203 0%, #050807 38%, #030504 100%);
}

.page-home .bg::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.page-home .bg::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center;
}

.site-premium-nav .sticky-header,
.site-premium-nav main {
  position: relative;
  z-index: 1;
}

.site-premium-nav:not(.page-home) .bg {
  background: linear-gradient(168deg, #010203 0%, #050807 38%, #030504 100%);
}

/* —— Loading —— */
.page-home {
  --tube-color: var(--brand);
}

.page-home .loading-screen {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 230, 122, 0.06), transparent 55%), #030405;
}

.page-home .loading-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
}

.page-home .loading-text-accent {
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(120deg, #fff 0%, rgba(0, 230, 122, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .loading-percentage {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--brand);
}

/* —— Header / nav (all .site-premium-nav pages) —— */
.site-premium-nav .sticky-header {
  z-index: 50;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.site-premium-nav .topnav {
  background: rgba(3, 5, 4, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  font-family: var(--font-main);
}

.site-premium-nav .topnav-inner {
  padding: 12px 0;
  gap: 16px;
  align-items: center;
}

.site-premium-nav .wordmark-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.site-premium-nav .wordmark-block .wordmark {
  margin: 0;
}

.site-premium-nav .wordmark-slogan {
  margin: 0;
  padding: 0 0 0 2px;
  font-family: var(--font-main);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.site-premium-nav .wordmark-slogan em {
  font-style: normal;
  font-weight: 600;
  color: var(--brand, #00e67a);
}

.site-premium-nav .wordmark {
  gap: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  letter-spacing: 0;
  text-transform: none;
}

.site-premium-nav .wordmark:hover {
  border: none;
  background: transparent;
  box-shadow: none;
  opacity: 0.9;
}

.site-premium-nav .wordmark-logo {
  width: 32px;
  height: 32px;
  filter: none;
}

.site-premium-nav .wordmark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.site-premium-nav .wordmark-dot {
  color: var(--brand);
}

.site-premium-nav .nav-center.hub-tabs.hub-tabs--premium {
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-premium-nav .hub-tabs--premium a {
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
}

.site-premium-nav .hub-tabs--premium a:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.site-premium-nav .hub-tabs--premium a.is-active {
  color: #eafff4;
  border-color: rgba(0, 230, 122, 0.4);
  background: linear-gradient(180deg, rgba(0, 230, 122, 0.22) 0%, rgba(0, 230, 122, 0.08) 100%);
  box-shadow: 0 4px 20px rgba(0, 230, 122, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-premium-nav .hub-tabs--premium a.hub-tabs--discord {
  color: var(--muted);
}

.site-premium-nav .hub-tabs--premium a.hub-tabs--discord:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.site-premium-nav .nav-actions .btn {
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: 12px;
}

.site-premium-nav .nav-actions .btn.nav-cta {
  height: 38px;
  padding: 0 18px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand-dim) 100%);
  border-color: rgba(0, 230, 122, 0.45);
  color: #021208;
  box-shadow: 0 10px 28px rgba(0, 230, 122, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.site-premium-nav .nav-actions .btn.ghost {
  border-color: var(--line);
  background: var(--surface);
}

.site-premium-nav details.menu > summary.btn {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-premium-nav details.menu > summary.btn.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  padding: 0;
  gap: 0;
}

.site-premium-nav details.menu > summary.btn .menu-toggle-label {
  display: none;
}

.site-premium-nav details.menu > summary.btn .menu-toggle-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-premium-nav .menu-panel {
  border-radius: 14px;
  border-color: var(--line);
  background: rgba(8, 10, 9, 0.96);
  backdrop-filter: blur(12px);
  padding: 8px;
}

.site-premium-nav .menu-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 228px;
  max-width: 288px;
}

.site-premium-nav .menu-section-label {
  display: block;
  padding: 2px 10px 6px;
  font-family: var(--font-main);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.site-premium-nav .menu-section .menu-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-premium-nav .menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-premium-nav .menu-link:hover {
  border-color: rgba(0, 230, 122, 0.22);
  background: rgba(0, 230, 122, 0.07);
  color: #fff;
}

.site-premium-nav .menu-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand, #00e67a);
}

.site-premium-nav .menu-link-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-premium-nav .menu-section .menu-grid a.menu-link {
  height: auto;
  min-height: 44px;
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  letter-spacing: normal;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-premium-nav .menu-section .menu-grid {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-premium-nav .announce-inner {
  border-color: rgba(0, 230, 122, 0.15);
  background: rgba(0, 230, 122, 0.04);
  padding: 8px 14px;
}

.site-premium-nav .announce-inner::before {
  display: none;
}

.site-premium-nav .announce-badge {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-premium-nav .announce-text {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.8125rem;
}

/* —— Hero —— */
@keyframes homeHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeShineSweep {
  0%,
  100% {
    transform: translateX(-130%) skewX(-14deg);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(130%) skewX(-14deg);
    opacity: 0;
  }
}

.page-home .hero2 {
  padding: 20px 0 12px;
}

.page-home .hero2-incTitle {
  display: none;
}

.page-home .hero2-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(8, 12, 10, 0.82) 38%, rgba(3, 5, 4, 0.92) 100%);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(0, 230, 122, 0.06) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.page-home .hero2-panel::before {
  opacity: 0.85;
  background:
    radial-gradient(900px 320px at 0% 0%, rgba(0, 230, 122, 0.18), transparent 55%),
    radial-gradient(640px 240px at 100% 20%, rgba(0, 184, 95, 0.1), transparent 52%);
}

.page-home .hero2-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
}

.page-home .hero2-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-home .hero2-shine::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 45%;
  height: 180%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(0, 230, 122, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 65%,
    transparent 100%
  );
  animation: homeShineSweep 9s ease-in-out infinite;
}

.page-home .hero2-grid {
  position: relative;
  z-index: 1;
  padding: 22px 26px 20px;
  gap: 16px 28px;
  align-items: center;
}

.page-home .hero2-copy > * {
  animation: homeHeroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.page-home .hero2-copy > .hero2-eyebrow {
  animation-delay: 0.05s;
}

.page-home .hero2-copy > .hero2-slogan {
  animation-delay: 0.12s;
}

.page-home .hero2-copy > h1 {
  animation-delay: 0.2s;
}

.page-home .hero2-copy > .hero2-lead {
  animation-delay: 0.28s;
}

.page-home .hero2-copy > .hero2-how {
  animation-delay: 0.36s;
}

.page-home .hero2-copy > .hero2-meta {
  animation-delay: 0.44s;
}

.page-home .hero2-logoWrap {
  animation: homeHeroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
}

.page-home .hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 122, 0.28);
  background: rgba(0, 230, 122, 0.08);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-home .hero2-slogan {
  margin: 10px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.94);
  max-width: 26ch;
}

.page-home .hero2-slogan em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(120deg, #fff 10%, rgba(0, 230, 122, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .hero2 h1 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
  text-shadow: 0 0 60px rgba(0, 230, 122, 0.15);
}

.page-home .hero2-lead {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  max-width: 50ch;
}

.page-home .hero2-kicker {
  display: none;
}

.page-home .hero2-how {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  counter-reset: home-step;
}

.page-home .hero2-how span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px 6px 9px;
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  counter-increment: home-step;
}

.page-home .hero2-how span::before {
  content: counter(home-step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  padding: 4px 7px;
  border-radius: 8px;
  border: 1px solid rgba(0, 230, 122, 0.25);
  background: rgba(0, 230, 122, 0.1);
}

.page-home .hero2-how span:not(:last-child)::after {
  content: none;
}

.page-home .hero2-ctas {
  margin-top: 22px;
  gap: 10px;
}

.page-home .hero2-ctas .btn {
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 12px;
  height: 44px;
  padding: 0 20px;
}

.page-home .hero2-ctas .btn.primary {
  background: linear-gradient(180deg, #00f080 0%, var(--brand-dim) 100%);
  border-color: rgba(0, 230, 122, 0.4);
  color: #021208;
  box-shadow: 0 12px 32px rgba(0, 230, 122, 0.2);
}

.page-home .hero2-ctas .btn.primary:hover {
  box-shadow: 0 16px 40px rgba(0, 230, 122, 0.28);
}

.page-home .hero2-ctas .btn.ghost {
  border-color: var(--line);
  background: transparent;
}

.page-home .hero2-meta {
  margin-top: 14px;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.page-home .hero2-meta span {
  position: relative;
  padding: 5px 10px 5px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 230, 122, 0.18);
  background: linear-gradient(145deg, rgba(0, 230, 122, 0.1), rgba(0, 0, 0, 0.25));
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.page-home .hero2-meta span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 10px var(--brand);
}

.page-home .hero2-logoWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.page-home .hero2-logoRing {
  display: none;
}

.page-home .hero2-logoWrap::before {
  display: none;
}

/* Original hero float: gentle bob, tilt, and breathe (from site.css) */
.page-home .hero2-logo {
  position: relative;
  z-index: 1;
  width: min(168px, 42vw);
  height: auto;
  display: block;
  transform: translateZ(0);
  will-change: transform, opacity, filter;
  animation: heroLogoFloat 2.5s ease-in-out infinite;
  opacity: 0.95;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.55));
}

/* —— Section labels —— */
.page-home .section-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

/* —— Why section —— */
.page-home .section {
  padding-top: 8px;
}

.page-home .why {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(8, 12, 10, 0.9) 42%, rgba(4, 6, 5, 0.95) 100%);
  box-shadow: var(--shadow-soft), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-home .why::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at 100% 0%, rgba(0, 230, 122, 0.08), transparent 55%);
}

.page-home .why::before {
  display: none;
}

.page-home .why-grid {
  position: relative;
  z-index: 1;
  padding: 36px 40px;
  gap: 32px 44px;
}

.page-home .why-left h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-home .why-left p {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.page-home .why-chips span {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.page-home .why-guarantee {
  border-radius: var(--r-lg);
  padding: 16px 18px;
  border: 1px solid rgba(0, 230, 122, 0.12);
  background: linear-gradient(145deg, rgba(0, 230, 122, 0.06), rgba(0, 0, 0, 0.2));
}

.page-home .why-guarantee h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
}

.page-home .why-guarantee li {
  font-weight: 500;
  font-size: 0.8125rem;
}

.page-home .why-card {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(0, 230, 122, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.32));
  padding: 16px 18px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.page-home .why-card::before {
  display: none;
}

.page-home .why-card:hover {
  transform: none;
  border-color: rgba(0, 230, 122, 0.28);
  border-left-color: var(--brand-bright);
  background: linear-gradient(135deg, rgba(0, 230, 122, 0.08), rgba(0, 0, 0, 0.28));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.page-home .why-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.page-home .why-card p {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.page-home .why-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 230, 122, 0.2);
  background: rgba(0, 230, 122, 0.08);
}

.page-home .why-ic svg {
  stroke: var(--brand);
  width: 20px;
  height: 20px;
}

/* —— Footer —— */
.page-home .site-footer--bento {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .page-home .hero2-grid {
    padding: 18px 16px 16px;
    gap: 12px;
  }

  .page-home .hero2-logoWrap {
    padding: 4px 0 0;
  }

  .page-home .hero2-logo {
    width: min(140px, 38vw);
  }

  .site-premium-nav .nav-actions .btn.nav-cta {
    display: none;
  }

  .site-premium-nav details.menu > summary.btn.menu-toggle {
    width: 36px;
    min-width: 36px;
    padding: 0;
    gap: 0;
  }

  .site-premium-nav details.menu > summary.btn .menu-toggle-label {
    display: none;
  }

  .site-premium-nav details.menu > summary.btn .menu-toggle-icon {
    display: block;
  }

  .site-premium-nav .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-premium-nav .wordmark-name {
    font-size: 0.95rem;
  }

  .site-premium-nav .wordmark-slogan {
    display: none;
  }

  .page-home .hero2-slogan {
    max-width: none;
  }

  .page-home .hero2 h1 {
    max-width: none;
  }

  .page-home .why-grid {
    padding: 20px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero2-copy > *,
  .page-home .hero2-logoWrap,
  .page-home .hero2-shine::after {
    animation: none !important;
  }

  .page-home .hero2-logo {
    animation: none !important;
  }
}
