/* ==========================================================================
   Hush — Nocturne · home page only
   ========================================================================== */

/* ---- Hero + breathing orb signature --------------------------------------- */
.hero { position: relative; padding-block: clamp(3rem, 9vw, 7rem) clamp(4rem, 10vw, 8rem); overflow: hidden; }

/* the breathing orb — a slow 4-7-8 pulse behind the headline */
.orb {
  position: absolute;
  top: 46%; left: 50%;
  width: min(72vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
              rgba(143, 166, 255, 0.55) 0%,
              rgba(183, 155, 255, 0.28) 34%,
              rgba(11, 16, 38, 0) 68%);
  filter: blur(6px);
  z-index: 0;
  animation: breathe 19s var(--ease) infinite;
  pointer-events: none;
}
.orb::after {
  content: ""; position: absolute; inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(143, 166, 255, 0.22);
  animation: breathe 19s var(--ease) infinite;
}
@keyframes breathe {
  0%             { transform: translate(-50%, -50%) scale(0.82); opacity: 0.7; } /* inhale start */
  21%            { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }   /* hold (4s) */
  58%            { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }   /* hold (7s) */
  100%           { transform: translate(-50%, -50%) scale(0.82); opacity: 0.7; } /* exhale (8s) */
}

.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin-inline: auto; }
.hero h1 { font-size: var(--step-4); font-weight: 500; margin-top: 1.4rem; max-width: 16ch; margin-inline: auto; }
.hero h1 em { font-family: var(--display); font-weight: 300; font-style: italic; letter-spacing: -0.01em; }
.hero__sub {
  color: var(--haze); font-size: var(--step-1); font-weight: 400;
  margin: 1.6rem auto 0; max-width: 30ch; line-height: 1.5;
}
.hero .stores { justify-content: center; margin-top: 2.4rem; }
.hero__meta { margin-top: 1.3rem; color: var(--haze-dim); font-size: var(--step--1); letter-spacing: 0.02em; }

/* ---- Section framing ------------------------------------------------------ */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section__head { max-width: 44ch; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__head h2 { font-size: var(--step-3); font-weight: 500; margin-top: 0.9rem; }
.section__head h2 em { font-family: var(--display); font-style: italic; font-weight: 300; }
.section__head p { color: var(--haze); margin-top: 1rem; font-size: var(--step-1); font-weight: 400; }

/* ---- Feature grid --------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.feature {
  background: linear-gradient(160deg, var(--ink-2), color-mix(in srgb, var(--ink-2) 60%, var(--ink)));
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--glow); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--glow) 16%, transparent);
  color: var(--glow); margin-bottom: 1.3rem;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--step-1); margin-bottom: 0.5rem; font-weight: 600; }
.feature p { color: var(--haze); font-size: var(--step-0); }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }

/* ---- Ritual / how it works (3 quiet steps) -------------------------------- */
.ritual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.ritual__step { border-top: 1px solid var(--ink-3); padding-top: 1.3rem; }
.ritual__num { font-family: var(--display); font-style: italic; font-size: var(--step-2); color: var(--glow-2); }
.ritual__step h3 { font-size: var(--step-1); margin: 0.6rem 0 0.5rem; font-weight: 600; }
.ritual__step p { color: var(--haze); font-size: var(--step-0); }
@media (max-width: 720px) { .ritual { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---- Stat strip ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; text-align: center; }
.stat { padding: 2rem 1rem; border: 1px solid var(--ink-3); border-radius: var(--radius); background: var(--ink-2); }
.stat__num { font-family: var(--display); font-style: italic; font-size: var(--step-3); color: var(--moon); }
.stat__num span { color: var(--warm); }
.stat__label { color: var(--haze); font-size: var(--step--1); margin-top: 0.4rem; letter-spacing: 0.02em; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }

/* ---- Closing CTA ---------------------------------------------------------- */
.cta-band {
  position: relative;
  text-align: center;
  border: 1px solid var(--ink-3);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(143,166,255,0.16), transparent 60%),
    var(--ink-2);
  overflow: hidden;
}
.cta-band h2 { font-size: var(--step-3); font-weight: 500; }
.cta-band h2 em { font-family: var(--display); font-style: italic; font-weight: 300; }
.cta-band p { color: var(--haze); margin: 1rem auto 2rem; max-width: 40ch; font-size: var(--step-1); font-weight: 400; }
.cta-band .stores { justify-content: center; }
