:root {
  --ink: #17324d;
  --ink-soft: #557087;
  --teal: #167a7d;
  --teal-dark: #105e62;
  --mint: #dff3ea;
  --mint-strong: #9ed9c4;
  --sky: #dff3fa;
  --mango: #f8c758;
  --coral: #ef786a;
  --paper: #fbfdfd;
  --white: #ffffff;
  --line: #dce8e9;
  --shadow: 0 20px 55px rgba(35, 80, 93, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--paper); }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
:focus-visible { outline: 4px solid rgba(248, 199, 88, 0.7); outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.topbar { height: 86px; padding: 0 clamp(20px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(251, 253, 253, 0.94); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 12px; border: 0; background: transparent; text-align: left; padding: 0; }
.brand-mark { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: var(--mango); transform: rotate(-3deg); }
.brand-mark svg { width: 35px; fill: var(--ink); }
.brand-mark .brand-leaf { fill: var(--teal); }
.brand strong { display: block; font: 800 21px/1 "Trebuchet MS", sans-serif; letter-spacing: -0.5px; }
.brand small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 11px; letter-spacing: 0.08em; }
.main-nav { display: flex; align-items: center; gap: 5px; padding: 5px; background: #edf5f4; border-radius: 999px; }
.nav-button { border: 0; background: transparent; padding: 10px 16px; border-radius: 999px; color: var(--ink-soft); font-weight: 700; }
.nav-button.is-active { color: var(--teal-dark); background: var(--white); box-shadow: 0 4px 15px rgba(35, 80, 93, 0.1); }

.view { display: none; }
.view.is-active { display: block; animation: view-in 380ms ease both; }
@keyframes view-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hero-shell { min-height: 620px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr); align-items: stretch; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-copy { padding: clamp(65px, 8vw, 112px) clamp(30px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 12px; color: var(--teal); font: 800 12px/1.2 "Segoe UI", sans-serif; letter-spacing: 0.14em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Trebuchet MS", "Segoe UI", sans-serif; }
h1 { margin-bottom: 24px; max-width: 790px; font-size: clamp(44px, 5.5vw, 78px); line-height: 0.98; letter-spacing: -0.055em; }
h1 em { display: block; color: var(--teal); font-style: normal; position: relative; width: max-content; max-width: 100%; }
h1 em::after { content: ""; position: absolute; height: 9px; left: 3px; right: -4px; bottom: -8px; background: var(--mango); border-radius: 80% 30% 70% 40%; transform: rotate(-1deg); opacity: 0.85; }
.hero-intro { max-width: 570px; color: var(--ink-soft); font-size: 19px; line-height: 1.6; }
.today-card { max-width: 610px; display: grid; grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr); gap: 12px; align-items: end; margin-top: 24px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.target-picker label { display: block; margin: 0 0 7px 4px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.target-picker select { width: 100%; height: 54px; padding: 0 42px 0 15px; border: 2px solid #c9dedf; border-radius: 14px; color: var(--ink); background: var(--paper); font-weight: 800; }
.primary-button, .secondary-button, .danger-button { min-height: 52px; border: 0; border-radius: 15px; padding: 0 19px; font-weight: 800; transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease; }
.primary-button { display: flex; align-items: center; justify-content: center; gap: 18px; background: var(--teal); color: white; box-shadow: 0 8px 0 var(--teal-dark); }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 10px 0 var(--teal-dark); }
.primary-button:active { transform: translateY(5px); box-shadow: 0 3px 0 var(--teal-dark); }
.primary-button span { font-size: 23px; }
.secondary-button { background: var(--white); color: var(--teal-dark); border: 2px solid #bcd8d8; }
.secondary-button:hover { background: var(--mint); transform: translateY(-1px); }
.microcopy { grid-column: 1 / -1; margin: 2px 4px 0; color: var(--ink-soft); font-size: 12px; }

.garden-scene { position: relative; min-height: 620px; overflow: hidden; background: var(--sky); border-radius: 0 0 0 90px; isolation: isolate; }
.garden-scene::before { content: ""; position: absolute; width: 620px; height: 620px; border: 2px dashed rgba(23, 50, 77, 0.08); border-radius: 50%; left: 50%; top: 48%; transform: translate(-50%, -50%); }
.sun { position: absolute; width: 96px; height: 96px; border-radius: 50%; top: 55px; right: 70px; background: var(--mango); box-shadow: 0 0 0 18px rgba(248, 199, 88, 0.22), 0 0 0 36px rgba(248, 199, 88, 0.1); }
.cloud { position: absolute; width: 145px; height: 42px; background: rgba(255,255,255,0.8); border-radius: 999px; }
.cloud::before, .cloud::after { content: ""; position: absolute; bottom: 0; background: inherit; border-radius: 50%; }
.cloud::before { width: 70px; height: 70px; left: 26px; }
.cloud::after { width: 52px; height: 52px; right: 18px; }
.cloud-one { left: 10%; top: 95px; transform: scale(0.8); }
.cloud-two { right: 8%; top: 220px; transform: scale(0.48); opacity: 0.75; }
.speech-flower { position: absolute; display: grid; place-items: center; width: 130px; height: 105px; border-radius: 56% 52% 56% 18%; background: white; box-shadow: 0 18px 40px rgba(35, 80, 93, 0.13); color: var(--teal-dark); font: 900 31px/1 "Trebuchet MS", sans-serif; transform: rotate(-5deg); }
.speech-flower::before { content: ""; position: absolute; width: 12px; height: 180px; top: 82px; left: 56px; border-radius: 12px; background: var(--teal); z-index: -1; }
.speech-flower::after { content: ""; position: absolute; width: 52px; height: 31px; top: 142px; left: 57px; border-radius: 80% 15% 80% 15%; background: var(--mint-strong); transform: rotate(-16deg); }
.flower-one { left: 14%; top: 165px; }
.flower-two { left: 46%; top: 250px; width: 148px; height: 118px; transform: rotate(6deg); background: #fff8de; }
.flower-three { right: 7%; top: 350px; width: 112px; height: 94px; transform: rotate(-2deg); }
.garden-ground { position: absolute; left: 0; right: 0; bottom: 0; height: 148px; padding: 45px clamp(28px, 6vw, 70px) 25px; display: flex; align-items: center; justify-content: space-between; background: var(--mint); border-radius: 55% 45% 0 0 / 38% 31% 0 0; }
.garden-ground strong, .garden-label { display: block; }
.garden-label { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.garden-ground strong { margin-top: 4px; font: 900 25px/1 "Trebuchet MS", sans-serif; }
.streak-chip { background: white; padding: 11px 15px; border-radius: 999px; color: var(--ink-soft); }
.streak-chip span { color: #e4a91a; }

.path-section { padding: 90px clamp(24px, 7vw, 110px) 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-heading h2, .calm-card h2 { margin: 0; font-size: clamp(30px, 3vw, 44px); letter-spacing: -0.04em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.practice-path { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.practice-path::before { content: ""; position: absolute; left: 7%; right: 7%; top: 54px; border-top: 3px dashed #c3dcdc; }
.practice-path li { position: relative; z-index: 1; text-align: center; }
.path-stone { width: 108px; height: 108px; display: grid; place-items: center; margin: 0 auto 25px; border: 8px solid var(--paper); border-radius: 47% 53% 48% 52%; font-size: 41px; box-shadow: 0 7px 0 rgba(23, 50, 77, 0.1); transform: rotate(-3deg); }
.ear-stone { background: var(--sky); }.mirror-stone { background: #eee6fb; transform: rotate(4deg); }.picture-stone { background: #fff0ca; }.story-stone { background: #f9ddd9; transform: rotate(5deg); }
.practice-path small { display: block; color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.practice-path strong { display: block; margin: 6px 0 8px; font: 900 23px/1 "Trebuchet MS", sans-serif; }
.practice-path p { margin: 0 auto; max-width: 220px; color: var(--ink-soft); line-height: 1.45; font-size: 14px; }
.calm-card { margin: 0 clamp(24px, 7vw, 110px) 100px; padding: 34px 42px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; border-radius: var(--radius-lg); background: var(--ink); color: white; }
.calm-card p:not(.eyebrow) { margin: 8px 0 0; color: #bed0db; }
.calm-card .eyebrow { color: var(--mint-strong); }
.calm-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); font-size: 37px; }
.text-button, .quiet-button, .danger-text-button, .icon-button { border: 0; background: transparent; font-weight: 800; }
.text-button { color: white; white-space: nowrap; }
.quiet-button { padding: 11px 13px; color: var(--ink-soft); }

.session-view { min-height: calc(100vh - 86px); background: linear-gradient(180deg, var(--sky), #f8fbfb 66%); padding: 24px clamp(18px, 4vw, 56px) 56px; }
.session-topline { max-width: 1040px; margin: 0 auto 28px; display: grid; grid-template-columns: 95px 1fr 110px; align-items: center; gap: 25px; }
.session-progress-copy { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.progress-track { height: 11px; border-radius: 999px; overflow: hidden; background: white; box-shadow: inset 0 0 0 1px var(--line); }
.progress-track span { display: block; width: 25%; height: 100%; background: var(--teal); border-radius: inherit; transition: width 350ms ease; }
.session-target { justify-self: end; padding: 10px 15px; border-radius: 999px; background: var(--mango); font-weight: 900; }
.session-card { max-width: 920px; min-height: 590px; margin: auto; padding: clamp(28px, 5vw, 62px); background: white; border: 1px solid var(--line); border-radius: 44px; box-shadow: var(--shadow); text-align: center; }
.activity-icon { width: 82px; height: 82px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 34px; background: var(--mint); font-size: 38px; transform: rotate(-3deg); }
.session-card h1 { margin: 0 auto 13px; max-width: 650px; font-size: clamp(34px, 5vw, 54px); line-height: 1.02; }
.session-instruction { max-width: 590px; margin: 0 auto 28px; color: var(--ink-soft); font-size: 17px; line-height: 1.5; }
.listen-options { max-width: 660px; margin: 24px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.listen-option { min-height: 175px; border: 3px solid #d8e6e7; border-radius: 28px; background: var(--paper); transition: transform 150ms, border-color 150ms, background 150ms; }
.listen-option:hover { transform: translateY(-3px); border-color: var(--teal); }
.listen-option .picture { display: block; font-size: 64px; margin-bottom: 8px; }
.listen-option strong { font: 900 22px/1 "Trebuchet MS", sans-serif; }
.listen-option.is-right { background: var(--mint); border-color: var(--teal); }
.listen-option.is-wrong { animation: gentle-shake 300ms ease; border-color: var(--coral); }
@keyframes gentle-shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.sound-button { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 20px; border: 0; border-radius: 50%; background: var(--teal); color: white; font-size: 31px; box-shadow: 0 7px 0 var(--teal-dark); }
.sound-button:active { transform: translateY(4px); box-shadow: 0 3px 0 var(--teal-dark); }
.syllable-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 25px 0; }
.syllable { padding: 14px 19px; border-radius: 16px; background: var(--sky); font: 900 25px/1 "Trebuchet MS", sans-serif; }
.picture-card { max-width: 390px; min-height: 245px; margin: 22px auto; padding: 28px; display: grid; place-items: center; border-radius: 34px; background: #fff7da; border: 3px solid #f5dda1; }
.picture-card .picture { display: block; font-size: 94px; }
.picture-card strong { display: block; margin-top: 12px; font: 900 31px/1 "Trebuchet MS", sans-serif; }
.hidden-word { filter: blur(9px); user-select: none; }
.reveal-button { border: 0; background: transparent; color: var(--teal); font-weight: 800; text-decoration: underline; }
.recording-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.record-button { min-height: 48px; padding: 0 18px; border-radius: 999px; border: 2px solid #bfd6d7; background: white; font-weight: 800; }
.record-button.is-recording { background: #ffe3df; border-color: var(--coral); color: #9c3d35; animation: record-pulse 1.3s infinite; }
@keyframes record-pulse { 50% { box-shadow: 0 0 0 8px rgba(239,120,106,0.12); } }
.adult-check { max-width: 650px; margin: 28px auto 0; padding-top: 23px; border-top: 1px dashed #c5d9da; }
.adult-check > span { display: block; margin-bottom: 11px; color: var(--ink-soft); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.attempt-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.attempt-button { min-height: 54px; padding: 8px; border: 2px solid transparent; border-radius: 15px; font-weight: 800; }
.attempt-button[data-result="independent"] { background: var(--mint); color: #176c54; }
.attempt-button[data-result="assisted"] { background: #fff2cb; color: #80600f; }
.attempt-button[data-result="pause"] { background: #f5e5e2; color: #934b43; }
.parent-cue { max-width: 660px; margin: 22px auto 0; padding: 13px 17px; border-radius: 14px; background: #f1f6f7; color: var(--ink-soft); text-align: left; font-size: 13px; }
.celebration { padding-top: 30px; }
.celebration-plant { font-size: 105px; animation: plant-pop 650ms cubic-bezier(.2,.9,.2,1.3) both; }
@keyframes plant-pop { from { opacity: 0; transform: scale(.45) rotate(-8deg); } to { opacity: 1; transform: none; } }
.celebration h1 { margin-top: 22px; }
.session-note { width: min(100%, 560px); margin: 16px auto; padding: 15px; resize: vertical; border: 2px solid #c9dedf; border-radius: 15px; }

.page-shell { max-width: 1240px; margin: auto; padding: 72px 28px 100px; }
.narrow-shell { max-width: 1080px; }
.page-title-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.page-title-row h1 { margin: 0; max-width: 830px; font-size: clamp(38px, 5vw, 63px); }
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 18px; }
.metric-card, .panel { border: 1px solid var(--line); background: white; border-radius: var(--radius-md); }
.metric-card { padding: 25px; }
.metric-card span, .metric-card small { display: block; color: var(--ink-soft); }
.metric-card span { font-size: 13px; font-weight: 800; }
.metric-card strong { display: block; margin: 12px 0 5px; font: 900 39px/1 "Trebuchet MS", sans-serif; }
.metric-card small { font-size: 12px; }
.accent-metric { background: var(--mint); border-color: #c3e4d7; }
.progress-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; }
.panel { padding: 29px; }
.panel-heading h2 { margin: 0; font-size: 27px; letter-spacing: -0.03em; }
.habit-garden { display: grid; grid-template-columns: repeat(14, 1fr); gap: 7px; align-items: end; min-height: 145px; margin-top: 26px; }
.habit-day { display: flex; flex-direction: column; justify-content: end; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 10px; }
.habit-day i { width: 100%; max-width: 32px; height: 24px; display: block; border-radius: 50% 50% 44% 44%; background: #edf3f3; position: relative; }
.habit-day.did-practice i { height: 60px; border-radius: 45% 55% 50% 50%; background: var(--mint-strong); }
.habit-day.did-practice i::before { content: ""; position: absolute; width: 5px; height: 30px; background: var(--teal); left: 50%; top: 42px; transform: translateX(-50%); z-index: -1; }
.habit-day.today i { box-shadow: 0 0 0 3px var(--mango); }
.panel-note { margin: 24px 0 0; color: var(--ink-soft); font-size: 12px; }
.target-summary { margin-top: 22px; display: grid; gap: 12px; }
.target-summary-row { padding: 13px 15px; border-radius: 15px; background: #f3f8f8; }
.target-summary-row > div { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 8px; }
.target-summary-row strong { font-family: "Trebuchet MS", sans-serif; }
.mini-track { height: 8px; background: #dce9e9; border-radius: 99px; overflow: hidden; }
.mini-track span { display: block; height: 100%; background: var(--teal); border-radius: inherit; }
.empty-state { padding: 28px; border: 2px dashed #cbdede; border-radius: 18px; color: var(--ink-soft); text-align: center; }
.history-panel { margin-top: 18px; }
.history-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; align-items: center; padding: 17px 3px; border-bottom: 1px solid #e9f0f0; }
.history-row:last-child { border-bottom: 0; }
.history-row time { color: var(--ink-soft); font-size: 13px; }
.history-row strong { display: block; }.history-row small { color: var(--ink-soft); }
.result-dots { display: flex; gap: 5px; }.result-dots i { width: 12px; height: 12px; border-radius: 50%; background: var(--line); }.result-dots i.good { background: var(--mint-strong); }.result-dots i.help { background: var(--mango); }.result-dots i.pause { background: var(--coral); }

.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.family-card { position: relative; display: flex; gap: 22px; padding: 31px; border: 1px solid var(--line); background: white; border-radius: var(--radius-md); overflow: hidden; }
.family-card.wide-card { grid-column: 1 / -1; }
.family-number { flex: 0 0 auto; width: 51px; height: 51px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); color: var(--teal); font: 900 17px/1 "Trebuchet MS", sans-serif; }
.family-card h2 { margin: 4px 0 9px; font-size: 26px; }.family-card p, .family-card li { color: var(--ink-soft); line-height: 1.55; }
.questions-box { margin-top: 21px; padding: 20px 23px; background: #f0f7f7; border-radius: 17px; }
.questions-box strong { color: var(--teal-dark); }.questions-box ul { margin-bottom: 0; padding-left: 22px; }
.check-list { list-style: none; padding: 0; margin: 15px 0 0; }
.check-list li { position: relative; padding-left: 28px; margin: 10px 0; }.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.review-card { margin-top: 18px; padding: 36px; display: grid; grid-template-columns: 72px 1fr; gap: 25px; border-radius: 30px; background: #fff6dc; border: 1px solid #f4dda3; }
.review-symbol { width: 72px; height: 72px; display: grid; place-items: center; background: var(--mango); border-radius: 50%; font-size: 35px; }
.review-card h2 { margin-bottom: 10px; font-size: 30px; }.review-card p { color: #6f6450; line-height: 1.6; }.review-disclaimer { margin-bottom: 0; font-size: 12px; font-weight: 700; }
.privacy-card { margin-top: 18px; padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: var(--ink); color: white; border-radius: 24px; }
.privacy-card > div { display: flex; align-items: center; gap: 17px; }.privacy-card > div > span { font-size: 30px; }.privacy-card strong { display: block; }.privacy-card p { margin: 4px 0 0; color: #bfd0db; font-size: 13px; }
.danger-text-button { color: #ffc4bc; white-space: nowrap; }.danger-button { background: var(--coral); color: white; }

dialog { border: 0; padding: 0; color: var(--ink); box-shadow: 0 30px 90px rgba(23, 50, 77, 0.32); }
dialog::backdrop { background: rgba(16, 39, 58, 0.62); backdrop-filter: blur(4px); }
.settings-dialog { width: min(92vw, 670px); max-height: 90vh; border-radius: 30px; }
.settings-dialog form { padding: 32px; }
.dialog-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.dialog-heading h2 { font-size: 32px; margin: 0 0 25px; }.icon-button { font-size: 35px; line-height: 1; color: var(--ink-soft); }
.field-label { display: block; margin: 18px 0; font-weight: 800; font-size: 13px; }
.field-label input, .field-label textarea { width: 100%; margin-top: 8px; padding: 14px 15px; border: 2px solid #c9dfe0; border-radius: 14px; color: var(--ink); background: var(--paper); font-weight: 500; }
fieldset { margin: 18px 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; } fieldset legend { padding: 0 7px; font-weight: 900; } fieldset > p { color: var(--ink-soft); font-size: 12px; }
.target-options { display: flex; flex-wrap: wrap; gap: 8px; }
.target-option input { position: absolute; opacity: 0; pointer-events: none; }.target-option span { display: block; padding: 10px 13px; border: 2px solid #d5e4e4; border-radius: 999px; background: white; font-weight: 800; font-size: 13px; }.target-option input:checked + span { color: var(--teal-dark); border-color: var(--teal); background: var(--mint); }.target-option input:focus-visible + span { outline: 4px solid rgba(248,199,88,.7); }
.approved-word-options { display: grid; gap: 14px; }
.approved-word-group { padding: 13px; border-radius: 15px; background: #f4f8f8; }
.approved-word-group > strong { display: block; margin-bottom: 9px; font-family: "Trebuchet MS", sans-serif; }
.approved-word-list { display: flex; flex-wrap: wrap; gap: 7px; }
.approved-word-option input { position: absolute; opacity: 0; pointer-events: none; }
.approved-word-option span { display: block; padding: 8px 11px; border: 2px solid #d5e4e4; border-radius: 12px; background: white; font-size: 13px; font-weight: 700; }
.approved-word-option input:checked + span { border-color: var(--teal); background: var(--mint); color: var(--teal-dark); }
.approved-word-option input:focus-visible + span { outline: 4px solid rgba(248,199,88,.7); }
.form-error { min-height: 20px; margin: 10px 0 0; color: #a43f37; font-size: 13px; font-weight: 800; }
.visually-hidden { 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; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; }.dialog-actions .primary-button { min-width: 160px; }
.confirm-dialog { width: min(90vw, 460px); padding: 31px; border-radius: 25px; }.confirm-dialog p { color: var(--ink-soft); line-height: 1.55; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 100; transform: translate(-50%, 30px); padding: 13px 20px; border-radius: 999px; background: var(--ink); color: white; font-weight: 700; opacity: 0; pointer-events: none; transition: 220ms ease; }.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 960px) {
  .hero-shell { grid-template-columns: 1fr; }.garden-scene { min-height: 520px; border-radius: 0; }.hero-copy { padding-bottom: 70px; }.practice-path { grid-template-columns: 1fr 1fr; gap: 45px 18px; }.practice-path::before { display: none; }.progress-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar { height: auto; min-height: 74px; padding: 10px 15px; backdrop-filter: none; }.brand small { display: none; }.brand strong { font-size: 17px; }.brand-mark { width: 40px; height: 40px; }.main-nav { position: fixed; z-index: 30; left: 10px; right: 10px; bottom: 10px; justify-content: space-around; box-shadow: 0 8px 30px rgba(23,50,77,.25); }.nav-button { flex: 1; padding: 11px 8px; font-size: 13px; }
  body { padding-bottom: 72px; }.hero-shell { min-height: auto; }.hero-copy { padding: 52px 22px; }.today-card { grid-template-columns: 1fr; }.microcopy { grid-column: auto; }.garden-scene { min-height: 440px; }.sun { width: 72px; height: 72px; right: 34px; }.speech-flower { transform: scale(.82) rotate(-5deg); }.flower-one { left: 3%; }.flower-two { left: 36%; }.flower-three { right: -1%; }.garden-ground { padding-inline: 25px; }
  .path-section { padding: 65px 22px; }.section-heading, .page-title-row { align-items: start; flex-direction: column; }.practice-path { grid-template-columns: 1fr 1fr; }.calm-card { margin: 0 18px 60px; padding: 28px; grid-template-columns: auto 1fr; border-radius: 27px; }.calm-card .text-button { grid-column: 1 / -1; justify-self: start; }.calm-icon { width: 56px; height: 56px; }
  .session-view { min-height: calc(100vh - 66px); padding: 17px 12px 35px; }.session-topline { grid-template-columns: 65px 1fr; gap: 10px; }.session-target { display: none; }.session-card { min-height: 520px; padding: 29px 17px; border-radius: 28px; }.listen-options { gap: 10px; }.listen-option { min-height: 145px; }.attempt-buttons { grid-template-columns: 1fr; }.picture-card { min-height: 210px; }
  .page-shell { padding: 48px 18px 70px; }.summary-grid { grid-template-columns: 1fr; }.page-title-row .secondary-button { width: 100%; }.habit-garden { gap: 3px; }.panel { padding: 22px 17px; }.history-row { grid-template-columns: 90px 1fr; }.result-dots { grid-column: 2; }.family-grid { grid-template-columns: 1fr; }.family-card.wide-card { grid-column: auto; }.family-card { padding: 24px 19px; flex-direction: column; }.review-card { padding: 28px 21px; grid-template-columns: 1fr; }.privacy-card { align-items: start; flex-direction: column; }
  .settings-dialog form { padding: 24px 18px; }.dialog-actions { flex-direction: column-reverse; }.dialog-actions button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
