:root {
  --font-ui: Calibri, "Segoe UI", Tahoma, Arial, sans-serif;
  --emerald-950: #052f27;
  --emerald-900: #073d31;
  --emerald-850: #094637;
  --emerald-800: #0b4b3a;
  --emerald-700: #12634e;
  --emerald-600: #178069;
  --sage-500: #88a995;
  --sage-300: #bfd2c3;
  --sage-150: #dfe9e1;
  --gold-700: #9b7529;
  --gold-600: #b58b36;
  --gold-500: #c39b4a;
  --gold-400: #d3b36d;
  --gold-200: #ead9ad;
  --ivory: #fffaf0;
  --warm-ivory: #fbf4e7;
  --cream: #f5ead7;
  --paper: #fffdf8;
  --ink: #17352e;
  --ink-soft: #53635f;
  --line: rgba(11, 75, 58, .13);
  --shadow-soft: 0 18px 48px rgba(18, 62, 50, .10);
  --shadow-card: 0 12px 30px rgba(28, 64, 51, .08);
  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--ivory);
}

body.landing-page {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.landing-page img { display: block; max-width: 100%; }
.landing-page a { text-decoration: none; }
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p { margin-top: 0; }
.landing-page h2 { margin-bottom: 10px; color: var(--emerald-900); font-size: clamp(1.75rem, 2.6vw, 2.65rem); line-height: 1.18; }
.landing-page h3 { line-height: 1.28; }
.landing-page [id] { scroll-margin-top: 112px; }

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 12px;
  z-index: 200;
  padding: 9px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--emerald-900);
  transform: translateY(-150%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

.landing-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 75, 58, .09);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 5px 22px rgba(24, 59, 48, .045);
  backdrop-filter: blur(16px);
}

.header-main {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3.2vw, 46px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--emerald-900);
  font-weight: 700;
  white-space: nowrap;
}
.landing-brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 50%; }
.landing-brand span { font-size: 1.02rem; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.15vw, 32px);
  min-width: 0;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: #2c4841;
  font-size: .91rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  inset-block-end: -9px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-600);
  transition: inset-inline .18s ease;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible { color: var(--emerald-700); }
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { inset-inline: 0; }

