@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/dm-serif-display-regular-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/dm-serif-display-italic-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('./assets/fonts/nunito-latin.woff2') format('woff2');
}

:root {
  --sun: #ffd84d;
  --sun-deep: #ffad33;
  --cream: #fff8e6;
  --peach: #ffe0bd;
  --coral: #ff6b6b;
  --pink: #ff8ac2;
  --aqua: #20c7c9;
  --blue: #2f80ff;
  --lime: #9be15d;
  --sage: #7abf91;
  --mint: #e7f9e9;
  --ink: #18231d;
  --muted: #5f7166;
  --line: rgba(24, 35, 29, 0.14);
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 22px 58px rgba(75, 52, 13, 0.15);
  --radius: 8px;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: Nunito, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff8e6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { text-wrap: pretty; }

.journey-scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.motion-toggle {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 88px);
  right: max(14px, calc((100vw - 1160px) / 2));
  left: auto;
  bottom: auto;
  z-index: 24;
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid rgba(24, 35, 29, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: 900 0.78rem/1 var(--sans);
  box-shadow: 0 8px 22px rgba(24, 35, 29, 0.1);
  backdrop-filter: blur(12px);
}

.motion-comfort[hidden] {
  display: none;
}

.motion-comfort {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 77, 0.16), transparent 24rem),
    rgba(255, 248, 230, 0.5);
  backdrop-filter: blur(3px) saturate(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.motion-comfort.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.motion-comfort-panel {
  width: min(100%, 520px);
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius);
  border: 2px solid rgba(24, 35, 29, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 230, 0.9)),
    radial-gradient(circle at 8% 8%, rgba(32, 199, 201, 0.22), transparent 12rem);
  box-shadow: 0 26px 70px rgba(24, 35, 29, 0.16);
}

.motion-comfort-panel .eyebrow {
  margin-bottom: 10px;
}

.motion-comfort-panel h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.motion-comfort-panel p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 700;
}

.motion-comfort-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.motion-comfort-actions .btn {
  min-height: 48px;
  padding-inline: 18px;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  z-index: 60;
  transform: translateY(calc(-100% - 12px));
  transition: transform 120ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section-pad { padding: 84px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 247, 0.86);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}
.brand em {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0;
  margin-top: -2px;
}
.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(240, 169, 58, 0.28), 0 2px 0 rgba(255, 255, 255, 0.72) inset;
  flex: 0 0 auto;
}
.nav {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 800;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(24, 35, 29, 0.14);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 0 rgba(24, 35, 29, 0.14), 0 26px 54px rgba(32, 199, 201, 0.24);
}
.btn-small {
  min-height: 42px;
  padding: 0 16px;
  background: var(--ink);
  color: white;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sun) 0%, var(--pink) 54%, var(--aqua) 100%);
  color: var(--ink);
  border: 3px solid rgba(24, 35, 29, 0.9);
  box-shadow:
    0 7px 0 rgba(24, 35, 29, 0.2),
    0 18px 0 rgba(255, 216, 77, 0.22),
    0 26px 54px rgba(32, 199, 201, 0.26);
  position: relative;
  isolation: isolate;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 7px 16px auto auto;
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  pointer-events: none;
  z-index: -1;
}
.btn-secondary {
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  box-shadow: inset 0 -4px 0 rgba(32, 199, 201, 0.28);
}
.text-link,
.inline-cta {
  font-weight: 900;
  color: #1f706e;
  text-decoration: none;
}
.inline-cta {
  display: inline-flex;
  margin-top: 6px;
  background: linear-gradient(90deg, rgba(32,199,201,0.18), rgba(255,216,77,0.28));
  padding: 10px 12px;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.22), rgba(255, 248, 230, 0.06)),
    radial-gradient(circle at 20% 10%, rgba(255, 216, 77, 0.34), transparent 26rem);
}
.sunburst {
  position: absolute;
  right: -16rem;
  top: -16rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(255,216,77,0.38) 0 8deg, transparent 8deg 18deg),
    radial-gradient(circle, rgba(255,216,77,0.7), transparent 62%);
  opacity: 0.58;
  animation: rotate 55s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 380px;
  align-items: center;
  gap: 46px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.82), rgba(255, 248, 230, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 52px rgba(255, 248, 230, 0.26);
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.77rem;
  color: #3f7c54;
}
h1 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 4.35rem;
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 880px;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.72);
}
h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 3.25rem;
  line-height: 1.02;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  letter-spacing: 0;
}
.lede {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.16rem;
  line-height: 1.62;
  color: #3d4d41;
}
.lede-small {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--muted);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.fine-print {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-picks span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(24, 35, 29, 0.08);
  box-shadow: inset 0 -3px 0 rgba(255, 216, 77, 0.45);
  font-weight: 900;
  color: #304138;
}

