/* Local font faces */
@font-face {
  font-family: 'TomatoGrotesk';
  src: url('/public/TomatoGroteskExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TomatoGrotesk';
  src: url('/public/TomatoGroteskLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TomatoGrotesk';
  src: url('/public/TomatoGroteskRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TomatoGrotesk';
  src: url('/public/TomatoGroteskBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueLTPro';
  src: url('/public/HelveticaNeueLTProLt.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueLTPro';
  src: url('/public/HelveticaNeueLTProRoman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Dark-to-orange dusk gradient, matching hero reference */
  --bg: linear-gradient(180deg,rgba(8, 9, 14, 1) 0%, rgba(151, 64, 11, 1) 91%, rgba(177, 140, 104, 1) 100%);
  --panel: linear-gradient(135deg, #0a0a0a 0%, #1f1000 50%, rgba(255, 107, 0, 0.1) 100%);
  --ink: #ffffff;
  --muted: #cccccc;
  --border: rgba(255, 107, 0, 0.3);
  --border-subtle: rgba(255, 107, 0, 0.1);
  --ring: rgba(255, 107, 0, 0.2);
  --orange: #ff6b00;
  --orange-light: #ff8533;
  --orange-dark: #cc5500;
  --accent-color: #ff6b00;
  --accent-light: #ff8533;
  --accent-dark: #cc5500;
  --accent: linear-gradient(135deg, #ff6b00 0%, #ff8533 50%, #ffaa66 100%);
  --glass: rgba(255, 107, 0, 0.08);
  --glass-border: rgba(255, 107, 0, 0.15);
  --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.8), 0 8px 30px rgba(255, 107, 0, 0.3);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(255, 107, 0, 0.2);
  --metallic: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #b8b8b8 100%);
  /* Font stacks */
  --ff-display: 'TomatoGrotesk', 'HelveticaNeueLTPro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --ff-sans: 'HelveticaNeueLTPro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html, body { 
  height: 100%; 
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Bottom glow + subtle top vignette to echo the reference */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.site-frame {
  max-width: 95%;
  margin: 20px auto;
  padding: 32px 40px 48px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.site-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.8;
}

.site-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.05), transparent);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 0 0 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: var(--accent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.brand-mark-img { 
  width: 48px; 

  display: block; 
}

.nav-links { 
  display: flex; 
  gap: 32px; 
  justify-content: center; 
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { 
  color: var(--ink); 
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-button {
  justify-self: end;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--ink);
  border-radius: 16px;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.menu-button .chev { 
  opacity: 0.9; 
  transition: transform 0.3s ease;
}

.menu-button:hover .chev {
  transform: rotate(180deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 48px 0 32px;
  align-items: center;
  min-height: 70vh;
}

.hero-copy { 
  padding-top: 0;
  padding: 0 100px;
  position: relative;
  z-index: 5;
}

.title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 6.5vw, 67px);
  line-height: 0.95;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--ink);
  position: relative;
}

.title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

.subtitle {
  font-family: var(--ff-sans);
  font-size: clamp(17px, 4.2vw, 34px);
  font-weight: 300;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
  color: var(--muted);
  line-height: 1.3;
}

.cta-row { 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 24px; 
  align-items: center; 
  margin-top: 16px;
}

.btn {
  text-decoration: none;
  border-radius: 20px;
  padding: 18px 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  font-size: 11px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-family: var(--ff-display);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  color: #000000;
  background: var(--accent);
  box-shadow: var(--shadow-luxury);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 15px 40px rgba(255, 107, 0, 0.4);
  background: var(--orange-light);
  color: #000000;
}

.btn-secondary {
  color: var(--ink);
  background: var(--glass);
  border: 2px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
}

.hero-note {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1.4;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-badge {
 width: 90%;
  display: block;
  object-fit: contain;
  transform: rotate(15deg);
  
  pointer-events: none;
}

.hero-badge::before { content: none; }

.hero-image {
  position: absolute;
  top: -20px;
  right: -20px;
  transform: rotate(-12deg);
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 25px 60px rgba(0,0,0,0.4)) drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: rotate(-15deg) translateY(0px); }
  50% { transform: rotate(-15deg) translateY(-20px); }
}

/* Анимация парения для всех изображений */
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes floatingRotated {
  0%, 100% { transform: rotate(5deg) translateY(0px); }
  50% { transform: rotate(5deg) translateY(-15px); }
}

@media (min-width: 981px) {
  .title { font-size: 96px; }
  .subtitle { font-size: 48px; }
  .hero-art { height: 520px; }
  .hero-image { width: 480px; top: -20px; right: -20px; }
}

.scroll-hint {
  position: absolute;
  right: 32px;
  top: 56%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
  animation: fadeInOut 3s ease-in-out infinite;
  display: none;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.scroll-icon {
  width: 36px; 
  height: 36px; 
  border-radius: 12px; 
  border: 2px solid var(--border);
  position: relative; 
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-icon::after {
  content: ""; 
  position: absolute; 
  left: 50%; 
  top: 8px; 
  transform: translateX(-50%);
  width: 12px; 
  height: 12px; 
  border-left: 2px solid var(--gold); 
  border-bottom: 2px solid var(--gold); 
  transform: translateX(-50%) rotate(-45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) rotate(-45deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-45deg) translateY(4px); }
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.section-heading {
  margin: 120px 0 80px;
  font-size: clamp(45px, 9vw, 112px);
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  font-weight: 900;
  position: relative;
  text-align: left;
  line-height: 0.9;
}

.section-heading::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.8;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

/* Epic Full-Width Sections */
.epic-section {
  position: relative;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  margin: 0 -40px;
  overflow: hidden;
}

.epic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


.info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.info-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0px 60px;
  position: relative;
  text-align: left;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Vault header layout */
.vault-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.vault-image {
  height: 420px;
  width: auto;
  transform: rotate(15deg);
  vertical-align: middle;
  flex-shrink: 0;
  animation: floating 6s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 100%, transparent 20%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

.vault-title {
  margin: 0 !important;
  line-height: 0.9 !important;
  text-align: left;
  font-size: clamp(42px, 12vw, 105px) !important;
}

/* Eligibility image styling */
.eligibility-image {
  position: absolute;
  top: -1%;
  right: 2%;
  width: 34%;
  height: auto;
  z-index: 2;
  opacity: 0.9;
  transition: transform 0.3s ease-out;
  animation: floating 7s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 100%, transparent 20%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

/* Claims row styling */
.claim-row { display: none; }

/* Claims image styling */
.claims-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0.95;
  animation: floating 8s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 100%, transparent 20%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
  margin-left: 50px;
}

/* Automation two-column grid (40% / 60%) */
.automation-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.automation-left .automation-features {
  margin: 0;
  max-width: none;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

.info-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* Payouts two-column layout */
.payouts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.payouts-text {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

.payouts-card { 
  width: 100%;
  text-align: center;
}

.liquidity-card {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.liquidity-card-image {
  display: block;
  width: 45%;
  height: auto;
  margin: 18px auto 8px;
  transform: rotate(3deg);
  border-radius: 14px;
}

.liquidity-card-caption {
  padding: 26px 40px 50px;
  font-weight: 700;
  font-size: clamp(16px, 3.2vw, 22px);
}

.payouts-muted {
  padding: 10px 40px;
  text-align: center !important;
}

@keyframes pulse-glow {
  0%, 100% { 
    opacity: 0.3; 
    transform: translate(-50%, -50%) scale(0.8); 
  }
  50% { 
    opacity: 0.6; 
    transform: translate(-50%, -50%) scale(1.2); 
  }
}

.lead { 
  font-size: clamp(28px, 6vw, 50px); 
  font-weight: 800; 
  margin: 0 0 40px; 
  color: var(--ink);
  font-family: var(--ff-display);
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.muted { 
  margin: 40px 0 30px; 
  color: var(--muted); 
  font-size: clamp(11px, 2.5vw, 17px); 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  font-weight: 700;
  text-align: left;
  position: relative;
  font-family: var(--ff-sans);
}


.bullet-list { 
  padding: 0; 
  font-size: clamp(20px, 4.5vw, 34px); 
  color: var(--ink); 
  line-height: 1.8;
  list-style: none;
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.bullet-list li { 
  margin: 30px 0; 
  position: relative;
  padding-left: 60px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.bullet-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}

.bullet-list li:hover {
  opacity: 1;
  transform: translateX(10px);
  color: var(--ink);
}

.eligibility-list {
  margin: 60px 0; 
  padding: 0;
  color: var(--ink); 
  font-size: clamp(20px, 4.5vw, 34px);
  line-height: 1.8;
  list-style: none;
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.eligibility-list li { 
  margin: 30px 0;
  position: relative;
  padding-left: 60px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.eligibility-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}

.eligibility-list li:hover {
  opacity: 1;
  transform: translateX(10px);
  color: var(--ink);
}

.final-cta {
  margin: 80px 0 80px;
  padding: 80px 56px 100px;
  border-radius: 36px;
  border: 1px solid rgba(255, 148, 74, 0.28);
  background: linear-gradient(180deg, rgba(255, 125, 13, 0.18) 0%, rgba(214, 112, 30, 0.16) 55%, rgba(80, 40, 16, 0.14) 100%);
  backdrop-filter: blur(24px) saturate(115%);
  -webkit-backdrop-filter: blur(24px) saturate(115%);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.85), 0 30px 60px rgba(255, 107, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.final-cta::before {
  display: none; /* Remove the top line */
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 120%;
  height: 120%;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.final-line { 
  margin: 0 0 36px; 
  font-size: clamp(45px, 9vw, 112px); 
  letter-spacing: -0.02em; 
  font-family: var(--ff-display);
  font-weight: 900;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 148, 74, 0.25);
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-logo-wrapper {
  position: absolute;
  left: 10vw;
  bottom: -250%;
  transform: rotate(-10deg);
  z-index: 1;
}

.cta-logo {
  width: 20vw;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  animation: floating 6s ease-in-out infinite;
}

.cta-buttons { 
  display: flex; 
  gap: 24px; 
  justify-content: flex-end;
  flex: 1;
}

/* Elevated, epic buttons inside the final CTA */
.final-cta .btn {
  padding: 40px 80px;
  font-size: 34px;
  border-radius: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta .btn-primary {
  background: linear-gradient(180deg, #ff9a5a 0%, #ff7f34 50%, #ff6b00 100%);
  border: 2px solid #ff7f34;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.7), 0 12px 28px rgba(255, 107, 0, 0.35);
}

.final-cta .btn-primary:hover {
  transform: translateY(-6px) scale(1.04);
  background: linear-gradient(180deg, #ffad76 0%, #ff8e4d 50%, #ff761a 100%);
}

.final-cta .btn-secondary {
  background: rgba(255, 148, 74, 0.10);
  border: 2px solid rgba(255, 148, 74, 0.35);
  backdrop-filter: blur(12px);
}

.final-cta .btn-secondary:hover {
  background: rgba(255, 148, 74, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 6px 14px rgba(255, 107, 0, 0.25);
}

.final-cta .section-heading {
  margin: 0 0 60px 0;
  line-height: 1.1;
  padding: 0 20px;
}

.feature-card {
  position: relative;
  height: 280px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.feature-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 15px 40px rgba(255, 107, 0, 0.2);
  border-color: var(--border);
}

.card-pill {
  position: absolute;
  left: 20px; 
  top: 20px;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: clamp(13px, 2.5vw, 17px); 
  font-weight: 800;
  color: #000;
  background: var(--accent);
  border: none;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
  letter-spacing: 0.05em;
}

.card-body { 
  position: absolute; 
  inset: 0; 
  display: flex; 
  align-items: flex-end; 
  padding: 24px;
}

.card-text {
  margin: 0; 
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(17px, 3.5vw, 25px); 
  letter-spacing: 0.06em; 
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-text .stat { 
  font: 900 34px/1 'Playfair Display', serif; 
  letter-spacing: -0.02em;
  background: var(--accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 980px) {
  .site-frame {
    margin: 10px;
    padding: 24px;
    border-radius: 24px;
  }
  
  .hero { 
    grid-template-columns: 1fr; 
    gap: 24px;
    min-height: 60vh;
  }
  
  .hero-art { 
    order: -1; 
    height: 300px; 
  }
  
  .hero-badge {
    width: 180px;
    height: 180px;
    font-size: 56px;
  }
  
  .hero-image {
    width: 280px;
  }
  
  .title {
    font-size: clamp(25px, 8vw, 45px);
    text-align: center;
  }
  
  .subtitle {
    font-size: clamp(13px, 5vw, 22px);
    text-align: center;
  }
  
  .scroll-hint { display: none; }
  
  .cards { 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .site-header {
    grid-template-columns: 1fr auto;
  }
  
  .final-line {
    font-size: clamp(25px, 8vw, 45px);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .final-cta .btn {
    padding: 30px 50px;
    font-size: 20px;
  }
  
  .final-cta {
    padding: 60px 30px 80px;
  }
  
  .final-cta .section-heading {
    font-size: clamp(22px, 7vw, 34px);
  }
  
  .cta-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .cta-logo-wrapper {
    position: static;
    transform: rotate(18deg);
    align-self: center;
  }
  
  .cta-logo {
    width: 50vw;
    max-width: 200px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

/* Epic Steps Styling */
.epic-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 80px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.epic-step {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  padding: 40px 0;
}

.epic-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  font-size: clamp(56px, 12vw, 140px);
  font-weight: 900;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 0.8;
  min-width: 200px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #ffe5d1 40%, #ff9a5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
  text-shadow: 0 10px 30px rgba(255, 107, 0, 0.25), 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(255, 125, 13, 0.35), rgba(255, 125, 13, 0.08) 50%, transparent 70%);
  filter: blur(18px);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.8;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border: 2px solid var(--border);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 3s ease-in-out infinite;
}

.epic-step:hover .step-number {
  transform: scale(1.04);
  text-shadow: 0 14px 40px rgba(255, 107, 0, 0.35), 0 4px 14px rgba(0, 0, 0, 0.45);
}

.epic-step:hover .step-number::after {
  opacity: 0.45;
}

@keyframes pulse-ring {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(0.8); 
    opacity: 0.3; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2); 
    opacity: 0.1; 
  }
}

.step-text {
  font-size: clamp(25px, 5vw, 29px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.step-subtext {
  display: block;
  font-size: clamp(20px, 4vw, 22px);
  font-weight: 300;
  color: var(--muted);
  margin-top: 16px;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Epic Description */
.epic-description {
  font-size: clamp(20px, 4.5vw, 34px);
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
  margin: 40px 0 60px;
  font-weight: 400;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Automation Features */
.automation-features {
  display: grid;
  gap: 40px;
  margin: 80px 0;
  max-width: 1000px;
  margin-left: auto;
  opacity: 1 !important;
  transform: none !important;
  margin-right: auto;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: var(--glass);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-point:hover::before {
  left: 100%;
}

.feature-point:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card);
  border-color: var(--border);
}

.feature-icon {
  font-size: 34px;
  min-width: 60px;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 0, 0.3));
}

.feature-text {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  opacity: 1 !important;
  transform: none !important;
}

/* Mobile Adjustments for Epic Sections */
@media (max-width: 980px) {
  .epic-section {
    min-height: auto;
    margin: 0 -24px;
    padding: 80px 0;
  }
  .payouts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .automation-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .epic-steps {
    gap: 60px;
  }
  
  /* Vault header responsive */
  .vault-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .vault-image {
    height: 240px;
  }
  
  .vault-title {
    text-align: center;
    font-size: clamp(34px, 8vw, 56px) !important;
  }
  
  /* Eligibility image responsive */
  .eligibility-image {
    width: 45%;
    top: 5%;
    right: 2%;
    opacity: 0.7;
  }
  
  /* Claims row responsive */
  .claim-row {
    padding: 0 24px;
    margin: 30px auto 0;
  }
  
  /* Claims image responsive */
  .claims-image {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .eligibility-image {
    display: none;
  }
  
  .claim-row {
    padding: 0 16px;
    margin: 20px auto 0;
  }
  
  .claims-image {
    width: 90%;
  }
  
  .epic-step {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }
  
  .step-number {
    min-width: auto;
  }
  
  .automation-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-point {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* Luxury Interactive Effects */
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Epic Scroll Animations - Soft and smooth */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Smooth fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Smooth slide up */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soft scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animate-in {
  opacity: 1;
}

/* Disable animations for corporate look */
.slide-left,
.slide-right,
.slide-bottom,
.fade-scale,
.text-reveal {
  opacity: 0;
}

.slide-left.animated,
.slide-right.animated,
.slide-bottom.animated,
.fade-scale.animated,
.text-reveal.animated {
  opacity: 1;
}

.slide-left {
  animation: slideInFromLeft 1s ease-out forwards;
  animation-play-state: paused;
}

.slide-left.animated {
  animation-play-state: running;
}

.slide-right {
  animation: slideInFromRight 1s ease-out forwards;
  animation-play-state: paused;
}

.slide-right.animated {
  animation-play-state: running;
}

.slide-bottom {
  animation: slideInFromBottom 0.8s ease-out forwards;
  animation-play-state: paused;
}

.slide-bottom.animated {
  animation-play-state: running;
}

.fade-scale {
  animation: fadeInScale 1.2s ease-out forwards;
  animation-play-state: paused;
}

.fade-scale.animated {
  animation-play-state: running;
}

.text-reveal {
  animation: textReveal 1.5s ease-out forwards;
  animation-play-state: paused;
}

.text-reveal.animated {
  animation-play-state: running;
}

/* Epic Section Specific Animations */
.epic-section:nth-child(odd) .section-heading {
  animation: slideInFromLeft 1.2s ease-out forwards;
  animation-delay: 0.2s;
}

.epic-section:nth-child(even) .section-heading {
  animation: slideInFromRight 1.2s ease-out forwards;
  animation-delay: 0.2s;
}

.epic-step:nth-child(odd) {
  animation: slideInFromLeft 1s ease-out forwards;
}

.epic-step:nth-child(even) {
  animation: slideInFromRight 1s ease-out forwards;
}

/* Luxury cursor effects */
.btn,
.feature-card,
.info-card,
.nav-links a,
.menu-button {
  cursor: pointer;
}

/* Premium glow effects on hover */
.title:hover {
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.6);
  transition: text-shadow 0.3s ease;
}

/* Luxury selection styles */
::selection {
  background: rgba(255, 107, 0, 0.3);
  color: #000;
}

::-moz-selection {
  background: rgba(255, 107, 0, 0.3);
  color: #000;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Luxury focus states */
.btn:focus,
.menu-button:focus,
.nav-links a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Additional premium touches */
body {
  cursor: default;
}

a, button {
  cursor: pointer;
}

/* Luxury loading state (if needed) */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.loading {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Elite Special Effects */

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.7;
  animation: float-particle 8s linear infinite;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: scale(1);
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(100px) scale(0);
    opacity: 0;
  }
}

/* Parallax Elements */
.parallax-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

.parallax-bg-1 {
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  border-radius: 50%;
  animation: parallax-float-1 15s ease-in-out infinite, floating 4s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
  mask-image: linear-gradient(to bottom, black 100%, transparent 20%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

.parallax-bg-2 {
  top: 60%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
  border-radius: 50%;
  animation: parallax-float-2 12s ease-in-out infinite reverse, floating 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255, 133, 51, 0.3);
  mask-image: linear-gradient(to bottom, black 100%, transparent 20%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

@keyframes parallax-float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(120deg); }
  66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes parallax-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-40px, -30px) rotate(180deg) scale(1.2); }
}

/* Morphing Background */
.morphing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 0, 0.02) 0%, transparent 50%);
  animation: morph-background 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes morph-background {
  0%, 100% {
    background: 
      radial-gradient(circle at 25% 25%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(255, 107, 0, 0.02) 0%, transparent 50%);
  }
  25% {
    background: 
      radial-gradient(circle at 75% 25%, rgba(255, 107, 0, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 25% 75%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
  }
  50% {
    background: 
      radial-gradient(circle at 75% 75%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 25% 25%, rgba(255, 107, 0, 0.02) 0%, transparent 50%);
  }
  75% {
    background: 
      radial-gradient(circle at 25% 75%, rgba(255, 107, 0, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 75% 25%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
  }
}

/* Epic Section Enhancements */
.epic-section {
  position: relative;
}

.epic-section .morphing-bg {
  z-index: 0;
}

.epic-section .parallax-element {
  z-index: 1;
}

.epic-section .info-row {
  z-index: 2;
}

/* Luxury Text Effects */
.luxury-text-glow {
  text-shadow: 
    0 0 10px rgba(255, 107, 0, 0.3),
    0 0 20px rgba(255, 107, 0, 0.2),
    0 0 30px rgba(255, 107, 0, 0.1);
  animation: text-glow-pulse 3s ease-in-out infinite;
}

@keyframes text-glow-pulse {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(255, 107, 0, 0.3),
      0 0 20px rgba(255, 107, 0, 0.2),
      0 0 30px rgba(255, 107, 0, 0.1);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(255, 107, 0, 0.5),
      0 0 40px rgba(255, 107, 0, 0.3),
      0 0 60px rgba(255, 107, 0, 0.2);
  }
}

/* Elite Hover Ripple Effect */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple-effect:hover::after {
  width: 300px;
  height: 300px;
}

/* Metallic Text Effects */
.metallic-text {
  background: var(--metallic);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 2px 2px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 107, 0, 0.4);
  position: relative;
}

.metallic-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}


/* ============================= */
/* Corporate, strict look (UX)   */
/* Keep background color intact  */
/* ============================= */

/* Global tone: remove glow, reduce decoration, increase type scale */
.site-frame {
  box-shadow: none;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-frame::before,
.site-frame::after,
.luxury-text-glow,
.metallic-text,
.final-cta::before,
.final-cta::after {
  animation: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

/* Navigation as a clean pill */

.nav-links a {
  color: #e5e7eb;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after { display: none; }

.nav-links a + a {
  position: relative;
}

.nav-links a + a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}

/* Buttons — solid and minimal */
.btn {
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.btn-primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-primary:hover {
  background: #181818;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero typography */
.title {
  font-family: var(--ff-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: none;
  font-size: clamp(45px, 10vw, 90px);
}

.title::after { display: none; }

.subtitle {
  color: #c9c9c9;
  font-weight: 400;
  font-size: clamp(20px, 5vw, 39px);
}

/* Section headings — very large and austere */
.section-heading {
  margin: 120px 0 48px;
  font-size: clamp(45px, 9vw, 112px);
  text-shadow: none;
}

.section-heading::before,
.section-heading::after { display: none; }

.lead {
  font-weight: 800;
  font-size: clamp(28px, 6vw, 50px);
  text-shadow: none;
  text-align: left;
}

.epic-description {
  color: #b5b5b5;
  font-size: clamp(20px, 4.5vw, 22px);
  text-align: left;
}

/* Lists — remove decorative bullets and motion */
.bullet-list li::before,
.eligibility-list li::before { content: none; }

.bullet-list li,
.eligibility-list li {
  padding-left: 0;
  opacity: 1;
  transform: none !important;
}

/* Feature points — flatter */
.feature-point {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  opacity: 1 !important;
  transform: none !important;
}

/* Final CTA — cleaner, same background stays */
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
  margin: 80px 0 80px;
  padding: 80px 56px 370px;
  overflow: visible;
}

.final-line {
  font-size: clamp(22px, 4.5vw, 67px);
  text-shadow: none;
}

/* Tone down motion for corporate look */
.parallax-element,
.particles,
.scroll-hint,
.ripple-effect::after,
.feature-card::before {
  animation: none !important;
}

/* Keep animations enabled but controlled */

/* Initial state for animated elements */
.hero-copy,
.hero-art,
.feature-card,
.info-card,
.section-heading,
.epic-step,
.bullet-list li,
.eligibility-list li,
.feature-point,
.lead,
.epic-description,
.final-cta,
.automation-features > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animated states */
.hero-copy.animated {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 1s ease-out;
}

.hero-art.animated {
  opacity: 1;
  transform: translateY(0);
  animation: scaleIn 1.2s ease-out;
}

.feature-card.animated,
.info-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-heading.animated,
.lead.animated,
.epic-description.animated {
  opacity: 1;
  transform: translateY(0);
}

.final-cta.animated {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 1.5s ease-out;
}

/* Stagger animation for list items */
.bullet-list li.animated,
.eligibility-list li.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Feature cards stagger */
.feature-card:nth-child(1) { --index: 0; }
.feature-card:nth-child(2) { --index: 1; }
.feature-card:nth-child(3) { --index: 2; }

/* Epic steps smooth appearance */
.epic-step {
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.epic-step.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation and header animation */
.site-header {
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.8s ease-out 0.2s forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card animation with hover preserve */
.feature-card {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: calc(var(--index, 0) * 0.1s);
}

.feature-card.animated {
  animation: fadeInScale 0.8s ease-out forwards;
}

/* Smooth transitions for all interactive elements */
.btn,
.menu-button,
.nav-links a {
  transition: all 0.3s ease-out;
}

/* Title and subtitle animations */
.title,
.subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease-out 0.5s forwards;
}

.subtitle {
  animation-delay: 0.7s;
}

/* CTA row animation */
.cta-row {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.9s forwards;
}

/* Smooth appearance for sections */
.epic-section {
  position: relative;
}

.epic-section > * {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Header button minimal */
.menu-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* Typographic refinements */
.title,
.section-heading,
.lead { 
  text-wrap: balance; 
}

.epic-description,
.bullet-list li,
.eligibility-list li { 
  text-wrap: pretty; 
}

/* List blocks — no bullets, separate cards */
.bullet-list,
.eligibility-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1000px;
  padding: 0;
}

.bullet-list li,
.eligibility-list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
      font-size: clamp(20px, 4.5vw, 22px);
    line-height: 1.25;
    font-weight: 700;
}

.bullet-list li:hover,
.eligibility-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

@media (max-width: 720px) {
  .bullet-list,
  .eligibility-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bullet-list li,
  .eligibility-list li {
    padding: 20px 22px;
    font-size: clamp(14px, 4vw, 25px);
  }
}
.creator-rewards-image {
  width: 140px;
  border-radius: 10px;
  margin-right: 20px;
  vertical-align: middle;
  transform: rotate(5deg);
}

/* Стили для элемента списка с creator rewards */
.bullet-list li:has(.creator-rewards-image) {
  display: flex;
  font-weight: 600;
  align-items: center;
  font-size: clamp(20px, 4vw, 28px); /* Увеличиваем в 2 раза относительно базового размера 20px, 4.5vw, 34px */
}