:root {
  --navy-950: #08152b;
  --navy-900: #0e1d36;
  --navy-800: #172b4c;
  --blue-700: #2f6fae;
  --blue-600: #4f92c5;
  --blue-100: #e8f2f9;
  --ivory: #faf8f4;
  --paper: #f4efe6;
  --white: #ffffff;
  --gold: #c6a45e;
  --gold-light: #e2cf9f;
  --ink: #172236;
  --muted: #667085;
  --line: #e4ded4;
  --success: #18794e;
  --error: #b42318;
  --shadow-sm: 0 12px 30px rgba(15, 31, 55, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 31, 55, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --font: "Heebo", "Noto Sans Hebrew", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #70b7e8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
  margin-inline: auto;
}

.center {
  text-align: center;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 60px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.section-lead {
  color: #536174;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(14, 29, 54, 0.08);
  box-shadow: 0 10px 30px rgba(14, 29, 54, 0.06);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-size: 1.2rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: auto;
}

.main-nav a {
  position: relative;
  color: #3e4d61;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: var(--blue-700);
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.login-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 4px;
}

.login-button {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid #c8d5e0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.login-button:hover {
  border-color: #9fb7ca;
  background: var(--white);
  transform: translateY(-1px);
}

.login-button-family {
  border-color: #c8ddea;
  background: var(--blue-100);
  color: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(14, 29, 54, 0.2);
}

.button-primary:hover {
  background: #162d50;
  box-shadow: 0 18px 36px rgba(14, 29, 54, 0.26);
}

.button-secondary {
  border-color: #cad8e4;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-900);
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 48px 0 60px;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(to top, rgba(228, 238, 245, 0.58), transparent);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -220px;
  left: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 184, 222, 0.32), rgba(128, 184, 222, 0));
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.7vw, 4.65rem);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #4b5d73;
  font-size: clamp(1.15rem, 2.3vw, 1.38rem);
  line-height: 1.75;
}

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

.hero-note {
  margin: 12px 12px 0 0;
  color: #728094;
  font-size: 0.82rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: #425166;
  font-size: 0.9rem;
  font-weight: 650;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-benefits span,
.check-list > li > span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #dcecf6;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
}

.hero-image-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(14, 29, 54, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(14, 29, 54, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.floating-note-top {
  top: 10%;
  right: -28px;
}

.floating-note-bottom {
  bottom: 9%;
  left: -24px;
  display: grid;
  gap: 0;
}

.floating-note-bottom span {
  color: var(--blue-700);
  font-size: 0.74rem;
}

.record-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 3px solid rgba(79, 146, 197, 0.25);
  border-radius: 50%;
  background: var(--blue-700);
  box-sizing: content-box;
}

.quick-proof {
  position: relative;
  z-index: 2;
  border-block: 1px solid #e1e8ee;
  background: rgba(255, 255, 255, 0.7);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 25px 24px;
  text-align: center;
}

.proof-grid > div:not(:last-child)::after {
  position: absolute;
  top: 25%;
  left: 0;
  width: 1px;
  height: 50%;
  background: #dce3e9;
  content: "";
}

.proof-grid strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.proof-grid span {
  color: #788599;
  font-size: 0.82rem;
}

.story-gap {
  background: var(--ivory);
}

.story-gap .section-lead {
  margin-bottom: 26px;
}

.soft-line {
  display: inline-block;
  margin: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: #edf3f6;
  color: #3f5266;
  font-weight: 720;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #dce6f0;
}

.section-dark::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 146, 197, 0.32), transparent 68%);
  content: "";
}

.section-dark h2 {
  color: var(--white);
}

.prompt-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
}

.prompt-grid > div:first-child p:last-child {
  max-width: 540px;
  color: #b9c7d7;
  font-size: 1.1rem;
}

.prompt-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.prompt-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #b8c8da;
  font-size: 0.82rem;
  font-weight: 750;
}

.prompt-card blockquote {
  min-height: 116px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 730;
  line-height: 1.45;
  transition: opacity 160ms ease, transform 160ms ease;
}

