/* Stasher Quietcation - Hero rewrite + end-of-page CTA band */

.section--hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 10vh, 140px);
  padding-bottom: clamp(80px, 14vh, 180px);
  background: transparent;
}

.section--hero .hero-waveform {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative;
  max-width: 980px;
}

.hero-eyebrow {
  color: var(--muted);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--brand-navy);
  margin: 16px 0 22px;
  max-width: 18ch;
}
.hero-headline strong { color: var(--scale-5); }

.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1.0rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 62ch;
  margin-bottom: 32px;
}
.hero-lead strong {
  color: var(--scale-5);
  font-weight: 600;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 540px;
  margin: 0 0 24px;
}
.hero-stat {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
.hero-stat-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1;
}
.hero-stat-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(15, 27, 51, 0.06);
  margin-top: 14px;
  overflow: hidden;
}
.hero-stat-bar-fill {
  display: block;
  height: 100%;
  width: var(--fill, 50%);
  background: var(--scale-5);
  border-radius: 3px;
  transition: width 900ms var(--ease-stately);
}
.hero-stat-bar-fill.quiet { background: var(--scale-1); }

.hero-second-beat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--brand-sky);
  padding: 8px 0 8px 16px;
  margin: 8px 0 28px;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section--hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-responsive),
              background var(--dur-fast) var(--ease-responsive),
              color var(--dur-fast) var(--ease-responsive);
  cursor: pointer;
  border: 0;
}
.section--hero .button-primary {
  background: var(--brand-navy);
  color: #fff;
}
.section--hero .button-primary:hover {
  background: var(--brand-navy-deep);
  transform: translateY(-1px);
}
.section--hero .button-ghost {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
}
.section--hero .button-ghost:hover {
  background: var(--brand-navy);
  color: #fff;
}

.hero-rhodes {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero-rhodes strong { color: var(--ink); }
.hero-rhodes-cta {
  color: var(--brand-sky);
  text-decoration: none;
  font-weight: 600;
}
.hero-rhodes-cta:hover { text-decoration: underline; }

/* End-of-page CTA band */
.cta-band {
  background: var(--brand-navy);
  color: #fff;
  padding: clamp(80px, 12vh, 160px) 0;
  text-align: center;
}
.cta-band .cta-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.cta-band .cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.0rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin: 0 auto 20px;
  color: #fff;
}
.cta-band .cta-sub {
  font-family: var(--font-body);
  font-size: clamp(1.0rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin: 0 auto 32px;
}
.cta-band .button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  color: var(--brand-navy);
  text-decoration: none;
  border: 0;
  transition: transform var(--dur-fast) var(--ease-responsive),
              background var(--dur-fast) var(--ease-responsive);
}
.cta-band .button-light:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .hero-stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
}
