/* ============================================================
   DoneList — marketing site
   Brand: deep pine green, blush pink, warm cream, butter yellow.
   Type: Fraunces (display) + Hanken Grotesk (body).
   ============================================================ */

:root {
  --green: #1B5E48;
  --green-700: #16513D;
  --green-900: #0F3328;     /* deep contrast sections */
  --green-ink: #15332A;
  --pink: #F9E4E7;
  --pink-soft: #FCEFF1;
  --cream: #F5F1E8;
  --cream-soft: #FBF8F0;
  --yellow: #E7B84B;
  --white: #ffffff;

  --ink: #15332A;
  --ink-2: #5E6B63;
  --ink-3: #8C948A;
  --line: rgba(21, 51, 42, .10);
  --line-strong: rgba(21, 51, 42, .18);

  --on-green: #F1ECE0;
  --on-green-dim: rgba(241, 236, 224, .66);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(21, 51, 42, .06);
  --shadow-md: 0 22px 44px -26px rgba(21, 51, 42, .34);
  --shadow-lg: 0 50px 90px -34px rgba(15, 51, 40, .42);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 40px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pink);
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }
button { font: inherit; color: inherit; background: none; border: 0; }

/* subtle film-grain texture for warmth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 124px); position: relative; }
.section--cream { background: var(--cream); }
.section--pink { background: var(--pink); }
.section--green { background: var(--green-900); color: var(--on-green); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12.5px;
  color: var(--green);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--yellow); border-radius: 2px; }
.eyebrow--light { color: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .25s ease, background .25s ease, color .2s, filter .2s;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn__icon { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: var(--cream); box-shadow: 0 14px 26px -14px rgba(27, 94, 72, .7); }
.btn--primary:hover { transform: translateY(-2px); background: var(--green-700); box-shadow: 0 20px 36px -14px rgba(27, 94, 72, .8); }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--line-strong); }
.btn--ghost:hover { transform: translateY(-2px); background: rgba(27, 94, 72, .07); border-color: var(--green); }
.btn--on-green { background: var(--yellow); color: var(--green-900); box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .5); }
.btn--on-green:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav--scrolled { background: color-mix(in srgb, var(--pink) 80%, transparent); backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 1px 0 var(--line); }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -.02em; color: var(--green-ink); }
.logo-mark { width: 32px; height: 32px; border-radius: 10px; background: var(--green); color: var(--cream); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.logo-mark svg { width: 19px; height: 19px; }
.logo-mark--light { background: var(--yellow); color: var(--green-900); }
.nav__links { margin-left: auto; display: flex; gap: 30px; font-weight: 500; }
.nav__links a { position: relative; color: var(--ink-2); padding-block: 6px; transition: color .2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--green); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--green); border-radius: 2px; transition: width .25s; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(124px, 17vh, 184px) 0 clamp(56px, 8vw, 92px);
  background: linear-gradient(180deg, var(--pink) 0%, var(--pink-soft) 58%, var(--cream) 100%);
  overflow: hidden;
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__title { font-size: clamp(44px, 6.4vw, 84px); font-weight: 600; letter-spacing: -.025em; line-height: .98; color: var(--green-ink); }
.hero__title em { font-style: italic; font-weight: 500; color: var(--green); }
.hero__sub { margin: 26px 0 0; max-width: 32ch; font-size: clamp(17px, 1.3vw, 20px); color: var(--ink-2); }
.hero__sub strong { color: var(--green); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; align-items: center; gap: 13px; margin-top: 28px; font-size: 14px; color: var(--ink-3); font-weight: 500; }
.hero__trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); display: inline-block; }

/* organic blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(48px); z-index: 1; pointer-events: none; }
.blob--1 { width: 460px; height: 460px; background: radial-gradient(circle, #F6C6CF, transparent 70%); top: -130px; right: -90px; opacity: .6; animation: float 13s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; background: radial-gradient(circle, #BFE3CE, transparent 70%); bottom: -140px; left: -110px; opacity: .5; animation: float 16s ease-in-out infinite reverse; }
.blob--3 { width: 240px; height: 240px; background: radial-gradient(circle, #F3D88A, transparent 70%); top: 42%; left: 46%; opacity: .42; animation: float 11s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }

/* phone mockup */
.hero__visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 300 / 620;
  background: linear-gradient(160deg, #21251F, #0c0e0b);
  border-radius: 46px;
  padding: 13px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, .06);
  animation: float 9s ease-in-out infinite;
}
.phone__island { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 3; }
.phone__screen { height: 100%; border-radius: 34px; background: linear-gradient(180deg, var(--pink) 0%, #F7DCE1 100%); overflow: hidden; position: relative; }
.mini { padding: 46px 16px 16px; height: 100%; display: flex; flex-direction: column; gap: 11px; }
.mini__top { display: flex; align-items: flex-start; justify-content: space-between; }
.mini__eyebrow { font-size: 11px; color: var(--ink-2); font-weight: 600; }
.mini__title { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--green-ink); line-height: 1; margin: 3px 0; }
.mini__date { font-size: 10.5px; color: var(--ink-2); }
.ring { width: 50px; height: 50px; flex: none; }
.ring__track { fill: none; stroke: rgba(21, 51, 42, .12); stroke-width: 5; }
.ring__fill { fill: none; stroke: var(--green); stroke-width: 5; stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; stroke-dasharray: 126; stroke-dashoffset: 126; animation: ring 1.5s 1.7s cubic-bezier(.22, 1, .36, 1) forwards; }
@keyframes ring { to { stroke-dashoffset: 44; } }
.mini__sec { font-size: 12px; font-weight: 700; color: var(--green); margin-top: 2px; }
.mini__list { display: flex; flex-direction: column; gap: 9px; }
.task { display: flex; align-items: center; gap: 11px; background: #fff; border-radius: 16px; padding: 13px 14px; box-shadow: 0 8px 16px -12px rgba(21, 51, 42, .45); font-size: 13px; font-weight: 500; color: var(--ink); }
.task__t { line-height: 1.3; }
.check { flex: none; width: 21px; height: 21px; border-radius: 50%; border: 2px solid var(--line-strong); background: transparent; display: grid; place-items: center; }
.check::after { content: ""; width: 11px; height: 11px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' stroke='%23F6F2E8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); opacity: 0; transform: scale(.4); }
.task.is-done .check { animation: checkFill .5s var(--d, .5s) cubic-bezier(.22, 1, .36, 1) both; }
.task.is-done .check::after { animation: checkMark .4s calc(var(--d, .5s) + .1s) ease both; }
.task.is-done .task__t { animation: strike .4s calc(var(--d, .5s) + .12s) both; }
@keyframes checkFill { 0% { background: transparent; border-color: var(--line-strong); transform: scale(1); } 55% { transform: scale(1.22); } 100% { background: var(--green); border-color: var(--green); transform: scale(1); } }
@keyframes checkMark { 0% { opacity: 0; transform: scale(.4); } 100% { opacity: 1; transform: scale(1); } }
@keyframes strike { from { color: var(--ink); text-decoration: line-through; text-decoration-color: transparent; } to { color: var(--ink-3); text-decoration: line-through; text-decoration-color: var(--ink-3); } }
.mini__fab { position: absolute; right: 16px; bottom: 16px; width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--cream); display: grid; place-items: center; box-shadow: 0 12px 22px -8px rgba(27, 94, 72, .85); }
.mini__fab svg { width: 22px; height: 22px; }