.prompt-card blockquote.changing {
  opacity: 0;
  transform: translateY(7px);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-weight: 760;
  cursor: pointer;
}

.steps {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 330px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 35px rgba(14, 29, 54, 0.05);
}

.step-card.featured {
  border-color: #c9dce9;
  background: #edf5f9;
  transform: translateY(-12px);
}

.step-number {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #a8b4c1;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 18px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
}

.mic-icon::before {
  width: 13px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 9px;
  content: "";
}

.mic-icon::after {
  position: absolute;
  width: 25px;
  height: 17px;
  margin-top: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-radius: 0 0 13px 13px;
  content: "";
}

.book-icon::before {
  width: 27px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 3px;
  content: "";
}

.step-card p {
  margin-bottom: 0;
  color: #687487;
}

.product {
  overflow: hidden;
  background: #eef3f6;
}

.product-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.check-list small {
  margin-top: 2px;
  color: #69788a;
  font-size: 0.86rem;
}

.phones-stage {
  position: relative;
  min-height: 650px;
}

.phones-stage::before {
  position: absolute;
  inset: 13% 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 146, 197, 0.25), transparent 67%);
  content: "";
}

.phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid #18202b;
  border-radius: 32px;
  background: #10151c;
  box-shadow: 0 24px 55px rgba(14, 29, 54, 0.24);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-front {
  z-index: 3;
  top: 28px;
  right: 30%;
  width: 292px;
  height: 602px;
}

.phone-back {
  z-index: 1;
  top: 92px;
  right: 1%;
  width: 250px;
  height: 516px;
  opacity: 0.96;
  transform: rotate(4deg);
}

.phone-small {
  z-index: 2;
  top: 128px;
  left: 0;
  width: 232px;
  height: 478px;
  transform: rotate(-4deg);
}

.audience {
  background: var(--ivory);
}

.audience-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.audience-card::before {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(79, 146, 197, 0.1);
  content: "";
}

.gift-card {
  background: var(--navy-900);
  color: #dbe5ef;
}

.gift-card h3 {
  color: var(--white);
}

.gift-card::before {
  background: rgba(198, 164, 94, 0.13);
}

.audience-mark {
  position: relative;
  display: inline-grid;
  min-width: 58px;
  min-height: 58px;
  margin-bottom: 40px;
  place-items: center;
  padding: 8px;
  border-radius: 18px;
  background: #e4f0f7;
  color: var(--blue-700);
  font-size: 0.83rem;
  font-weight: 850;
}

.gift-card .audience-mark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.audience-card p {
  max-width: 500px;
  color: #647386;
}

.gift-card p {
  color: #b9c7d7;
}

.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.gift-card a {
  color: var(--gold-light);
}

.keepsake {
  border-block: 1px solid #e1e7ec;
  background: #f1f5f7;
}

.keepsake-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.book-showcase {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
}

.book-showcase img {
  position: relative;
  width: min(100%, 560px);
  border: 1px solid rgba(14, 29, 54, 0.08);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(14, 29, 54, 0.18);
}

.book-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.book-points span {
  padding: 9px 15px;
  border: 1px solid #d2dde5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #536477;
  font-size: 0.84rem;
  font-weight: 720;
}

.faq {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.78fr 1.22fr;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading p:last-child {
  color: #697789;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 0 25px 48px;
  color: var(--navy-900);
  font-size: 1.06rem;
  font-weight: 780;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--blue-700);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  margin: -4px 0 24px;
  padding-left: 52px;
  color: #697789;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--navy-900);
  color: #dbe5ef;
}

.contact-section::before {
  position: absolute;
  top: -260px;
  left: -140px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 146, 197, 0.3), transparent 68%);
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 570px;
  color: #b9c7d7;
  font-size: 1.08rem;
}

.lead-form {
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.form-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 26px;
}

.form-heading strong {
  color: var(--navy-900);
  font-size: 1.35rem;
}

