/* breathprayers.app · the app's own cream and gold, on the web. */

:root {
  --bg: #F8F4EB;
  --card: #FFFDF8;
  --inset: #F1EADB;
  --ink: #3A342B;
  --ink-72: rgba(58, 52, 43, .72);
  --ink-60: rgba(58, 52, 43, .6);
  --ink-55: rgba(58, 52, 43, .55);
  --ink-50: rgba(58, 52, 43, .5);
  --line: rgba(58, 52, 43, .09);
  --line-strong: rgba(58, 52, 43, .12);
  --gold: #B8934C;
  --gold-deep: #8B6B3D;
  --gold-soft: rgba(184, 147, 76, .18);
  --btn: #2C2418;
  --btn-ink: #FAF6F0;
  --phone: #1E1A14;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Instrument Sans', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; }
p { margin: 0; }

/* ── Type ───────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--rule::before,
.eyebrow--rule::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}
.wordmark img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(58, 52, 43, .2);
}
.wrap { max-width: 1120px; margin: 0 auto; }
.centre { text-align: center; }
.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-72);
  text-wrap: pretty;
}
.serif-italic { font-family: var(--serif); font-style: italic; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 64px;
  padding: 0 34px;
  border-radius: 22px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 55%), var(--btn);
  color: var(--btn-ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 10px 26px rgba(44, 36, 24, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover {
  color: var(--btn-ink);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 14px 30px rgba(44, 36, 24, .32);
}
.btn--small { height: 42px; padding: 0 18px; border-radius: 14px; font-size: 14px; gap: 9px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); }
.btn--light {
  background: linear-gradient(to bottom, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 55%), #E4DEC8;
  color: #131E29;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12), 0 10px 26px rgba(26, 64, 57, .22);
}
.btn--light:hover { color: #131E29; }
.btn svg { display: block; flex: none; }
.download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.download__note { font-size: 13px; color: var(--ink-55); }

/* ── Floating nav ───────────────────────────────────────── */
.nav {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 18px 20px 0;
  pointer-events: none;
  transform: translateY(-90px);
  opacity: 0;
  transition: transform .35s ease, opacity .3s ease;
}
.nav.is-shown { transform: none; opacity: 1; }
.nav__pill {
  pointer-events: auto;
  width: 100%;
  max-width: 1040px;
  height: 60px;
  border-radius: 30px;
  background: rgba(248, 244, 235, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 22px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 24px rgba(44, 36, 24, .1);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 20px 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #E6F0FA 0%, var(--bg) 70%);
  text-align: center;
}
.hero__brand {
  position: absolute;
  left: 0; right: 0; top: 0;
  display: flex;
  justify-content: center;
  padding: 26px 20px 0;
}
.hero__brand .wordmark { width: 100%; max-width: 1120px; }
.hero__copy { max-width: 880px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1;
  letter-spacing: -.01em;
  margin-top: 22px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; }
.hero__lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink-72);
  max-width: 620px;
  margin: 24px auto 0;
  text-wrap: pretty;
}
.hero .download { margin-top: 34px; }
.stage {
  position: relative;
  max-width: 1200px;
  height: 560px;
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
}
.hero__rule { border-top: 1px solid rgba(58, 52, 43, .1); }

/* Phones */
.phone {
  flex: none;
  width: 300px;
  height: 560px;
  border-radius: 44px 44px 0 0;
  background: var(--phone);
  padding: 10px;
  box-shadow: 0 30px 80px rgba(44, 36, 24, .26);
  z-index: 2;
}
.phone--side {
  width: 260px;
  height: 470px;
  border-radius: 44px;
  z-index: 1;
}
.phone--left { transform: rotate(-4deg) translateY(30px); }
.phone--right { transform: rotate(4deg) translateY(30px); }
.phone--full { height: 600px; border-radius: 44px; }
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: var(--bg);
}
.phone__notch {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  border-radius: 12px;
  background: var(--phone);
}
.phone__scene,
.phone__breath {
  position: absolute;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}
