:root {
  --teal: #15b8b1;
  --teal-dark: #087a76;
  --aqua: #92e6df;
  --gold: #f7b955;
  --ember: #f06f2f;
  --midnight: #061211;
  --charcoal: #162927;
  --ink: #172321;
  --ash: #657371;
  --mist: #eef7f5;
  --cloud: #f7fbfa;
  --white: #ffffff;
  --line: rgba(22, 41, 39, 0.13);
  --light-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 90px rgba(6, 18, 17, 0.22);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cloud);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(247, 185, 85, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 10px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 18, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(22px);
}

.brand,
.brand img {
  display: inline-flex;
  align-items: center;
}

.site-header .brand,
footer .brand {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.brand .wordmark {
  width: clamp(140px, 14vw, 188px);
  height: auto;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 780;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--white);
}

.nav-cta,
.primary-button,
.secondary-button,
.signup-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 860;
}

.nav-cta,
.primary-button {
  color: #061211;
  background: linear-gradient(180deg, #ffe1a3, var(--gold));
  border: 1px solid rgba(255, 234, 185, 0.48);
  box-shadow: 0 18px 42px rgba(247, 185, 85, 0.24);
}

.nav-cta {
  padding: 0 18px;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero,
.audience-paths,
.ritual-flow,
.problem-solution,
.reliability-section,
.how,
.ai,
.benefits,
.science,
.app-demo,
.faq,
.download,
footer {
  padding: clamp(68px, 8vw, 118px) clamp(20px, 7vw, 96px);
}

.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(96px, 11vw, 132px);
  padding-bottom: clamp(76px, 8vw, 106px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 18, 17, 0.98), rgba(7, 27, 30, 0.92) 44%, rgba(17, 56, 54, 0.78)),
    linear-gradient(180deg, #061211 0%, #10201f 62%, #f7fbfa 100%);
}

#resonance-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}

.dawn-beam {
  position: absolute;
  inset: auto 0 -12% 42%;
  width: min(520px, 58vw);
  height: 82vh;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(247, 185, 85, 0.16), transparent),
    linear-gradient(180deg, transparent 0%, rgba(21, 184, 177, 0.2) 45%, rgba(247, 185, 85, 0.34) 100%);
  clip-path: polygon(45% 0, 58% 0, 82% 100%, 16% 100%);
  filter: blur(12px);
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  color: var(--white);
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.9;
  font-weight: 930;
}

.hero h1 span {
  display: block;
}

.hero-kicker,
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(235, 249, 247, 0.82);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.54;
  overflow-wrap: break-word;
}

.launch-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(235, 249, 247, 0.66);
  font-size: 14px;
  font-weight: 780;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  min-height: 670px;
  display: grid;
  place-items: center;
  align-content: center;
}

.ritual-portal {
  position: absolute;
  inset: 4% 5% auto auto;
  width: min(520px, 86%);
  height: 620px;
  border-radius: 999px 999px 24px 24px;
  background:
    linear-gradient(180deg, rgba(247, 185, 85, 0.32), rgba(21, 184, 177, 0.11) 44%, rgba(6, 18, 17, 0)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  box-shadow: inset 0 0 80px rgba(247, 185, 85, 0.18), 0 40px 140px rgba(21, 184, 177, 0.24);
  filter: saturate(1.1);
  opacity: 0.88;
}

.ritual-portal span {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 185, 85, 0.72), transparent);
  animation: portalPulse 4.8s ease-in-out infinite;
}

.ritual-portal span:nth-child(2) {
  bottom: 22%;
  animation-delay: 0.8s;
}

.ritual-portal span:nth-child(3) {
  bottom: 32%;
  animation-delay: 1.6s;
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  min-height: 540px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 250, 247, 0.92)),
    #ffffff;
  border: 9px solid #071211;
  border-radius: 42px;
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(26px);
  animation: phoneFloat 6.2s ease-in-out infinite;
}