/* ---------- Section heads ---------- */
.section-head { max-width: 650px; margin: 0 0 clamp(40px, 5vw, 64px); }
.section-head__title { font-size: clamp(30px, 4vw, 50px); color: var(--green-ink); letter-spacing: -.02em; line-height: 1.04; }
.section-head__title--light { color: var(--cream); }
.section-head__lead { margin-top: 16px; font-size: 18px; color: var(--ink-2); }

/* ---------- Benefits ---------- */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s; }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.benefit__icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; }
.benefit__icon svg { width: 26px; height: 26px; }
.icon--green { background: rgba(27, 94, 72, .1); color: var(--green); }
.icon--yellow { background: rgba(231, 184, 75, .2); color: #997519; }
.benefit__title { font-size: 21px; font-weight: 600; color: var(--green-ink); margin-bottom: 9px; }
.benefit__text { font-size: 15.5px; color: var(--ink-2); line-height: 1.62; }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; padding-block: clamp(28px, 4vw, 54px); }
.feature--reverse .feature__body { order: 2; }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: rgba(27, 94, 72, .09); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.feature__title { font-size: clamp(26px, 3.4vw, 40px); color: var(--green-ink); letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.06; }
.feature__text { font-size: 17px; color: var(--ink-2); max-width: 44ch; }
.feature__media { display: flex; justify-content: center; }