.phone__scene { top: 0; height: 100%; }
.phone__breath { top: 20px; height: 150%; animation: bpBreathePhone 12s ease-in-out infinite; }
.phone__breath--still { top: -5%; animation: bpBreathe 8s ease-in-out infinite 2s; }
.phone__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 62px 22px 26px;
}
.phone__eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  opacity: .7;
}
.phone__phrase {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  margin-top: 12px;
}
.phone__cycle { position: relative; height: 120px; width: 100%; margin-top: 70px; }
.phone__cycle > div { position: absolute; inset: 0; }
.phone__cycle .in { animation: bpIn 12s linear infinite; }
.phone__cycle .hold { animation: bpHold 12s linear infinite; opacity: 0; }
.phone__cycle .out { animation: bpOut 12s linear infinite; opacity: 0; }
.phone--trust { color: #1A4039; }
.phone--sunrise { color: #512D20; }
.phone--sunrise .phone__screen { background: #F2CABD; }
.phone--night { color: #EDE9DC; }
.phone__foot { margin-top: auto; font-size: 11px; opacity: .55; }

/* Library phone */
.library {
  position: absolute;
  inset: 0;
  padding: 56px 16px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.library h3 { font-size: 24px; }
.library .phone__eyebrow { color: var(--gold-deep); opacity: 1; margin-top: 2px; }
.library__row {
  position: relative;
  flex: none;
  height: 66px;
  border-radius: 14px;
  overflow: hidden;
}
.library__row img {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: .9;
}
.library__row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 26, 20, .55), rgba(30, 26, 20, .1));
}
.library__text {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #FCF8ED;
}
.library__text small {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #D9B56C;
}
.library__text span {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.1;
  margin-top: 3px;
}

/* Floating cards */
.float {
  position: absolute;
  top: 40px;
  width: 210px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(58, 52, 43, .14);
  padding: 16px 18px;
  text-align: left;
  animation: bpFloat 8s ease-in-out infinite;
}
.float--left { right: calc(50% + 470px); --r: -6deg; }
.float--right { left: calc(50% + 470px); top: 90px; --r: 5deg; animation-duration: 9s; animation-delay: 1s; padding: 14px 16px; }
.float__eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 2.2px; color: var(--gold-deep); }
.dots { display: flex; gap: 6px; margin-top: 10px; }
.dots span { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); }
.dots span.off { background: none; border: 1px solid rgba(58, 52, 43, .2); }
.float__note { font-size: 12px; color: var(--ink-55); margin-top: 10px; }
.toggle-row { display: flex; align-items: center; gap: 12px; }
.toggle-row > div { flex: 1; }
.toggle-row strong { display: block; font-size: 14px; font-weight: 600; }
.toggle-row small { display: block; font-size: 12px; color: var(--ink-55); margin-top: 2px; }
.switch {
  flex: none;
  position: relative;
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: var(--gold);
}
.switch::after {
  content: '';
  position: absolute;
  top: 3px; right: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--btn-ink);
}

/* Trust line */
.trust { padding: 36px 20px; }
.trust ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  font-size: 15px;
  color: var(--ink-72);
}
.trust li { display: flex; align-items: center; gap: 10px; }
.trust li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 110px 20px; }
.section h2 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1;
  margin: 18px auto 0;
  text-wrap: balance;
}
.section .lede { margin: 22px auto 0; max-width: 640px; }
.section--inset { background: var(--inset); }
.section--doom h2 { max-width: 820px; }