.form-heading span {
  color: #758295;
  font-size: 0.9rem;
}

.lead-form > label:not(.consent-row) {
  display: block;
  margin: 17px 2px 7px;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 750;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid #cfd7e0;
  border-radius: 14px;
  background: #fbfcfd;
  color: var(--navy-900);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="tel"]:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(79, 146, 197, 0.13);
  outline: none;
}

.lead-form input.invalid {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 20px;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.76rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  color: #667085;
  font-size: 0.78rem;
  cursor: pointer;
}

.consent-row input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--blue-700);
}

.submit-button {
  width: 100%;
  margin-top: 10px;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 720;
  text-align: center;
}

.site-footer {
  padding: 58px 0 22px;
  background: #081428;
  color: #aebdcc;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr);
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: #90a2b6;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links a {
  color: #b8c5d4;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #74869a;
  font-size: 0.76rem;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .product-grid,
  .keepsake-grid,
  .contact-grid {
    gap: 50px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }

  .main-nav {
    gap: 17px;
  }

  .login-button {
    padding-inline: 12px;
  }

  .floating-note-top {
    right: -10px;
  }

  .floating-note-bottom {
    left: -10px;
  }

  .phone-front {
    right: 25%;
  }

  .phone-back {
    right: -5%;
  }

  .phone-small {
    left: -4%;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid #dfe5eb;
    background: var(--ivory);
    box-shadow: 0 20px 35px rgba(14, 29, 54, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid #e3e7eb;
    font-size: 1rem;
  }

  .login-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
  }

  .login-button {
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding-top: 45px;
  }

  .hero-grid,
  .prompt-grid,
  .product-grid,
  .keepsake-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-benefits {
    justify-content: center;
  }

  .hero-note {
    margin-right: 0;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .proof-grid > div:nth-child(2)::after {
    display: none;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #dce3e9;
  }

  .prompt-grid {
    gap: 36px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card.featured {
    min-height: 0;
    transform: none;
  }

  .phones-stage {
    order: -1;
    min-height: 610px;
  }

  .phones-stage {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .book-showcase {
    order: 2;
  }

  .faq-heading {
    position: static;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy > p:not(.section-kicker) {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    inset-block-start: 70px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-benefits {
    display: grid;
    justify-content: start;
    max-width: 310px;
    margin-inline: auto;
    text-align: right;
  }

  .hero-image-wrap {
    border-radius: 26px;
  }

  .floating-note {
    display: none;
  }

  .proof-grid > div {
    padding: 20px 10px;
  }

  .proof-grid strong {
    font-size: 0.89rem;
  }

  .proof-grid span {
    font-size: 0.72rem;
  }

  .soft-line {
    border-radius: 18px;
  }

  .prompt-card {
    padding: 27px 23px;
  }

  .prompt-card blockquote {
    min-height: 138px;
  }

  .step-card,
  .audience-card {
    padding: 30px 24px;
  }

  .phones-stage {
    min-height: 500px;
  }

  .phone-front {
    right: 26%;
    width: 220px;
    height: 454px;
  }

  .phone-back {
    top: 75px;
    right: -2%;
    width: 186px;
    height: 384px;
  }

  .phone-small {
    top: 98px;
    left: -2%;
    width: 176px;
    height: 364px;
  }

  .faq-grid {
    gap: 35px;
  }

  .faq-list summary {
    padding-block: 21px;
    font-size: 1rem;
  }

  .lead-form {
    padding: 27px 22px;
    border-radius: 22px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 5px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--navy-900);
    box-shadow: 0 14px 30px rgba(14, 29, 54, 0.28);
    color: var(--white);
    font-weight: 820;
    text-align: center;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Scroll-reveal — sections and cards fade and lift into place as they enter
   the viewport. The .reveal class is added by script.js only when motion is
   allowed, so users with prefers-reduced-motion (and anyone with JS disabled)
   see all content immediately, fully visible. The per-item --reveal-order
   staggers siblings so a group "fills in" quickly rather than all at once. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