.card-stack, .lists-mock { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 12px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-md); }
.mock-row { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 14px 15px; font-size: 15px; font-weight: 500; box-shadow: 0 6px 14px -12px rgba(21, 51, 42, .5); }
.mock-check { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-strong); }
.mock-check.on { border-color: var(--green); background: var(--green) no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' stroke='%23F6F2E8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.mock-line { flex: 1; }
.mock-row:has(.on) .mock-line { color: var(--ink-3); text-decoration: line-through; }
.mock-chip { font-size: 11.5px; font-weight: 600; color: var(--ink-2); background: var(--cream); padding: 4px 9px; border-radius: 999px; }
.chip-red { color: #C0453F; background: rgba(217, 83, 79, .12); }

.quickadd { width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-md); }
.quickadd__type { font-family: var(--font-display); font-size: 22px; color: var(--green-ink); line-height: 1.35; }
.quickadd__type b { color: var(--green); font-weight: 600; background: linear-gradient(transparent 62%, rgba(231, 184, 75, .55) 0); }
.quickadd__type::after { content: ""; display: inline-block; width: 2px; height: 1.05em; background: var(--green); margin-left: 3px; vertical-align: -4px; animation: caret 1.1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.quickadd__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.qpill { font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: var(--cream); color: var(--ink-2); }
.qpill--on { background: var(--green); color: var(--cream); }
.qpill--pri { background: rgba(217, 83, 79, .12); color: #C0453F; }

.list-row { display: flex; align-items: center; gap: 13px; background: #fff; border-radius: 14px; padding: 15px; font-weight: 600; color: var(--green-ink); box-shadow: 0 6px 14px -12px rgba(21, 51, 42, .5); }
.list-row b { margin-left: auto; color: var(--ink-3); font-weight: 600; }
.list-dot { width: 30px; height: 30px; border-radius: 9px; background: color-mix(in srgb, var(--c) 18%, transparent); position: relative; }
.list-dot::after { content: ""; position: absolute; inset: 0; margin: auto; width: 11px; height: 11px; border-radius: 3px; background: var(--c); }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 4vw, 46px); line-height: 1.22; letter-spacing: -.015em; max-width: 19ch; margin: 14px auto 0; color: var(--cream); }
.manifesto__quote em { font-style: italic; color: var(--yellow); }

/* ---------- CTA ---------- */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta__inner { position: relative; z-index: 2; }
.cta__title { font-size: clamp(34px, 5vw, 62px); color: var(--green-ink); letter-spacing: -.025em; }
.cta__sub { margin: 16px 0 30px; font-size: 19px; color: var(--ink-2); }
.cta__fine { margin-top: 18px; font-size: 13.5px; color: var(--ink-3); }
.blob--cta { width: 540px; height: 540px; background: radial-gradient(circle, #F6C6CF, transparent 68%); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: .5; filter: blur(64px); animation: none; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: var(--on-green); padding: clamp(56px, 7vw, 84px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; }
.footer .nav__name, .footer .nav__logo { color: var(--cream); }
.footer__tag { margin-top: 14px; color: var(--on-green-dim); max-width: 26ch; font-size: 15px; }
.footer__col h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; color: var(--on-green-dim); margin-bottom: 10px; font-size: 15px; transition: color .2s; }
.footer__col a:hover { color: var(--cream); }
.footer__note { color: var(--on-green-dim); font-size: 14.5px; line-height: 1.6; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(241, 236, 224, .14); font-size: 13.5px; color: var(--on-green-dim); }

/* ---------- About page ---------- */
.about-hero { padding: clamp(140px, 18vh, 200px) 0 clamp(48px, 7vw, 88px); background: linear-gradient(180deg, var(--pink), var(--pink-soft)); text-align: center; overflow: hidden; }
.about-hero__inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.about-hero .eyebrow { display: inline-flex; }
.about-hero__title { font-size: clamp(38px, 5.6vw, 74px); color: var(--green-ink); letter-spacing: -.025em; line-height: 1.02; }
.about-hero__title em { font-style: italic; font-weight: 500; color: var(--green); }
.about-hero__lead { max-width: 60ch; margin: 26px auto 0; font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); }

.story__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(24px, 5vw, 64px); }
.story__h { font-size: clamp(26px, 3vw, 38px); color: var(--green-ink); position: sticky; top: 100px; }
.story__prose p { font-size: 18px; color: var(--ink-2); margin-bottom: 20px; line-height: 1.66; }
.story__prose p:last-child { margin-bottom: 0; }
.story__prose strong { color: var(--green); font-weight: 600; }

.principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.principle:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.principle__num { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #997519; background: rgba(231, 184, 75, .18); width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; }
.principle h3 { font-size: 19px; color: var(--green-ink); margin-bottom: 8px; }
.principle p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

.promises__list { max-width: 700px; margin: 0 0 40px; display: grid; gap: 14px; }
.promises__list li { display: flex; align-items: flex-start; gap: 14px; font-size: clamp(17px, 1.6vw, 21px); font-family: var(--font-display); font-weight: 500; color: var(--cream); line-height: 1.4; }
.promises__list span { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(231, 184, 75, .18); color: var(--yellow); display: grid; place-items: center; font-size: 13px; margin-top: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 22px; }
  .benefits__grid, .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .story__grid { grid-template-columns: 1fr; gap: 28px; }
  .feature--reverse .feature__body { order: 0; }
  .feature__text { max-width: none; }
  .feature__media { order: 2; }
  .story__h { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream); padding: 8px 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: transform .25s, opacity .25s, visibility .25s;
  }
  .nav--open .nav__links { transform: none; opacity: 1; visibility: visible; }
  .nav__links a { padding: 14px var(--pad); }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; margin-left: auto; cursor: pointer; }
  .nav-toggle span { width: 22px; height: 2px; background: var(--green-ink); border-radius: 2px; transition: transform .25s; }
  .nav--open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav--open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .benefits__grid, .principles__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .ring__fill { stroke-dashoffset: 44; }
  .task.is-done .check { background: var(--green); border-color: var(--green); }
  .task.is-done .check::after { opacity: 1; transform: none; }
  .task.is-done .task__t { color: var(--ink-3); text-decoration: line-through; }
  .quickadd__type::after { display: none; }
}