/* Doomscroll */
.doom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 64px;
}
.culprits { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.culprits__title { font-size: 26px; color: rgba(58, 52, 43, .7); }
.culprits__sub { font-size: 22px; color: var(--ink-60); margin-top: 4px; }
.tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 22px; max-width: 380px; }
.tile { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-60); }
.tile__art { position: relative; width: 92px; height: 92px; }
.tile__art::before {
  content: '';
  position: absolute;
  left: 6px; top: 7px;
  width: 92px; height: 92px;
  border-radius: 26px;
  background: var(--btn);
}
.tile__face {
  position: absolute;
  left: 0; top: 0;
  width: 92px; height: 92px;
  border-radius: 26px;
  border: 2.5px solid var(--btn);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tile__face::before {
  content: '';
  position: absolute;
  left: -30%; top: -40%;
  width: 90%; height: 90%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}
.tile__face > * { position: relative; }
.tile__glyph { font-weight: 600; color: #FCF8ED; line-height: 1; }
.tile--gram .tile__face { background: linear-gradient(135deg, #F9C46B 0%, #E8475F 50%, #8E3FB3 100%); }
.tile--gram .lens { width: 44px; height: 44px; border-radius: 13px; border: 3px solid #FCF8ED; }
.tile--gram .lens::before { content: ''; position: absolute; left: 10px; top: 10px; width: 18px; height: 18px; border-radius: 50%; border: 3px solid #FCF8ED; }
.tile--gram .lens::after { content: ''; position: absolute; right: 6px; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: #FCF8ED; }
.tile--tok .tile__face { background: #1F1B1B; }
.tile--tok .tile__glyph { font-size: 40px; text-shadow: 2px 2px 0 #4FD6D0, -2px -2px 0 #E64B7A; }
.tile--book .tile__face { background: #2F5FB4; }
.tile--book .tile__glyph { font-family: var(--serif); font-size: 56px; margin: 14px 0 0 8px; }
.tile--tube .tile__face { background: #D33A2C; }
.tile--tube .play { width: 50px; height: 36px; border-radius: 11px; background: #FCF8ED; display: flex; align-items: center; justify-content: center; }
.tile--tube .play::after { content: ''; width: 0; height: 0; border-left: 14px solid #D33A2C; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 3px; }
.tile--x .tile__face { background: #1F1B1B; }
.tile--x .tile__glyph { font-family: var(--serif); font-size: 52px; }
.tile--chat .tile__face { background: #4CB861; }
.tile--chat .bubble { width: 46px; height: 46px; border-radius: 50%; border: 3px solid #FCF8ED; }
.tile--chat .bubble::before { content: ''; position: absolute; left: -2px; bottom: -4px; width: 0; height: 0; border-right: 12px solid #FCF8ED; border-top: 12px solid transparent; transform: rotate(15deg); }
.tile--chat .bubble::after { content: ''; position: absolute; left: 13px; top: 11px; width: 16px; height: 18px; border-radius: 8px; border: 3px solid #FCF8ED; border-right-color: transparent; border-top-color: transparent; transform: rotate(-40deg); }
.tile--red .tile__face { background: #E8542A; }
.tile--red .face { width: 48px; height: 40px; }
.tile--red .face::before { content: ''; position: absolute; left: 0; bottom: 0; width: 48px; height: 34px; border-radius: 50%; background: #FCF8ED; }
.tile--red .face i { position: absolute; bottom: 12px; width: 7px; height: 7px; border-radius: 50%; background: #E8542A; z-index: 1; }
.tile--red .face i:first-child { left: 14px; }
.tile--red .face i:last-child { left: 27px; }
.tile--red .face::after { content: ''; position: absolute; left: 28px; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: #FCF8ED; box-shadow: -5px 5px 0 -2.5px #FCF8ED; }
.tile--in .tile__face { background: #1B6FB3; }
.tile--in .tile__glyph { font-size: 40px; letter-spacing: -1px; }
.tile--snap .tile__face { background: #F5D94A; }
.tile--snap .ghost { width: 44px; height: 46px; }
.tile--snap .ghost::before { content: ''; position: absolute; left: 4px; top: 0; width: 36px; height: 40px; border-radius: 18px 18px 8px 8px; background: #FCF8ED; border: 2.5px solid var(--btn); }
.tile--snap .ghost::after { content: ''; position: absolute; left: 0; bottom: 0; width: 44px; height: 14px; border-radius: 0 0 10px 10px; background: #FCF8ED; border: 2.5px solid var(--btn); border-top: none; }
.arrow { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gold-deep); padding: 0 8px; }
.arrow .eyebrow { font-size: 11px; letter-spacing: 2.2px; }
.result { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 300px; text-align: center; }
.result__art { position: relative; width: 132px; height: 132px; }
.result__art::before { content: ''; position: absolute; left: 8px; top: 9px; width: 132px; height: 132px; border-radius: 38px; background: var(--btn); }
.result__art img { position: absolute; left: 0; top: 0; width: 132px; height: 132px; border-radius: 38px; border: 1.5px solid var(--btn); object-fit: cover; }
.result__line { font-family: var(--serif); font-size: 28px; line-height: 1.1; }
.stats { display: flex; justify-content: center; gap: 40px; margin-top: 64px; }
.stats strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 56px; line-height: 1; color: var(--gold-deep); }
.stats span { display: block; font-size: 13px; color: var(--ink-60); margin-top: 6px; }

/* How it works */
.how { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 64px; text-align: left; align-items: center; }
.how__phone { display: flex; justify-content: center; }
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 32px;
}
.step__mark {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__mark--in::after { content: ''; width: 38px; height: 38px; border-radius: 50%; background: var(--gold-soft); }
.step__mark--hold::after { content: ''; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); border: 1.5px solid var(--gold); }
.step__mark--out::after { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); }
.step__mark--dots { border: none; gap: 6px; }
.step__mark--dots i { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.step .eyebrow { color: var(--ink-50); }
.step__phrase { font-family: var(--serif); font-size: 30px; line-height: 1.1; margin-top: 6px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--ink-72); margin-top: 10px; }

/* Rhythm */
.rhythm { padding: 0 20px 110px; }
.rhythm__head { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; align-items: end; margin-bottom: 48px; }
.rhythm__head h2 { margin: 18px 0 0; }
.rhythm__head .lede { margin: 0; max-width: none; }
.moments { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.moment { position: relative; height: 340px; border-radius: 24px; overflow: hidden; }
.moment img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; }
.moment::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30, 26, 20, .55), rgba(30, 26, 20, 0) 55%); }
.moment__text { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 1; color: #FCF8ED; }
.moment__text .eyebrow { font-size: 10px; letter-spacing: 2.2px; color: #D9B56C; }
.moment__text h3 { font-size: 26px; line-height: 1.1; margin-top: 8px; }
.moment__text p { font-size: 13px; line-height: 1.4; color: rgba(252, 248, 237, .8); margin-top: 8px; }
.moment--dawn { background: #F2CABD; }
.moment--field { background: #E8EFD4; }
.moment--water { background: #BDDAE4; }
.moment--night { background: #C4D7EA; }

/* Peace */
.peace {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #E6F0FA, #C4D7EA);
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 300px;
}
.peace__hills { position: absolute; left: 0; bottom: 0; width: 100%; height: 300px; }
.peace__tree { position: absolute; bottom: 150px; }
.peace__tree--left { left: 16%; width: 70px; height: 105px; }
.peace__tree--right { left: 74%; width: 54px; height: 81px; }
.peace__body { position: relative; max-width: 820px; color: #283A4C; padding: 24px; }
.peace .eyebrow { color: rgba(40, 58, 76, .7); }
.peace__verse { font-family: var(--serif); font-style: italic; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.1; margin-top: 20px; text-wrap: balance; }
.peace .lede { color: #283A4C; max-width: 560px; margin: 28px auto 0; }

/* Founder */
.founder { max-width: 720px; margin: 0 auto; }
.founder__text { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.35; margin-top: 22px; text-wrap: pretty; }
.founder__text p + p { margin-top: 22px; }
.founder__sign { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.founder__sign img { width: 48px; height: 48px; border-radius: 13px; border: 1px solid rgba(58, 52, 43, .25); }
.founder__sign strong { display: block; font-size: 15px; font-weight: 600; }
.founder__sign span { display: block; font-size: 13px; color: var(--ink-55); }

/* Final CTA */
.final { padding: 0 20px 110px; }
.final__card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #131E29;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.final__card > img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; opacity: .9; }
.final__body { position: relative; color: #E4DEC8; max-width: 640px; }
.final h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; margin: 0; }
.final .lede { color: rgba(228, 222, 200, .8); max-width: 460px; margin: 20px auto 0; }
.final .download { margin-top: 32px; }
.final .download__note { color: rgba(228, 222, 200, .6); }

/* Footer */
.footer { border-top: 1px solid rgba(58, 52, 43, .1); padding: 36px 20px 44px; }
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  font-size: 13px;
  color: var(--ink-60);
}
.footer .wordmark { font-size: 20px; gap: 10px; }
.footer .wordmark img { width: 26px; height: 26px; border-radius: 7px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__links a { color: rgba(58, 52, 43, .7); }

/* ── Text pages (privacy, terms, support) ───────────────── */
.page { padding: 60px 20px 110px; }
.page__brand { display: flex; justify-content: center; padding-bottom: 48px; }
.page__brand .wordmark { width: 100%; max-width: 720px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.05; margin-top: 16px; }
.prose h2 { font-size: 28px; line-height: 1.15; margin-top: 44px; }
.prose p, .prose li { font-size: 17px; line-height: 1.6; color: var(--ink-72); margin-top: 14px; }
.prose ul { padding-left: 22px; margin: 0; }
.prose li { margin-top: 8px; }
.prose .meta { font-size: 13px; color: var(--ink-55); margin-top: 12px; }
.prose mark {
  background: var(--gold-soft);
  color: var(--ink);
  padding: 0 4px;
  border-radius: 4px;
}
.prose .note {
  background: var(--inset);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-72);
  margin-top: 28px;
}

/* Contact form */
.form { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.form__hidden { display: none; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field span { font-size: 11px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--ink-55); }
.form__field input,
.form__field textarea {
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.form .btn { align-self: flex-start; border: 0; cursor: pointer; font-family: inherit; }
.form__note { font-size: 13px; color: var(--ink-55); margin: 0; }

/* ── Motion ─────────────────────────────────────────────── */
@keyframes bpBreathe { 0%, 100% { transform: translateY(0); } 34%, 52% { transform: translateY(-70px); } }
@keyframes bpBreathePhone { 0%, 100% { transform: translateY(0); } 34%, 52% { transform: translateY(-170px); } }
@keyframes bpIn { 0%, 30% { opacity: 1; } 34%, 96% { opacity: 0; } 100% { opacity: 1; } }
@keyframes bpHold { 0%, 34% { opacity: 0; } 38%, 48% { opacity: 1; } 52%, 100% { opacity: 0; } }
@keyframes bpOut { 0%, 52% { opacity: 0; } 56%, 94% { opacity: 1; } 98%, 100% { opacity: 0; } }
@keyframes bpFloat { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-10px) rotate(var(--r, 0deg)); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone__breath, .float, .phone__cycle > div { animation: none !important; }
  .phone__cycle .hold, .phone__cycle .out { display: none; }
  .float { transform: rotate(var(--r, 0deg)); }
  .nav { transition: none; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1400px) { .float { display: none; } }
@media (max-width: 900px) {
  .phone--side { display: none; }
  .stage { height: 520px; }
  .phone { width: 280px; height: 520px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 96px; }
  .section { padding: 80px 20px; }
  .stage { height: 460px; margin-top: 48px; }
  .phone { width: 250px; height: 460px; }
  .phone__cycle { margin-top: 48px; }
  .btn { height: 58px; padding: 0 26px; font-size: 17px; }
  .step { padding: 22px 22px; gap: 16px; }
  .step__phrase { font-size: 26px; }
  .stats { gap: 28px; }
  .stats strong { font-size: 44px; }
  .peace { padding-bottom: 240px; }
  .final__card { min-height: 400px; padding: 64px 20px; }
  .footer__row { justify-content: center; text-align: center; }
}
