:root {
  --bg-deep: #0a0914;
  --bg-primary: #100f20;
  --bg-surface: #17162a;
  --bg-elevated: #1f1d36;
  --primary-300: #c4b5fd;
  --primary-400: #a78bfa;
  --primary-500: #8b5cf6;
  --primary-600: #7c3aed;
  --gold-300: #fde047;
  --gold-400: #facc15;
  --teal-400: #2dd4bf;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --border: rgba(196, 181, 253, 0.18);
  --glass: rgba(23, 22, 42, 0.64);
  --heading: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --body: "DM Sans", Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", "Fira Code", monospace;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.22), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(45, 212, 191, 0.13), transparent 28rem),
    linear-gradient(135deg, #0a0914 0%, #100f20 52%, #1a0a2e 100%);
  color: var(--neutral-100);
  font-family: var(--body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul {
  color: var(--neutral-300);
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--neutral-100);
}

h1 {
  max-width: 720px;
  font-size: 5.25rem;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 30;
  background: linear-gradient(90deg, var(--teal-400), var(--primary-400), var(--gold-300));
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.8);
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 18px rgba(196, 181, 253, 0.7);
  animation: starDrift 12s ease-in-out infinite alternate;
}

.star-a { left: 12%; top: 26%; }
.star-b { left: 72%; top: 18%; animation-delay: -4s; }
.star-c { left: 88%; top: 62%; animation-delay: -7s; }
.star-d { left: 26%; top: 78%; animation-delay: -2s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 9, 20, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.brand,
.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(250, 204, 21, 0.9) 0 10%, transparent 11%),
    conic-gradient(from 160deg, var(--teal-400), var(--primary-500), var(--gold-400), var(--teal-400));
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.52);
}

.nav-links {
  gap: 20px;
  color: var(--neutral-400);
  font-size: 0.9rem;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-cta {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.16);
  color: var(--primary-300);
  font-weight: 700;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  min-height: calc(100vh - 96px);
  padding: 90px 0 54px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold-400);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin: 0;
  color: var(--neutral-200);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
  color: white;
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.36);
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--neutral-200);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.trust-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 999px;
  color: var(--neutral-300);
  background: rgba(20, 184, 166, 0.07);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(10, 9, 20, 0.12), rgba(10, 9, 20, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 65% 20%, rgba(250, 204, 21, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(20, 184, 166, 0.08));
  box-shadow: var(--shadow);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(241, 245, 249, 0.18);
  border-radius: inherit;
}

.photo-placeholder div {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.photo-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-300);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  display: block;
  max-width: 360px;
  color: var(--neutral-100);
  font-size: 1rem;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  height: 550px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.08), rgba(8, 7, 18, 0.26)),
    radial-gradient(circle at 70% 20%, rgba(168, 85, 247, 0.18), transparent 24rem);
  pointer-events: none;
}

.content-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.content-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  animation: floatSoft 5.5s ease-in-out infinite;
}

.audio-card {
  position: absolute;
  right: -18px;
  bottom: 8px;
  width: min(380px, 88%);
  padding: 22px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(20, 184, 166, 0.08)),
    rgba(23, 22, 42, 0.78);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.audio-topline,
.phone-header {
  display: flex;
  justify-content: space-between;
  color: var(--neutral-400);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.audio-card h2 {
  margin-top: 12px;
  font-size: 2rem;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 54px;
  margin: 16px 0;
}

.waveform span {
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--primary-500), var(--teal-400));
  animation: wave 1.7s ease-in-out infinite;
}

.waveform span:nth-child(2n) { animation-delay: -0.3s; }
.waveform span:nth-child(3n) { animation-delay: -0.7s; }
.waveform span:nth-child(4n) { animation-delay: -1s; }

.player-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-row p {
  margin: 0;
  font-size: 0.92rem;
}

.play-button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--neutral-100);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--bg-primary);
}

.problem-section,
.method-section,
.experience-section,
.included-section,
.proof-section,
.faq-section,
.checkout-section {
  padding: 96px 0;
}

.split-grid,
.proof-section,
.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.night-list,
.proof-copy,
.experience-copy {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.04));
}

.night-list p,
.experience-copy p,
.proof-copy p {
  margin-top: 0;
}

.night-list li + li {
  margin-top: 10px;
}

.method-panel,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.method-panel {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.05));
}

.method-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-step,
.included-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(23, 22, 42, 0.58);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.method-step:hover,
.included-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.42);
  background: rgba(31, 29, 54, 0.72);
}

.method-step span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--teal-400);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.journey-section {
  padding: 108px 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 20, 0), rgba(26, 10, 46, 0.42), rgba(10, 9, 20, 0));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: item;
}

.timeline-item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(10, 9, 20, 0.42);
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.14), transparent);
  transform: translateY(-55%);
}

.timeline-item span {
  position: relative;
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold-300);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.timeline-item h3,
.timeline-item p {
  position: relative;
}

.phone-mock {
  display: grid;
  place-items: center;
  min-height: 610px;
}

.phone-screen {
  position: relative;
  width: min(340px, 100%);
  min-height: 600px;
  padding: 24px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 28%, rgba(139, 92, 246, 0.38), transparent 9rem),
    linear-gradient(180deg, #0a0914 0%, #1a0a2e 58%, #0d1b3e 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.session-orb {
  width: 188px;
  height: 188px;
  margin: 72px auto 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(253, 224, 71, 0.75) 0 8%, transparent 9%),
    conic-gradient(from 0deg, rgba(45, 212, 191, 0.2), rgba(139, 92, 246, 0.9), rgba(250, 204, 21, 0.58), rgba(45, 212, 191, 0.2));
  filter: blur(0.2px);
  animation: breathe 5s ease-in-out infinite;
}