.hero-card,
.feature-card,
.about-card,
.qr-card,
.session-panel,
.final-panel,
details,
.story-card,
.mini-list div,
.support-deep article,
.comparison-grid div,
.search-intent-grid article,
.linkedin-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
}
.hero-card {
  position: relative;
  z-index: 2;
  padding: 20px;
  transform: rotate(-1deg);
  border: 3px solid rgba(24, 35, 29, 0.08);
  border-top: 8px solid var(--pink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 16% 10%, rgba(255, 216, 77, 0.42), transparent 12rem),
    var(--card);
}
.photo-stack {
  margin: 0 0 24px;
  position: relative;
  max-width: 312px;
  margin-left: auto;
  margin-right: auto;
}
.hero-photo {
  width: 100%;
  height: 312px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  border: 10px solid white;
  box-shadow: 0 20px 44px rgba(24, 35, 29, 0.16);
  background: linear-gradient(135deg, rgba(255,216,77,0.22), rgba(32,199,201,0.16));
}
.photo-stack figcaption,
.linkedin-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}
.label {
  margin: 0 0 10px;
  font-weight: 900;
  color: #327a4a;
}
.hero-card h2 { font-size: 2.05rem; }
.hero-card p { color: var(--muted); line-height: 1.65; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}
.check-list li::before {
  content: '✓';
  margin-right: 9px;
  color: #1f9d63;
  font-weight: 900;
}

.trust-row {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,216,77,0.3), rgba(32,199,201,0.2), rgba(255,138,194,0.22));
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-grid div {
  padding: 26px 18px;
  background: rgba(255,255,255,0.35);
}
.trust-grid strong {
  display: block;
  margin-bottom: 6px;
}
.trust-grid span {
  color: #3f5447;
  font-size: 0.95rem;
}

.intro-band,
.split,
.online-section {
  background: rgba(255,255,255,0.28);
}
.intro-band,
.intro-grid,
.split-grid,
.support-grid,
.about-grid,
.qr-grid,
.proof-grid,
.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}
.copy-stack {
  display: grid;
  gap: 18px;
  font-size: 1.1rem;
  line-height: 1.78;
  color: #425045;
}
.copy-stack p { margin: 0; }

.cards-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(231,249,233,0.7));
}
.section-head {
  text-align: center;
  margin: 0 auto 36px;
}
.narrow { max-width: 780px; }
.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.13rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 26px;
  border-top-width: 6px;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}
.accent-coral { border-top-color: var(--coral); }
.accent-blue { border-top-color: var(--blue); }
.accent-lime { border-top-color: var(--lime); }
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sun);
  font-weight: 900;
  margin-bottom: 20px;
}
.accent-coral .icon { background: #ffe1df; color: #b62035; }
.accent-blue .icon { background: #dceaff; color: #1556b8; }
.accent-lime .icon { background: #e9ffd8; color: #407a16; }

.story-section {
  background: linear-gradient(90deg, rgba(255,107,107,0.14), rgba(47,128,255,0.12), rgba(155,225,93,0.16));
}
.story-section,
.cards-section,
.support,
.first-session,
.online-section,
.about,
.proof-section,
.seo-copy,
.qr-section,
.faq,
.final-cta {
  position: relative;
  z-index: 2;
}
.story-card {
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}
.color-pop {
  border-left: 8px solid var(--coral);
  box-shadow: 0 22px 58px rgba(255, 107, 107, 0.12);
}
.story-card p,
.proof-grid p,
.seo-copy p {
  color: var(--muted);
  line-height: 1.72;
}
.mini-list {
  display: grid;
  gap: 16px;
}
.mini-list div {
  padding: 22px;
  border-left: 8px solid var(--aqua);
}
.mini-list div:nth-child(2) { border-left-color: var(--blue); }
.mini-list div:nth-child(3) { border-left-color: var(--pink); }
.mini-list div:nth-child(4) { border-left-color: var(--lime); }
.mini-list strong {
  display: block;
  margin-bottom: 8px;
}
.mini-list span {
  color: var(--muted);
  line-height: 1.6;
}

.sticky-copy {
  position: sticky;
  top: 104px;
}
.sticky-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
}
.support-deep {
  display: grid;
  gap: 16px;
}
.support-deep article {
  padding: 24px;
  border-left: 8px solid var(--sun);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}
.support-deep article:nth-child(2n) { border-left-color: var(--aqua); }
.support-deep article:nth-child(3n) { border-left-color: var(--coral); }
.support-deep p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.session-panel,
.final-panel {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 42px;
  align-items: center;
}
.session-panel {
  border-top: 8px solid var(--blue);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}
.steps {
  display: grid;
  gap: 14px;
}
.steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
}
.steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}
.steps span {
  font-weight: 800;
  color: #4d5d51;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.comparison-grid div {
  padding: 18px;
  box-shadow: none;
  border: 1px solid var(--line);
}
.comparison-grid strong {
  display: block;
  margin-bottom: 7px;
}
.comparison-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.about {
  background: linear-gradient(180deg, rgba(255, 224, 189, 0.35), rgba(255, 255, 255, 0.14));
}
.about-card {
  padding: 24px;
  border-top: 8px solid var(--sun);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}
