/* Wellnest landing. Palette and type follow the apps (docs/DESIGN.md); layout decisions in docs/research/landing/README.md. */

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --paper: #F5F6FA;
  --cream: #FBF1DF;
  --card: #FFFFFF;
  --ink: #15171F;
  --muted: #5F6477;
  --line: #E6E8EF;
  --coral: #FF6B5E;
  --coral-deep: #C93A2F;   /* text links: 5.1:1 on white */
  --coral-soft: #FFE5E1;
  --sky: #4C7DFF;
  --sky-soft: #E2EAFF;
  --green: #3FAE7C;
  --green-soft: #DFF4C6;
  --sun: #FFC531;
  --sun-soft: #FFF2C4;
  --lavender: #8B6CF6;
  --lavender-soft: #ECE6FF;
  --radius: 28px;
  --shadow: 0 18px 40px rgba(21, 23, 31, 0.10);
  --wrap: 1180px;
  --font: 'Nunito', ui-rounded, 'SF Pro Rounded', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 1.125rem; line-height: 1.6; font-weight: 500; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 8px; }
h1, h2, h3 { margin: 0; font-weight: 900; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.08; }
h3 { font-size: 1.25rem; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 20px; }
.narrow { max-width: 760px; }
.section { padding-block: clamp(64px, 9vw, 112px); }
.section-lede, .lede { color: var(--muted); font-size: 1.2rem; }
.lede { font-size: clamp(1.15rem, 1.6vw, 1.3rem); max-width: 34em; }
.eyebrow { display: inline-block; font-weight: 800; font-size: 0.95rem; color: var(--ink); background: rgba(255, 255, 255, 0.75); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.kicker { display: inline-block; font-weight: 900; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.more { display: inline-flex; gap: 6px; align-items: center; font-weight: 800; color: var(--coral-deep); text-decoration: none; }
.more:hover { text-decoration: underline; }

/* tints */
.tint-sun.kicker, .tint-sun .kicker { background: var(--sun-soft); color: #8A6200; }
.tint-sky.kicker, .tint-sky .kicker { background: var(--sky-soft); color: #2F56C9; }
.tint-green.kicker, .tint-green .kicker { background: var(--green-soft); color: #23704D; }
.tint-coral.kicker, .tint-coral .kicker { background: var(--coral-soft); color: #B8372B; }
.tint-lavender.kicker, .tint-lavender .kicker { background: var(--lavender-soft); color: #5B3FCB; }
.panel-sun { background: var(--sun-soft); }
.panel-sky { background: var(--sky-soft); }
.panel-green { background: var(--green-soft); }
.panel-coral { background: var(--coral-soft); }
.panel-lavender { background: var(--lavender-soft); }

/* buttons and download */
.pill { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 20px; border-radius: 999px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.pill-coral { background: var(--coral); color: var(--ink); }   /* ink on coral is 6.4:1; white would be 2.8:1 */
.pill-coral:hover { background: #FF8A7F; }
.soon { display: flex; gap: 12px; align-items: flex-start; max-width: 30em; padding: 16px 18px; border-radius: 20px; font-size: 1rem; line-height: 1.45; margin-top: 8px; }
.soon-light { background: var(--card); box-shadow: var(--shadow); }
.soon-dark { background: rgba(255, 255, 255, 0.4); color: var(--ink); }
.soon strong { display: block; font-size: 1.05rem; }
.soon-dot { flex: none; width: 12px; height: 12px; margin-top: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(63, 174, 124, 0.2); }
.soon-dark .soon-dot { background: var(--ink); box-shadow: 0 0 0 5px rgba(21, 23, 31, 0.15); }
.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; }
.badge-apple img { height: 50px; width: auto; }
.badge-google img { height: 74px; width: auto; margin: -12px; }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(251, 241, 223, 0.86); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); }
.header-row { display: flex; align-items: center; gap: 24px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.35rem; letter-spacing: -0.02em; text-decoration: none; }
.brand img { border-radius: 10px; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 700; color: var(--ink); }
.nav a:hover { color: var(--coral-deep); }
@media (max-width: 760px) { .nav { display: none; } .header-cta { margin-left: auto; } }

/* hero */
.hero { position: relative; overflow: hidden; background: var(--cream); padding-block: clamp(40px, 6vw, 72px) 0; }
.hero-hills { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 46%; object-fit: cover; object-position: center 38%; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; min-height: 640px; }
.hero-copy { padding-bottom: 120px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lede { color: #3F4354; margin-bottom: 20px; }
.hero-visual { position: relative; justify-self: center; padding: 30px 70px 0; align-self: end; }
.phone { position: relative; width: min(300px, 70vw); aspect-ratio: 637 / 1386; padding: 9px; border-radius: 46px; background: var(--ink); box-shadow: 0 30px 60px rgba(21, 23, 31, 0.28); }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 38px; }
.hero-phone { width: min(320px, 72vw); margin-bottom: -150px; }
.float-face { position: absolute; margin: 0; display: grid; justify-items: center; gap: 4px; }
.float-face img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 5px solid var(--ring); box-shadow: 0 0 0 5px #fff, var(--shadow); }
.float-face figcaption { display: grid; justify-items: center; }
.face-score { margin-top: -18px; min-width: 34px; padding: 1px 8px; border-radius: 999px; background: var(--ring); color: var(--ink); font-weight: 900; font-size: 0.9rem; text-align: center; box-shadow: 0 0 0 3px #fff; }
.face-name { margin-top: 4px; padding: 0 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); font-weight: 800; font-size: 0.9rem; }
.face-a { left: -6px; top: 150px; }
.face-b { right: -4px; top: 60px; }
.float-nudge { position: absolute; right: -30px; top: 330px; display: flex; gap: 10px; align-items: center; padding: 10px 16px 10px 10px; border-radius: 20px; background: var(--sky-soft); box-shadow: var(--shadow); max-width: 230px; }
.float-nudge img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.float-nudge strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.float-nudge small { color: var(--muted); font-weight: 700; }
.float-chip { position: absolute; left: 10px; top: 380px; padding: 8px 14px; border-radius: 999px; background: #fff; font-weight: 800; font-size: 0.95rem; box-shadow: var(--shadow); }
.float-chip::before { content: ''; display: inline-block; width: 10px; height: 10px; margin-right: 8px; border-radius: 50%; background: var(--coral); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; text-align: left; }
  .hero-copy { padding-bottom: 0; }
  .hero-hills { height: 46%; }
  .hero-visual { padding: 20px 56px 0; }
  .hero-phone { margin-bottom: -120px; }
}
@media (max-width: 520px) {
  .hero-visual { padding: 10px 34px 0; }
  .float-face img { width: 64px; height: 64px; border-width: 4px; }
  .face-a { left: -8px; top: 120px; }
  .face-b { right: -8px; top: 36px; }
  .float-nudge { right: -14px; top: 250px; max-width: 190px; padding: 8px 12px 8px 8px; }
  .float-chip { left: -4px; top: 330px; }
}

/* how it works */
.how { background: var(--card); position: relative; z-index: 1; }
.how h2 { margin-bottom: 40px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-n { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; font-weight: 900; font-size: 1.4rem; margin-bottom: 16px; color: #fff; }
.step-1 .step-n { background: var(--sky); }
.step-2 .step-n { background: var(--green); }
.step-3 .step-n { background: var(--coral); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* features */
.feature { background: var(--paper); }
.feature:nth-child(even) { background: var(--card); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.feature-flip .feature-copy { order: 2; }
.feature-copy h2 { margin-bottom: 18px; }
.feature-copy > p { color: #3F4354; max-width: 32em; }
.ticks { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 34px; font-weight: 700; }
.ticks li::before { content: ''; position: absolute; left: 0; top: 5px; width: 20px; height: 20px; border-radius: 50%; background: var(--c, var(--green)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat; }
.ticks.tint-sun { --c: #E0A400; }
.ticks.tint-sky { --c: var(--sky); }
.ticks.tint-green { --c: var(--green); }
.ticks.tint-coral { --c: var(--coral); }
.ticks.tint-lavender { --c: var(--lavender); }
.feature-visual { position: relative; border-radius: 40px; padding: 56px 20px 0; display: grid; justify-items: center; overflow: hidden; min-height: 520px; }
.feature-visual .phone { width: min(280px, 66vw); margin-bottom: -170px; }
.sticker { position: absolute; background: #fff; border-radius: 22px; box-shadow: var(--shadow); padding: 14px 16px; }
.sticker-big { margin: 0; font-weight: 900; font-size: 1.9rem; line-height: 1; }
.sticker-big small { font-size: 0.95rem; color: var(--muted); font-weight: 800; }
.sticker-small { margin: 4px 0 0; font-size: 0.9rem; color: var(--muted); font-weight: 700; }
.sticker-ring { left: 22px; bottom: 44px; display: flex; gap: 12px; align-items: center; }
.sticker-nudges { right: 20px; bottom: 36px; width: 230px; }
.nudge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.nudge { padding: 10px 8px; border-radius: 14px; background: var(--paper); font-weight: 800; font-size: 0.85rem; text-align: center; }
.nudge-on { background: var(--sun); }
.sticker-progress { left: 20px; bottom: 40px; width: 250px; background: var(--green-soft); }
.bar { height: 12px; border-radius: 999px; background: #F3E6C4; margin-top: 10px; overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 999px; background: var(--coral); }
.sticker-breathe { right: 22px; bottom: 40px; padding: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); }
.breathe-disc { display: grid; place-items: center; align-content: center; width: 124px; height: 124px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; box-shadow: 0 0 0 10px rgba(63, 174, 124, 0.25), 0 0 0 22px rgba(63, 174, 124, 0.12); }
.breathe-disc small { font-weight: 800; opacity: 0.85; }
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-flip .feature-copy { order: 0; }
  .feature-visual { min-height: 460px; }
}
@media (max-width: 520px) {
  .feature-visual { min-height: 420px; padding-top: 40px; }
  .sticker-ring, .sticker-progress { left: 12px; bottom: 24px; }
  .sticker-nudges { right: 12px; bottom: 24px; width: 200px; }
  .sticker-breathe { right: 12px; bottom: 24px; }
  .breathe-disc { width: 100px; height: 100px; font-size: 0.9rem; }
}

/* screens strip */
.screens { background: var(--sun-soft); }
.screens h2 { margin-bottom: 8px; }
.screens-strip { --edge: max(20px, calc((100vw - var(--wrap)) / 2 + 20px)); display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 36px var(--edge) 24px; scroll-padding-inline: var(--edge); scrollbar-width: thin; }
.screen { flex: none; width: 232px; margin: 0; scroll-snap-align: start; }
.screen img { border-radius: 30px; box-shadow: var(--shadow); background: #fff; }
.screen figcaption { margin-top: 14px; font-weight: 700; font-size: 0.98rem; line-height: 1.35; }

/* privacy */
.privacy { background: var(--lavender-soft); }
.privacy-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); }
.privacy h2 { margin-bottom: 16px; }
.privacy-points { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; }
.privacy-points h3 { margin-bottom: 6px; }
.privacy-points h3::before { content: ''; display: block; width: 36px; height: 6px; border-radius: 999px; background: var(--lavender); margin-bottom: 12px; }
.privacy-points p { color: #454A5C; }
@media (max-width: 860px) { .privacy-grid, .privacy-points { grid-template-columns: 1fr; } }

/* guides */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guide-card { display: flex; flex-direction: column; background: var(--card); border-radius: var(--radius); overflow: hidden; text-decoration: none; box-shadow: 0 8px 24px rgba(21, 23, 31, 0.06); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) { .guide-card, .guide-card:hover { transition: none; transform: none; } }
.guide-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.guide-card-body { display: flex; flex-direction: column; padding: 20px 22px 24px; flex: 1; }
.guide-card .kicker { align-self: flex-start; margin-bottom: 10px; }
.guide-card-title { font-weight: 900; font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 8px; }
.guide-card-desc { color: var(--muted); font-size: 1rem; line-height: 1.5; margin-bottom: 14px; }
.guide-card-meta { margin-top: auto; font-weight: 800; font-size: 0.9rem; color: var(--muted); }
@media (max-width: 1000px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .guide-grid { grid-template-columns: 1fr; } }

/* faq */
.faq { background: var(--card); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro h2 { margin-bottom: 14px; }
.faq-intro a { color: var(--coral-deep); font-weight: 800; }
.faq-item { border-bottom: 2px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; font-weight: 800; font-size: 1.15rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--paper); font-size: 1.3rem; line-height: 1; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--coral-soft); }
.faq-answer { padding: 0 44px 20px 0; color: #3F4354; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } .faq-intro { position: static; } }

/* band */
.band { background: var(--coral); color: var(--ink); padding-block: clamp(64px, 9vw, 104px); }
.band-inner { display: grid; justify-items: center; text-align: center; }
.band-inner img { border-radius: 26px; box-shadow: 0 20px 40px rgba(120, 30, 20, 0.3); margin-bottom: 26px; }
.band h2 { margin-bottom: 12px; }
.band p { max-width: 34em; font-size: 1.2rem; }
.band .soon { text-align: left; }
.band-links a { font-weight: 900; }

/* footer */
.site-footer { background: var(--card); padding-block: 64px 32px; font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.6fr 0.8fr 0.8fr; gap: 32px; }
.footer-brand p { color: var(--muted); margin-top: 14px; }
.footer-brand a { color: var(--ink); font-weight: 700; }
.footer-head { font-weight: 900; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer ul a { text-decoration: none; color: var(--muted); font-weight: 600; }
.site-footer ul a:hover { color: var(--ink); text-decoration: underline; }
.footer-base { margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--line); color: var(--muted); font-size: 0.9rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* breadcrumbs */
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 24px 0 0; font-size: 0.95rem; color: var(--muted); font-weight: 700; }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: #B6BAC8; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* article */
.article-page { background: var(--paper); }
.article-head { max-width: 900px; padding-top: 28px; }
.article-head h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 14px; }
.byline { color: var(--muted); font-weight: 700; font-size: 1rem; }
.feature-image { margin: 28px auto 0; }
.feature-image img { width: 100%; border-radius: 32px; aspect-ratio: 3 / 2; object-fit: cover; }
.article-grid { display: grid; grid-template-columns: 250px minmax(0, 700px); gap: 64px; justify-content: center; padding-block: 48px 72px; }
.toc { position: sticky; top: 96px; align-self: start; font-size: 0.95rem; }
.toc-head { font-weight: 900; margin-bottom: 10px; }
.toc ol { list-style: none; margin: 0; padding: 0 0 0 14px; border-left: 3px solid var(--line); display: grid; gap: 10px; }
.toc a { text-decoration: none; color: var(--muted); font-weight: 700; line-height: 1.35; display: block; }
.toc a:hover { color: var(--ink); }
.prose { font-size: 1.15rem; line-height: 1.7; }
.prose p { margin-bottom: 1.2em; }
.prose .answer { font-size: 1.28rem; line-height: 1.6; font-weight: 700; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 2.2em 0 0.7em; scroll-margin-top: 90px; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.3em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.6em; padding-left: 0.2em; }
.prose a { color: var(--coral-deep); font-weight: 800; }
.howto { background: var(--card); border-radius: var(--radius); padding: 8px 28px 16px; margin: 32px 0; }
.howto h2 { margin-top: 0.9em; }
.screen-figure { margin: 32px 0; border-radius: 32px; padding: 32px 20px 24px; display: grid; justify-items: center; }
.screen-figure img { width: min(300px, 80%); border-radius: 30px; box-shadow: var(--shadow); }
.screen-figure figcaption { margin-top: 16px; font-size: 1rem; font-weight: 700; color: #3F4354; text-align: center; max-width: 30em; }
.callout { display: flex; gap: 18px; align-items: flex-start; border-radius: var(--radius); padding: 24px; margin: 32px 0; }
.callout.tint-sun { background: var(--sun-soft); }
.callout.tint-sky { background: var(--sky-soft); }
.callout.tint-green { background: var(--green-soft); }
.callout.tint-coral { background: var(--coral-soft); }
.callout.tint-lavender { background: var(--lavender-soft); }
.callout img { border-radius: 14px; flex: none; }
.callout p { margin-bottom: 0.4em; font-size: 1.05rem; }
.callout-title { font-weight: 900; font-size: 1.25rem !important; }
.callout .soon { background: rgba(255, 255, 255, 0.8); box-shadow: none; margin-top: 12px; }
.article-faq .qa { margin-bottom: 1.4em; }
.article-faq h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.related { background: var(--card); }
.related h2 { margin-bottom: 32px; }
@media (max-width: 1000px) {
  .article-grid { grid-template-columns: minmax(0, 700px); }
  .toc { position: static; background: var(--card); border-radius: 20px; padding: 18px 20px; }
}
@media (max-width: 560px) { .callout { flex-direction: column; } .howto { padding: 4px 18px 10px; } }

/* index and plain pages */
.index-head { padding: 28px 0 40px; }
.index-head h1 { margin-bottom: 12px; }
.index-page { padding-bottom: 96px; }
.plain-page { padding-bottom: 96px; }
.plain-page h1 { margin: 28px 0 16px; font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.plain-page h2 { font-size: 1.6rem; margin: 2em 0 0.6em; }
.plain-page ul, .plain-page ol { padding-left: 1.3em; }
.plain-page li { margin-bottom: 0.5em; }
.plain-page a { color: var(--coral-deep); font-weight: 800; }