.header-actions,
.hero-actions { display: flex; align-items: center; gap: 10px; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.landing-page a:focus-visible,
.landing-page summary:focus-visible { outline: 3px solid rgba(181, 139, 54, .38); outline-offset: 3px; }

.landing-page a.button-primary,
.landing-page a.button-primary:visited {
  color: var(--ivory);
  background:
    radial-gradient(circle at bottom right, rgba(236, 207, 139, .22), transparent 46%),
    linear-gradient(135deg, #17846d, #0b4b3a);
  box-shadow: 0 10px 24px rgba(11, 75, 58, .20);
}
.landing-page a.button-primary:hover { color: #fffdf8; box-shadow: 0 14px 29px rgba(11, 75, 58, .25); }
.button-ghost,
.button-outline {
  color: var(--emerald-800);
  border-color: rgba(18, 128, 105, .55);
  background: rgba(255, 253, 248, .76);
}
.button-ghost:hover,
.button-outline:hover { background: rgba(230, 239, 231, .72); }
.button-ivory { color: var(--emerald-900); background: var(--ivory); box-shadow: 0 10px 23px rgba(3, 39, 31, .16); }
.button-large { min-height: 54px; padding: 12px 26px; font-size: 1rem; }
.mobile-nav { display: none; }

/* One continuous backdrop for the announcement and the book/title hero.
   flow-root contains the existing announcement margins without adding spacing. */
.landing-page .public-home-intro {
  display: flow-root;
  background:
    radial-gradient(circle at 8% 24%, rgba(129, 170, 143, .28), transparent 26%),
    radial-gradient(circle at 64% 18%, rgba(233, 211, 158, .20), transparent 25%),
    linear-gradient(145deg, #fdf8ed 0%, #fffdf8 51%, #edf5ee 100%);
}
.landing-page .public-home-intro > .hero { background: transparent; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 99, 78, .08);
  background:
    radial-gradient(circle at 8% 24%, rgba(129, 170, 143, .28), transparent 26%),
    radial-gradient(circle at 64% 18%, rgba(233, 211, 158, .20), transparent 25%),
    linear-gradient(145deg, #fdf8ed 0%, #fffdf8 51%, #edf5ee 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: 69vw;
  height: 178px;
  inset-inline-start: -12vw;
  inset-block-end: -128px;
  border-radius: 50% 50% 0 0;
  background: rgba(172, 205, 184, .23);
  transform: rotate(-4deg);
}
.hero::after {
  width: 49vw;
  height: 144px;
  inset-inline-end: -10vw;
  inset-block-end: -105px;
  border-radius: 50% 50% 0 0;
  background: rgba(213, 232, 219, .52);
  transform: rotate(4deg);
}

.hero-corner-pattern {
  position: absolute;
  z-index: -1;
  inset-block-start: -26px;
  inset-inline-end: -70px;
  width: min(32vw, 460px);
  opacity: .20;
  pointer-events: none;
  transform: scaleX(-1) rotate(3deg);
}

.hero-grid {
  position: relative;
  min-height: min(610px, calc(100svh - 80px));
  display: grid;
  grid-template-columns: minmax(410px, 1.06fr) minmax(360px, .94fr);
  grid-template-areas:
    "copy visual"
    "actions visual"
    "proof visual";
  grid-template-rows: 1fr auto auto;
  column-gap: clamp(30px, 5vw, 72px);
  row-gap: 15px;
  align-items: center;
  padding-block: 34px 38px;
}

.hero-copy { grid-area: copy; align-self: end; max-width: 675px; }
.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gold-700);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .015em;
}
.hero-kicker::before,
.section-label::before {
  content: "";
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
}
.hero-title-art {
  width: min(100%, 620px);
  height: auto;
  margin: -5px 0 -1px;
  object-fit: contain;
  filter: drop-shadow(0 8px 11px rgba(45, 77, 63, .10));
}
.hero-description {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(.97rem, 1.25vw, 1.09rem);
  line-height: 1.75;
}

.hero-actions { grid-area: actions; align-self: start; }
.hero-actions .button { min-width: 190px; }

.hero-proof {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: start;
  padding-top: 3px;
}
.proof-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-inline-start: 1px solid rgba(11, 75, 58, .13);
}
.proof-item:first-child { padding-inline-start: 0; border-inline-start: 0; }
.proof-item strong,
.proof-item small { display: block; }
.proof-item strong { color: var(--emerald-900); font-size: .84rem; }
.proof-item small { margin-top: 1px; color: #6b7773; font-size: .69rem; line-height: 1.3; }
.proof-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 139, 54, .36);
  border-radius: 50%;
  color: var(--emerald-700);
  background: rgba(255, 250, 240, .76);
}
.proof-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual {
  grid-area: visual;
  position: relative;
  isolation: isolate;
  min-height: 480px;
  align-self: stretch;
  display: grid;
  place-items: center;
}
.hero-visual img {
  position: relative;
  z-index: 3;
  width: min(108%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 23px rgba(30, 61, 48, .14));
  animation: hero-float 7s ease-in-out infinite;
}
.hero-visual-frame {
  position: absolute;
  z-index: 1;
  inset: 7% 6% 7%;
  border: 1px solid rgba(181, 139, 54, .27);
  border-radius: 50% 50% 24% 24% / 37% 37% 16% 16%;
  background:
    radial-gradient(circle at bottom right, rgba(203, 174, 105, .14), transparent 41%),
    linear-gradient(155deg, rgba(255, 253, 248, .72), rgba(213, 230, 216, .26));
  box-shadow: inset 0 0 0 8px rgba(255, 250, 240, .34), var(--shadow-soft);
}
.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: inherit;
}
.visual-orbit { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.visual-orbit-one { width: 66%; aspect-ratio: 1; inset-inline-start: -2%; inset-block-end: -2%; background: rgba(151, 192, 163, .25); filter: blur(4px); }
.visual-orbit-two { width: 33%; aspect-ratio: 1; inset-inline-end: 4%; inset-block-start: 5%; border: 1px solid rgba(181, 139, 54, .22); }

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.daily-tip {
  position: relative;
  z-index: 5;
  min-height: 166px;
  display: grid;
  grid-template-columns: minmax(155px, 205px) minmax(0, 1fr) 54px;
  align-items: center;
  gap: clamp(20px, 3.5vw, 48px);
  margin-top: 26px;
  padding: 17px clamp(24px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(181, 139, 54, .18);
  border-radius: 23px;
  background:
    radial-gradient(circle at bottom right, rgba(191, 210, 195, .52), transparent 38%),
    linear-gradient(120deg, #f7edda, #fffaf0 62%, #edf4ed);
  box-shadow: var(--shadow-card);
}
.daily-tip::after {
  content: "";
  position: absolute;
  inset-inline-start: -88px;
  inset-block-end: -174px;
  width: 290px;
  aspect-ratio: 1;
  border: 1px solid rgba(181, 139, 54, .18);
  border-radius: 50%;
}
.tip-visual { align-self: stretch; display: grid; place-items: center; min-height: 125px; }
.tip-visual img { width: min(100%, 205px); max-height: 146px; object-fit: contain; filter: drop-shadow(0 13px 14px rgba(38, 60, 50, .13)); }
.tip-copy { position: relative; z-index: 1; }
.tip-copy h2 { margin-bottom: 4px; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }
.tip-copy p { max-width: 720px; margin-bottom: 0; color: #405a53; font-size: clamp(.96rem, 1.3vw, 1.12rem); }
.tip-quote { color: rgba(181, 139, 54, .24); font-family: Georgia, serif; font-size: 6.5rem; line-height: 1; transform: translateY(-7px); }

.compact-section { padding-block: 58px 62px; }
.section-heading-row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr); align-items: end; gap: 50px; margin-bottom: 28px; }
.section-heading-row h2 { margin-bottom: 0; }
.section-heading-row > p { margin-bottom: 3px; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

.feature-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.corner-glow-card { background: radial-gradient(circle at bottom right, rgba(207, 179, 111, .18), transparent 43%), var(--paper); }
.feature-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.feature-card-green {
  color: #f8f1e4;
  border-color: rgba(255, 255, 255, .09);
  background:
    radial-gradient(circle at bottom right, rgba(218, 185, 108, .23), transparent 48%),
    linear-gradient(145deg, var(--emerald-800), var(--emerald-950));
}
.card-number { color: var(--gold-600); font-size: .84rem; font-weight: 700; }
.feature-card h3 { margin-bottom: 4px; color: var(--emerald-900); font-size: 1.25rem; }
.feature-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .92rem; }
.feature-card-green h3 { color: #fffaf0; }
.feature-card-green p { color: rgba(255, 250, 240, .75); }
.feature-card-green .card-number { color: var(--gold-200); }

.learning-map-section {
  position: relative;
  overflow: hidden;
  padding-block: 54px;
  color: #fff9ee;
  background:
    radial-gradient(circle at bottom right, rgba(219, 188, 111, .18), transparent 34%),
    radial-gradient(circle at top left, rgba(138, 181, 151, .17), transparent 36%),
    var(--emerald-900);
}
.learning-map-section::after {
  content: "";
  position: absolute;
  inset-inline-end: -150px;
  inset-block-start: -210px;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(234, 217, 173, .14);
  border-radius: 50%;
}
.learning-map { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1fr 1fr; gap: 18px; align-items: stretch; }
.map-intro { align-self: center; padding-inline-end: 24px; }
.map-intro h2 { color: #fffaf0; font-size: clamp(1.8rem, 2.5vw, 2.5rem); }
.map-intro p { margin-bottom: 0; color: rgba(255, 250, 240, .70); font-size: .96rem; }
.section-label-light { color: var(--gold-200); }
.section-label-light::before { background: var(--gold-200); }

.map-panel {
  min-height: 232px;
  padding: 24px;
  border: 1px solid rgba(255, 250, 240, .14);
  border-radius: 20px;
  background: rgba(255, 253, 248, .075);
  backdrop-filter: blur(8px);
}
.panel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 250, 240, .13); }
.panel-heading > span { color: var(--gold-200); font-size: .79rem; font-weight: 700; }
.panel-heading h3 { margin: 0; color: #fffaf0; font-size: 1.24rem; }
.path-list { display: grid; gap: 10px; margin-top: 15px; }
.path-list > div { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 12px; background: rgba(255, 253, 248, .055); }
.path-step { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(234, 217, 173, .26); border-radius: 50%; color: var(--gold-200); font-size: .72rem; }
.path-list strong { color: #fffaf0; font-size: .91rem; }
.path-list small { color: rgba(255, 250, 240, .62); font-size: .73rem; }
.subject-list { display: grid; gap: 8px; margin-top: 15px; }
.subject-list > span { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 7px 11px; border-radius: 11px; background: rgba(255, 253, 248, .055); }
.subject-list strong { color: #fffaf0; font-size: .9rem; }
.subject-list small { color: rgba(255, 250, 240, .60); font-size: .72rem; white-space: nowrap; }

.pricing-strip {
  min-height: 148px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-block: 34px 58px;
  padding: 26px 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 23px;
  color: #fff8eb;
  background:
    radial-gradient(circle at bottom right, rgba(225, 193, 117, .20), transparent 45%),
    linear-gradient(135deg, #0e5a47, #062f27);
  box-shadow: 0 20px 52px rgba(7, 61, 49, .15);
}
.pricing-mark { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(234, 217, 173, .3); border-radius: 18px; color: var(--gold-200); background: rgba(255, 253, 248, .07); font-size: 1.65rem; font-weight: 700; }
.pricing-strip h2 { margin-bottom: 3px; color: #fffaf0; font-size: clamp(1.5rem, 2.25vw, 2.2rem); }
.pricing-strip p { margin-bottom: 0; color: rgba(255, 250, 240, .70); font-size: .89rem; }
.pricing-strip .button { min-width: 145px; }

.faq-contact-section { padding-block: 54px; border-top: 1px solid rgba(11, 75, 58, .07); background: linear-gradient(125deg, var(--warm-ivory), #f0f5ec); }
.faq-contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; align-items: stretch; }
.faq-panel { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 253, 248, .91); box-shadow: var(--shadow-card); }
.panel-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 13px; }
.panel-title-row h2 { margin-bottom: 0; font-size: clamp(1.65rem, 2.3vw, 2.25rem); }
.panel-count { color: rgba(181, 139, 54, .34); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.faq-list { display: grid; gap: 7px; }
.faq-list details { border: 1px solid rgba(11, 75, 58, .10); border-radius: 13px; background: rgba(255, 255, 255, .62); }
.faq-list summary { padding: 13px 16px; color: var(--emerald-900); font-size: .91rem; font-weight: 700; cursor: pointer; }
.faq-list details p { padding: 0 16px 13px; margin: 0; color: var(--ink-soft); font-size: .84rem; }

.contact-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  color: #fff8eb;
  background:
    radial-gradient(circle at bottom right, rgba(225, 193, 117, .20), transparent 44%),
    linear-gradient(145deg, #0d5845, #07372d);
  box-shadow: 0 17px 42px rgba(7, 61, 49, .13);
}
.contact-card h2 { max-width: 430px; margin-bottom: 8px; color: #fffaf0; font-size: clamp(1.55rem, 2.2vw, 2.2rem); }
.contact-card p { margin-bottom: 21px; color: rgba(255, 250, 240, .72); }
.contact-card .button { min-width: 145px; }
.contact-line { position: absolute; width: 180px; height: 180px; inset-inline-end: -90px; inset-block-start: -95px; border: 1px solid rgba(234, 217, 173, .16); border-radius: 50%; }

.landing-footer { color: rgba(255, 250, 240, .76); background: var(--emerald-950); }
.footer-inner { min-height: 96px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.footer-brand { color: #fffaf0; }
.footer-brand img { width: 45px; height: 45px; }
.footer-inner p { margin: 0; font-size: .86rem; }

@media (max-width: 1180px) {
  .landing-container { width: min(calc(100% - 40px), var(--container)); }
  .header-main { gap: 18px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: .84rem; }
  .header-actions .button { padding-inline: 14px; }
  .hero-grid { grid-template-columns: minmax(370px, 1.05fr) minmax(330px, .95fr); column-gap: 30px; }
  .hero-title-art { width: min(100%, 560px); }
  .hero-actions .button { min-width: 170px; }
  .proof-item { padding-inline: 8px; }
  .proof-icon { flex-basis: 29px; width: 29px; height: 29px; }
  .path-list > div { grid-template-columns: 31px minmax(0, 1fr); }
  .path-list small { display: none; }
}

@media (max-width: 1024px) {
  .landing-container { width: min(calc(100% - 32px), var(--container)); }
  .landing-brand span { display: none; }
  .landing-brand img { width: 50px; height: 50px; }
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: .78rem; }
  .header-actions { gap: 7px; }
  .header-actions .button { min-height: 40px; padding-inline: 11px; font-size: .82rem; }
  .hero-grid { min-height: 552px; grid-template-columns: minmax(350px, 1.04fr) minmax(315px, .96fr); column-gap: 22px; padding-block: 28px 34px; }
  .hero-title-art { width: min(100%, 510px); }
  .hero-visual { min-height: 430px; }
  .hero-actions .button { min-width: 0; flex: 1; padding-inline: 15px; }
  .proof-item small { display: none; }
  .learning-map { grid-template-columns: .64fr 1fr 1fr; gap: 12px; }
  .map-intro { padding-inline-end: 8px; }
  .map-panel { padding: 19px; }
}

@media (max-width: 860px) and (min-width: 768px) {
  .desktop-nav a { font-size: .73rem; }
  .header-actions .button { padding-inline: 9px; }
  .hero-description { font-size: .91rem; line-height: 1.58; }
  .hero-actions .button { font-size: .88rem; }
  .proof-item { display: block; text-align: center; }
  .proof-icon { margin: 0 auto 4px; }
  .learning-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-intro { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1fr; align-items: end; gap: 25px; padding: 0 5px 10px; }
  .map-intro .section-label { grid-column: 1 / -1; }
  .map-intro p { align-self: center; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 116px; }
  body.landing-page { font-size: 15px; }
  .landing-page [id] { scroll-margin-top: 120px; }
  .landing-container { width: min(calc(100% - 26px), var(--container)); }
  .landing-header { position: sticky; }
  .header-main { min-height: 66px; display: flex; justify-content: space-between; gap: 10px; }
  .landing-brand img { width: 45px; height: 45px; }
  .desktop-nav { display: none; }
  .header-actions { flex: 1; justify-content: flex-end; }
  .header-actions .button { min-height: 38px; padding: 8px 11px; border-radius: 10px; font-size: .79rem; }
  .mobile-nav { display: block; border-top: 1px solid rgba(11, 75, 58, .07); }
  .mobile-nav-track { width: 100%; display: flex; gap: 21px; padding: 8px 13px 10px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .mobile-nav-track::-webkit-scrollbar { display: none; }
  .mobile-nav a { font-size: .79rem; }

  .hero-corner-pattern { width: 72vw; opacity: .15; }
  .hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "copy" "visual" "actions" "proof";
    grid-template-rows: auto;
    gap: 14px;
    padding-block: 26px 38px;
  }
  .hero-copy { align-self: auto; text-align: center; }
  .hero-kicker { justify-content: center; margin-bottom: 4px; }
  .hero-title-art { width: min(100%, 510px); margin: -5px auto -3px; }
  .hero-description { max-width: 560px; margin-inline: auto; font-size: .93rem; line-height: 1.62; }
  .hero-visual { min-height: 0; height: clamp(225px, 66vw, 335px); align-self: auto; }
  .hero-visual img { width: min(95%, 470px); max-height: 100%; }
  .hero-visual-frame { inset: 3% 8% 2%; }
  .hero-actions { width: 100%; }
  .hero-actions .button { min-height: 48px; padding: 10px 9px; font-size: .87rem; }
  .hero-proof { width: 100%; padding-top: 4px; }
  .proof-item { display: block; padding: 0 5px; text-align: center; }
  .proof-icon { margin: 0 auto 4px; }
  .proof-item strong { font-size: .76rem; }
  .proof-item small { display: none; }

  .daily-tip { min-height: 145px; grid-template-columns: 108px minmax(0, 1fr); gap: 11px; margin-top: 18px; padding: 13px 15px; border-radius: 19px; }
  .tip-visual { min-height: 108px; }
  .tip-visual img { width: 118px; max-width: 118%; max-height: 122px; }
  .tip-copy .section-label { margin-bottom: 4px; font-size: .68rem; }
  .tip-copy h2 { margin-bottom: 3px; font-size: 1.35rem; }
  .tip-copy p { font-size: .82rem; line-height: 1.46; }
  .tip-quote { display: none; }

  .compact-section { padding-block: 46px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 9px; margin-bottom: 21px; text-align: center; }
  .section-heading-row .section-label { justify-content: center; }
  .section-heading-row > p { max-width: 520px; margin-inline: auto; font-size: .9rem; }
  .feature-cards { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(82%, 300px); gap: 12px; overflow-x: auto; overscroll-behavior-inline: contain; padding: 3px 2px 12px; scrollbar-width: none; scroll-snap-type: inline mandatory; }
  .feature-cards::-webkit-scrollbar { display: none; }
  .feature-card { min-height: 154px; padding: 20px; scroll-snap-align: start; }

  .learning-map-section { padding-block: 44px; }
  .learning-map { grid-template-columns: 1fr; gap: 12px; }
  .map-intro { padding: 0 3px 10px; text-align: center; }
  .map-intro .section-label { justify-content: center; }
  .map-intro p { max-width: 530px; margin-inline: auto; }
  .map-panel { min-height: 0; padding: 20px; }
  .path-list > div { grid-template-columns: 31px minmax(0, 1fr) auto; }
  .path-list small { display: block; }

  .pricing-strip { min-height: 0; grid-template-columns: 54px minmax(0, 1fr); gap: 15px; margin-block: 26px 46px; padding: 23px 20px; text-align: start; }
  .pricing-mark { width: 50px; height: 50px; border-radius: 14px; font-size: 1.3rem; }
  .pricing-strip h2 { font-size: 1.4rem; }
  .pricing-strip p { font-size: .8rem; }
  .pricing-strip .button { grid-column: 1 / -1; width: 100%; min-height: 45px; }

  .faq-contact-section { padding-block: 44px; }
  .faq-contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-panel { padding: 21px; }
  .panel-title-row { margin-bottom: 10px; }
  .panel-count { font-size: 2rem; }
  .faq-list summary { padding: 12px 14px; font-size: .86rem; }
  .faq-list details p { padding: 0 14px 12px; font-size: .8rem; }
  .contact-card { min-height: 258px; align-items: center; padding: 27px 24px; text-align: center; }
  .contact-card .section-label { justify-content: center; }
  .contact-card .button { width: 100%; }

  .footer-inner { min-height: 145px; grid-template-columns: 1fr; justify-items: center; gap: 5px; padding-block: 21px; text-align: center; }
}

@media (max-width: 430px) {
  .landing-container { width: min(calc(100% - 22px), var(--container)); }
  .hero-grid { padding-block-start: 23px; }
  .hero-description { font-size: .88rem; }
  .hero-visual { height: clamp(215px, 64vw, 280px); }
  .hero-actions { gap: 7px; }
  .hero-actions .button { font-size: .81rem; }
  .daily-tip { grid-template-columns: 96px minmax(0, 1fr); padding-inline: 13px; }
  .tip-visual img { width: 108px; }
  .tip-copy p { font-size: .78rem; }
  .path-list > div { grid-template-columns: 31px minmax(0, 1fr); }
  .path-list small { display: none; }
}

@media (max-width: 390px) {
  .header-main { gap: 7px; }
  .landing-brand img { width: 42px; height: 42px; }
  .header-actions .button { padding-inline: 9px; font-size: .74rem; }
  .mobile-nav-track { gap: 19px; padding-inline: 11px; }
  .hero-title-art { width: 103%; max-width: none; margin-inline: -1.5%; }
  .hero-description { font-size: .84rem; }
  .proof-icon { width: 27px; height: 27px; }
  .proof-icon svg { width: 16px; height: 16px; }
  .proof-item strong { font-size: .7rem; }
  .daily-tip { grid-template-columns: 88px minmax(0, 1fr); }
  .tip-copy h2 { font-size: 1.25rem; }
  .tip-copy p { font-size: .74rem; }
}

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

/* HOTFIX 2 / Stage 4 — public certificate verification entry */
.public-verification-entry { color: var(--emerald-800) !important; font-weight: 800 !important; }
.public-verification-entry::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-inline-end: 5px; border-radius: 50%; color: #fff; background: var(--emerald-700); font-size: .7rem; }
.footer-verify-link { display: inline-flex; align-items: center; gap: 6px; color: #efd998; font-weight: 800; }
.footer-verify-link::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid rgba(239, 217, 152, .5); border-radius: 50%; font-size: .7rem; }