.phone-top,
.phone-brand,
.wake-summary,
.pulse-line {
  position: relative;
  z-index: 1;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--midnight);
  font-weight: 850;
}

.phone-top i {
  width: 44px;
  height: 18px;
  border-radius: 999px;
  background: var(--midnight);
}

.phone-brand {
  margin-top: 36px;
}

.phone-brand img {
  display: block;
  width: min(234px, 100%);
  height: auto;
}

.wake-orbit {
  position: relative;
  height: 166px;
  margin: 22px 0;
}

.wake-orbit span {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 2px solid rgba(21, 184, 177, 0.3);
  border-radius: 50%;
  animation: breathe 4.8s ease-in-out infinite;
}

.wake-orbit span:nth-child(1) {
  width: 104px;
  height: 104px;
}

.wake-orbit span:nth-child(2) {
  width: 150px;
  height: 150px;
  animation-delay: 0.55s;
}

.wake-orbit span:nth-child(3) {
  width: 198px;
  height: 198px;
  animation-delay: 1.1s;
}

.wake-summary {
  padding: 18px;
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 18, 17, 0.09);
}

.wake-summary span,
.wake-summary small {
  color: var(--ash);
}

.wake-summary strong {
  display: block;
  margin: 6px 0;
  font-size: 42px;
}

.pulse-line {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 48px;
  margin-top: 20px;
  border-top: 3px solid rgba(146, 230, 223, 0.9);
}

.pulse-line i {
  width: 12px;
  height: 12px;
  margin-top: -27px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulseDot 2.8s ease-in-out infinite;
}

.pulse-line i:nth-child(2) { animation-delay: 0.15s; }
.pulse-line i:nth-child(3) { animation-delay: 0.3s; }
.pulse-line i:nth-child(4) { animation-delay: 0.45s; }
.pulse-line i:nth-child(5) { animation-delay: 0.6s; }
.pulse-line i:nth-child(6) { animation-delay: 0.75s; }

.sound-card {
  position: absolute;
  display: none;
  left: 50%;
  top: 38px;
  z-index: 3;
  width: min(250px, 48%);
  padding: 18px;
  color: var(--white);
  background: rgba(6, 18, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.sound-card span,
.sound-card small {
  color: rgba(255, 255, 255, 0.68);
}

.sound-card strong {
  display: block;
  margin: 6px 0;
  font-size: 28px;
}

.hero-conversion-card {
  position: relative;
  z-index: 3;
  width: min(460px, 92%);
  margin-top: 24px;
  padding: 20px;
  color: var(--white);
  background: rgba(6, 18, 17, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.hero-conversion-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-conversion-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.hero-conversion-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 7vw, 96px);
  color: var(--white);
  background: linear-gradient(90deg, #10201f, #0b3b38 55%, #6f4820);
}

.proof-band p {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-band strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
}

.audience-paths {
  background: #ffffff;
}

.ritual-flow,
.problem-solution,
.science,
.download {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.ritual-flow {
  display: block;
  background:
    linear-gradient(180deg, #f7fbfa 0%, #eef7f5 100%);
}

h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 900;
}

.section-heading {
  max-width: 930px;
  margin-bottom: 36px;
}

.section-heading p,
.copy-stack p,
.science-copy p,
.faq p,
.download p {
  color: #5c6866;
  font-size: 19px;
  line-height: 1.62;
}

.copy-stack p:first-child {
  margin-top: 0;
}

.path-grid,
.ritual-grid,
.steps,
.reliability-grid,
.ai-grid,
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.path-grid article,
.ritual-grid article,
.steps article,
.reliability-grid article,
.ai-grid article,
.quotes figure,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.path-grid article,
.ritual-grid article,
.steps article,
.reliability-grid article,
.ai-grid article {
  min-height: 260px;
  padding: 26px;
}

.path-grid span,
.ritual-grid span,
.steps span {
  color: var(--teal-dark);
  font-weight: 950;
}

.path-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 245, 0.92));
}

.path-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(21, 184, 177, 0.22);
  border-radius: 50%;
}