.phone-screen h3 {
  text-align: center;
  font-size: 2rem;
}

.phone-screen p {
  text-align: center;
}

.mini-progress {
  height: 4px;
  margin: 28px 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.mini-progress span {
  display: block;
  width: 56%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-400), var(--teal-400));
}

.session-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.session-controls span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.session-controls button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--neutral-100);
}

.inline-photo {
  height: 250px;
  margin-top: 24px;
  border-radius: 24px;
}

.inline-photo img {
  object-position: 50% 52%;
}

.wide-photo {
  height: 480px;
  border-radius: 34px;
}

.wide-photo img {
  object-position: 50% 50%;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(23, 22, 42, 0.58);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--neutral-100);
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.checkout-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.42fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 0%, rgba(250, 204, 21, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(20, 184, 166, 0.06));
  box-shadow: var(--shadow);
}

.checkout-image {
  height: 320px;
  border-radius: 28px;
}

.checkout-image img {
  object-position: 50% 48%;
}

.checkout-card .button {
  grid-column: 1 / -1;
  width: fit-content;
}

.checkout-meta {
  display: grid;
  gap: 10px;
}

.checkout-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-meta span {
  color: var(--neutral-400);
}

.checkout-meta strong {
  color: var(--neutral-100);
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding: 118px 0 38px;
  border-top: 1px solid rgba(250, 204, 21, 0.1);
  background: #0a0914;
}

.footer-glow {
  position: absolute;
  left: 50%;
  bottom: -260px;
  width: min(980px, 82vw);
  height: 420px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.06);
  filter: blur(90px);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(130px, 0.5fr));
  gap: 44px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--neutral-100);
  font-weight: 700;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--neutral-500);
  font-size: 0.92rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 18px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 999px;
  color: var(--neutral-200);
  font-size: 0.76rem;
  font-weight: 600;
}

.footer-status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-300);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-column h4 {
  margin: 0 0 8px;
  color: rgba(241, 245, 249, 0.34);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a,
.footer-link-button {
  color: rgba(241, 245, 249, 0.58);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-bottom a:hover,
.footer-link-button:hover {
  color: var(--gold-300);
}

.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-transform: inherit;
  letter-spacing: inherit;
}

.footer-word {
  overflow: hidden;
  margin: 30px 0;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.22), rgba(241, 245, 249, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--heading);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 700;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(241, 245, 249, 0.32);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(720px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 24px;
  background: rgba(10, 9, 20, 0.95);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.cookie-consent__copy {
  align-self: center;
}

.cookie-consent__eyebrow {
  margin: 0 0 8px;
  color: var(--gold-300);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0 0 8px;
  color: var(--neutral-100);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.cookie-consent p {
  margin: 0;
  color: var(--neutral-400);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-consent__panel {
  display: grid;
  gap: 10px;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px;
  border: 1px solid rgba(250, 204, 21, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--neutral-100);
}

.cookie-consent__option input {
  accent-color: var(--gold-300);
  margin-top: 3px;
}

.cookie-consent__option strong,
.cookie-consent__option small {
  display: block;
}

.cookie-consent__option strong {
  font-size: 0.9rem;
}

.cookie-consent__option small {
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 0.76rem;
  line-height: 1.35;
}

.cookie-consent__option.is-disabled {
  opacity: 0.78;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-consent__actions button {
  min-height: 42px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--neutral-100);
  cursor: pointer;
  font: 700 0.78rem/1 var(--body);
  padding: 0 14px;
}

.cookie-consent__actions [data-cookie-accept] {
  border-color: rgba(250, 204, 21, 0.76);
  background: var(--gold-300);
  color: #18110b;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  0%, 100% { height: 16px; opacity: 0.5; }
  50% { height: 48px; opacity: 1; }
}

@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.92); box-shadow: 0 0 40px rgba(139, 92, 246, 0.26); }
  50% { transform: scale(1.04); box-shadow: 0 0 90px rgba(45, 212, 191, 0.18); }
}

@keyframes starDrift {
  from { transform: translate3d(0, 0, 0); opacity: 0.34; }
  to { transform: translate3d(18px, -28px, 0); opacity: 0.92; }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(0.8); opacity: 0.68; }
  50% { transform: scale(1.18); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-grid,
  .proof-section,
  .experience-section,
  .method-panel,
  .section-heading,
  .checkout-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: 4.25rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 560px;
  }

  .method-grid,
  .included-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .section-shell {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    padding: 46px 0 34px;
  }

  h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .hero-actions,
  .button,
  .checkout-card .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-photo {
    height: 460px;
    border-radius: 28px;
  }

  .audio-card {
    right: 0;
    bottom: 0;
    width: 94%;
  }

  .problem-section,
  .method-section,
  .experience-section,
  .included-section,
  .proof-section,
  .faq-section,
  .checkout-section {
    padding: 64px 0;
  }

  .method-grid,
  .included-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .method-step,
  .included-grid article {
    min-height: auto;
  }

  .phone-mock {
    min-height: auto;
  }

  .phone-screen {
    min-height: 540px;
  }

  .wide-photo {
    min-height: 360px;
  }

  .site-footer {
    padding-top: 78px;
  }

  .footer-main,
  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 54px;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-word {
    margin: 26px 0;
    font-size: clamp(4.2rem, 20vw, 7rem);
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions button {
    flex: 1 1 100%;
  }
}
