/* ===== HOME PAGE STYLES ===== */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 2rem 1.5rem;
  animation: fade-in-up 1s ease forwards;
}

.hero__tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.5rem 0 0.5rem;
}

.hero__title {
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.breathing-widget { margin-bottom: 1.5rem; }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid rgba(139,124,248,0.1);
  border-bottom: 1px solid rgba(139,124,248,0.1);
  padding: 1.1rem 0;
}

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stats-strip__value {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-serif);
}

.stats-strip__label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-strip__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(139,124,248,0.15);
}

.stats-strip__link {
  margin-left: 0.5rem;
}

@media (max-width: 480px) {
  .stats-strip__divider { display: none; }
  .stats-strip__inner   { gap: 1.2rem; }
}

/* ---- FEATURES ---- */
.features { background: var(--surface); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.feature-card--accent {
  border-color: rgba(92, 232, 212, 0.2);
}
.feature-card--accent:hover { border-color: rgba(92, 232, 212, 0.45); }

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

/* ---- BREATHING SECTION ---- */
.breathing-section { background: var(--bg); }

.breathing-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.breathing-outer {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(139, 124, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathing-inner {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(139, 124, 248, 0.2);
  transition: transform 4s ease-in-out, box-shadow 4s ease-in-out;
}

.breathing-inner.expand {
  transform: scale(1.3);
  box-shadow: 0 0 70px rgba(139, 124, 248, 0.4);
}

.breathing-inner span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.breathing-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#breatheCycle {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- WHY ASMR ---- */
.why-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.why-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.why-stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

.why-visual {
  position: relative;
}

.why-visual canvas {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

/* ---- CTA ---- */
.cta-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139, 124, 248, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-visual { display: none; }
  .why-stats { gap: 1rem; }
  .features__grid { grid-template-columns: 1fr; }
}