.path-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--charcoal);
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

h3 {
  margin: 24px 0 10px;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1.1;
}

.ritual-grid p,
.steps p,
.ai-grid p,
.quotes blockquote {
  color: #5b6765;
  line-height: 1.58;
}

.section-image,
.ai-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(18, 31, 30, 0.12);
}

.reliability-section {
  background: #f7fbfa;
}

.reliability-grid article {
  min-height: 300px;
  background: #ffffff;
}

.reliability-grid strong {
  color: var(--ember);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.reliability-grid h3 {
  margin-top: 16px;
}

.section-image {
  margin-top: 30px;
}

.benefits,
.faq,
.app-demo {
  background: #ffffff;
}

.app-demo {
  background:
    linear-gradient(180deg, #ffffff 0%, #edf7f5 100%);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.demo-phone {
  width: min(350px, 100%);
  margin: 0 auto;
  padding: 13px;
  background: #071211;
  border-radius: 46px;
  box-shadow: 0 28px 88px rgba(18, 31, 30, 0.24);
}

.demo-status {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.demo-status i {
  width: 54px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.demo-screen {
  min-height: 590px;
  padding: 22px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #f7fffe, #eff8f7 56%, #ffffff);
}

.demo-logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.demo-logo img {
  width: 58px;
  height: 58px;
}

.demo-logo strong {
  display: block;
  color: var(--charcoal);
  font-size: 30px;
  line-height: 1;
}

.demo-logo span {
  color: var(--ash);
  font-size: 15px;
  font-weight: 720;
}

.demo-wake {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(38, 48, 47, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.demo-wake.hidden {
  display: none;
}

.demo-wake > span {
  color: var(--ember);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-wake strong {
  display: block;
  margin: 12px 0;
  color: var(--charcoal);
  font-size: 48px;
  line-height: 0.92;
  font-weight: 950;
}

.demo-wake p,
.demo-wake blockquote {
  margin: 0;
  color: #667371;
  font-size: 18px;
  line-height: 1.35;
}

.demo-wake blockquote {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.demo-metrics b {
  display: grid;
  gap: 4px;
  place-items: center;
  min-height: 76px;
  padding: 10px 6px;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  font-size: 24px;
}

.demo-metrics small {
  color: var(--ash);
  font-size: 11px;
}

.demo-ratio {
  position: relative;
  height: 62px;
  margin-top: 22px;
  border-top: 3px solid var(--aqua);
}

.demo-ratio span {
  position: absolute;
  top: -9px;
  width: 15px;
  height: 15px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--teal);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.demo-ratio span.active {
  background: var(--ember);
  box-shadow: 0 0 0 10px rgba(240, 111, 47, 0.15);
  transform: scale(1.18);
}

.demo-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.demo-tabs button,
.demo-mode-grid button,
.demo-actions button {
  cursor: pointer;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.demo-tabs button {
  min-height: 42px;
  color: var(--ash);
  background: transparent;
}

.demo-tabs button.active {
  color: var(--teal-dark);
  background: rgba(21, 184, 177, 0.12);
}

.demo-controls {
  display: grid;
  gap: 20px;
}

.demo-controls h3 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 54px);
}

.demo-controls p {
  max-width: 720px;
  margin: 0;
  color: #5c6866;
  font-size: 19px;
  line-height: 1.55;
}

.demo-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.demo-mode-grid button {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px;
  text-align: left;
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid var(--line);
}

.demo-mode-grid button.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), #0b6864);
  border-color: transparent;
}

.demo-mode-grid strong {
  font-size: 27px;
}

.demo-mode-grid span {
  color: inherit;
  opacity: 0.74;
  font-size: 13px;
  font-weight: 800;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-actions button {
  min-height: 48px;
  padding: 0 18px;
  color: #061211;
  background: linear-gradient(180deg, #ffe1a3, var(--gold));
  box-shadow: 0 16px 38px rgba(247, 185, 85, 0.24);
}

#demo-status-text {
  padding: 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ai {
  color: var(--white);
  background:
    linear-gradient(180deg, #10201f 0%, #061211 100%);
}

.ai h2,
.ai h3 {
  color: var(--white);
}

.ai .section-heading p,
.ai-grid p {
  color: #d2dddb;
}

.ai-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ai-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.ai-grid h3 {
  margin-top: 0;
  font-size: 25px;
}

.ai-image {
  max-width: 860px;
  margin: 42px auto 0;
  border-color: rgba(255, 255, 255, 0.18);
}

.quotes figure {
  margin: 0;
  min-height: 240px;
  padding: 26px;
}

.quotes blockquote {
  margin: 0;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.32;
}

.quotes figcaption {
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.science {
  background: linear-gradient(180deg, #ffffff, #edf5f4);
}

.brand-card {
  min-height: 440px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.brand-card img {
  width: min(360px, 92%);
  height: auto;
}

.brand-card p {
  max-width: 460px;
  margin: 24px 0 0;
  color: #5c6866;
  font-size: 18px;
  line-height: 1.55;
}

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

.faq details {
  padding: 22px 24px;
}

.faq summary {
  color: var(--charcoal);
  cursor: pointer;
  font-size: 21px;
  font-weight: 880;
}

.faq p {
  max-width: 900px;
  margin-bottom: 0;
}

.download {
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, #061211 0%, #0b3f3c 52%, #8b5524 100%);
}

.download h2,
.download p {
  color: var(--white);
}

.signup-form {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.signup-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
}

.signup-form button {
  padding: 0 18px;
  color: #061211;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.signup-form small {
  display: block;
  margin-top: 10px;
  color: #e6fbfa;
}

footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  color: var(--white);
  background: var(--midnight);
}

footer p {
  margin: 0;
  color: #d8e4e2;
  font-size: 18px;
  line-height: 1.5;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes breathe {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(22px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes portalPulse {
  0%, 100% {
    opacity: 0.28;
    transform: translateY(10px) scaleX(0.78);
  }
  50% {
    opacity: 0.92;
    transform: translateY(0) scaleX(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: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-cinematic,
  .problem-solution,
  .demo-layout,
  .science,
  .download,
  footer,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .hero-cinematic {
    min-height: auto;
  }

  .hero-stage {
    min-height: 640px;
  }

  .ritual-grid,
  .path-grid,
  .steps,
  .reliability-grid,
  .ai-grid,
  .quotes,
  .demo-mode-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    max-width: 156px;
  }

  .brand .wordmark {
    width: 148px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .audience-paths,
  .ritual-flow,
  .problem-solution,
  .reliability-section,
  .how,
  .ai,
  .benefits,
  .science,
  .app-demo,
  .faq,
  .download,
  footer {
    padding: 56px 16px;
  }

  .hero-cinematic {
    padding-top: 104px;
    width: 100%;
    max-width: 100vw;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 46px;
    line-height: 1;
  }

  h2 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-subtitle {
    max-width: 34ch;
    width: auto;
    font-size: 18px;
  }

  .launch-note {
    max-width: 34ch;
  }

  .hero-actions,
  .signup-form div {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-stage {
    min-height: 600px;
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .ritual-portal {
    inset: 8% auto auto 50%;
    width: 300px;
    height: 540px;
    transform: translateX(-50%);
  }

  .hero-phone {
    width: min(292px, 100%);
    min-height: 500px;
    padding: 20px;
  }

  .wake-summary strong {
    font-size: 36px;
  }

  .sound-card {
    display: none;
  }

  .demo-phone {
    width: min(360px, calc(100vw - 32px));
  }

  .demo-screen {
    min-height: 590px;
    padding: 18px;
  }

  .demo-wake strong {
    font-size: 44px;
  }
}