.about-photo {
  width: 100%;
  height: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  border: 10px solid white;
  margin-bottom: 24px;
  box-shadow: 0 18px 38px rgba(24, 35, 29, 0.13);
}
.about-card p {
  color: var(--muted);
  line-height: 1.65;
}
.credential-list {
  display: grid;
  gap: 16px;
}
.credential-list div {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.credential-list div:nth-child(1) { border-left: 8px solid var(--coral); }
.credential-list div:nth-child(2) { border-left: 8px solid var(--blue); }
.credential-list div:nth-child(3) { border-left: 8px solid var(--lime); }
.credential-list div:nth-child(4) { border-left: 8px solid var(--pink); }
.credential-list div:nth-child(5) { border-left: 8px solid var(--aqua); }
.credential-list strong {
  display: block;
  margin-bottom: 7px;
}
.credential-list span {
  color: var(--muted);
  line-height: 1.6;
}

.proof-section {
  background: rgba(255,255,255,0.24);
}
.proof-grid {
  align-items: center;
}
.linkedin-card {
  margin: 0;
  padding: 18px;
  border-top: 8px solid var(--blue);
}
.linkedin-card img {
  display: block;
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: white;
  border: 8px solid white;
  box-shadow: 0 16px 34px rgba(24, 35, 29, 0.12);
}

.search-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.search-intent-grid article {
  padding: 22px;
  border-top: 8px solid var(--sun);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}
.search-intent-grid article:nth-child(2) { border-top-color: var(--coral); }
.search-intent-grid article:nth-child(3) { border-top-color: var(--aqua); }
.search-intent-grid article:nth-child(4) { border-top-color: var(--pink); }
.search-intent-grid p {
  margin-bottom: 0;
}

.qr-card {
  padding: 26px;
  border-top: 8px solid var(--aqua);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}
.qr-image {
  display: block;
  width: min(100%, 212px);
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: white;
  border: 10px solid white;
  box-shadow: 0 12px 34px rgba(24,35,29,0.14);
}
code {
  padding: 2px 6px;
  border-radius: var(--radius);
  background: rgba(24,35,29,0.08);
  overflow-wrap: anywhere;
}

.faq {
  background: linear-gradient(180deg, rgba(231,249,233,0.65), rgba(255,248,230,0.7));
}
.faq.section-pad {
  padding-top: 52px;
  padding-bottom: 52px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}
details {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(24, 35, 29, 0.08);
  border: 1px solid rgba(24, 35, 29, 0.1);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}
summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 13px 16px;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}
details[open] {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(32, 199, 201, 0.42);
}
details[open] summary::after {
  content: '-';
  background: var(--aqua);
}
details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.96rem;
}

.final-cta { padding-top: 48px; }
.final-panel {
  text-align: center;
  display: block;
  border-top: 8px solid var(--pink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}
.final-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 28px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}
.footer-brand { color: var(--ink); }
.footer-grid p {
  max-width: 700px;
  line-height: 1.65;
}
.crisis-note {
  font-weight: 800;
  color: #4d4530;
}
.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
}
.footer-links a {
  text-decoration: none;
  color: #1f706e;
  font-weight: 900;
}

@media (max-width: 1080px) {
  h1 { font-size: 4.8rem; }
  h2 { font-size: 3.45rem; }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 38px;
  }
  .search-intent-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid,
  .intro-grid,
  .split-grid,
  .support-grid,
  .about-grid,
  .qr-grid,
  .session-panel,
  .proof-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 56px;
    padding-bottom: 58px;
  }
  .sunburst {
    display: none;
  }
  .hero-card { transform: none; }
  .trust-grid,
  .feature-grid,
  .faq-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .sticky-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .session-panel { padding: 34px; }
}

@media (max-width: 640px) {
  .motion-toggle {
    right: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 78px);
    max-width: min(calc(100vw - 24px), 168px);
  }
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 66px 0; }
  .header-inner { min-height: 68px; }
  .site-header {
    backdrop-filter: blur(14px);
    background: rgba(255, 253, 247, 0.92);
  }
  .btn-small { display: none; }
  h1 {
    font-size: 2.9rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  h2 {
    font-size: 2.42rem;
    line-height: 1.04;
  }
  .lede {
    font-size: 1.1rem;
    line-height: 1.62;
  }
  .cta-row .btn { width: 100%; }
  .hero-copy,
  .hero-card,
  .story-card,
  .about-card,
  .session-panel,
  .final-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
  .photo-stack {
    max-width: 255px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-photo {
    height: 255px;
  }
  .about-photo {
    height: 300px;
  }
  .motion-toggle {
    font-size: 0.74rem;
  }
  .motion-comfort {
    align-items: end;
    padding: 14px;
  }
  .motion-comfort-actions .btn {
    width: 100%;
  }
  .search-intent-grid { grid-template-columns: 1fr; }
  .steps div {
    grid-template-columns: 42px 1fr;
  }
  .footer-grid p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sunburst { animation: none; }
  .btn,
  .btn:hover,
  .btn-primary:hover {
    transform: none;
    transition: none;
  }
}

/* Code signature: Michael Nicolette, Prizim Systems. Static source credit only; not rendered, not tracked, no visitor data. */
