/* ============================================
   ONDA — Home Page
   ============================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  overflow: hidden;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

/* Radial glow — very subtle orange bloom top-left */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--space-xl) + 80px);
  padding-bottom: var(--space-xl);
  max-width: 820px;
}

/* ── Hero Label ── */
.hero-label {
  opacity: 0;
  animation: fadeUp 700ms var(--ease) forwards;
  animation-delay: 0ms;
}

/* ── Hero Headline ── */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-display);
  color: var(--platinum);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 700ms var(--ease) forwards;
  animation-delay: 120ms;
}

/* ── Hero Body ── */
.hero-body {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 700ms var(--ease) forwards;
  animation-delay: 260ms;
}

.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.hero-body p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--platinum);
  opacity: 0.75;
  line-height: 1.8;
}

/* ── Hero CTA ── */
.hero-cta {
  opacity: 0;
  animation: fadeUp 700ms var(--ease) forwards;
  animation-delay: 400ms;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1200ms;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ── Brand Reframe Section ── */
.reframe {
  background: var(--black);
  border-top: 1px solid rgba(200, 200, 200, 0.06);
  position: relative;
}

.reframe-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.reframe-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--platinum);
  line-height: 1.2;
  margin-top: var(--space-sm);
}

.reframe-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: 0.4rem;
}

.reframe-body p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--platinum);
  opacity: 0.8;
}

/* ── Stakes Section ── */
.stakes {
  background: var(--black-alt);
  border-top: 1px solid rgba(200, 200, 200, 0.06);
  border-bottom: 1px solid rgba(200, 200, 200, 0.06);
}

.stakes-inner {
  max-width: 800px;
}

.stakes-copy {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--platinum);
  opacity: 0.8;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.stakes-close {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--orange);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── What You Get Section ── */
.get {
  background: var(--black);
  border-top: 1px solid rgba(200, 200, 200, 0.06);
}

.get-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--platinum);
  opacity: 0.7;
  max-width: 560px;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.get-list {
  list-style: none;
  border-top: 1px solid rgba(200, 200, 200, 0.07);
}

.get-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--space-sm);
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200, 200, 200, 0.07);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--platinum);
  transition: color 200ms ease;
}

.get-list li:hover {
  color: white;
}

.get-list .mark {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: inherit;
}

/* ── Pre-Footer CTA Band ── */
.cta-band {
  background: var(--orange);
  padding: var(--space-xl) 0;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
}

.cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.cta-line {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--black);
  opacity: 0.7;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .reframe-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-top: calc(var(--space-lg) + 80px);
  }

  .hero-headline {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .stakes-close {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .get-list li {
    font-size: 1rem;
  }
}
