/* =========================================================
   TaskCaddy — marketing site
   Warm editorial design system  ·  Newsreader × Inter × Nunito
   ========================================================= */

:root {
  --bg:        #f5f1e8;
  --bg-2:      #efe8da;
  --card:      #fffdf8;
  --ink:       #16233b;
  --ink-soft:  #2a3852;
  --slate:     #6c7280;
  --slate-2:   #8b8f97;
  --teal:      #2e8b78;
  --teal-d:    #24705f;
  --mint:      #9fd6c7;
  --mint-soft: #e5f0eb;
  --night:     #101822;

  --line:      #e6dfce;
  --line-2:    #efe9dc;
  --line-dark: rgba(159, 214, 199, 0.16);

  --radius-sm: 12px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(22, 35, 59, 0.05);
  --shadow-sm: 0 2px 8px -3px rgba(22, 35, 59, 0.14);
  --shadow:    0 20px 44px -26px rgba(22, 35, 59, 0.30);
  --shadow-lg: 0 40px 80px -40px rgba(22, 35, 59, 0.34);

  --container: 1160px;
  --measure:   680px;
  --gutter:    clamp(22px, 5vw, 48px);

  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);

  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --brand: "Nunito", var(--sans);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.bg-sand { background: var(--bg-2); }

h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: 1.28rem; line-height: 1.2; }
p { text-wrap: pretty; }
em { font-style: italic; color: var(--teal-d); }

.lead { font-family: var(--sans); font-size: clamp(1.06rem, 1.4vw, 1.24rem); color: var(--slate); line-height: 1.6; font-weight: 400; }

.eyebrow { display: inline-block; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.01em; color: var(--teal-d); margin-bottom: 16px; }
.eyebrow--dark { color: var(--mint); }
.section-head { max-width: var(--measure); }
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }

/* ---------- Brand / wordmark ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { height: 40px; width: auto; }
.brand__word { font-family: var(--brand); font-weight: 800; font-size: 1.34rem; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.brand__word span { color: var(--teal); }
.brand__mark--dark { display: none; }

/* ---------- Theme toggle ---------- */
.theme-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); color: var(--ink); transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s; }
.theme-toggle:hover { color: var(--teal-d); border-color: var(--teal); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .i-sun { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn .ar { transition: transform 0.25s var(--ease-out); }
.btn:hover .ar { transform: translateX(3px); }
.btn--primary { background: var(--ink); color: #faf7f0; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-d); transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn:active { transform: translateY(0) scale(0.985); transition-duration: 0.08s; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 241, 232, 0.8);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled { border-color: var(--line); background: rgba(245, 241, 232, 0.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand__mark { transition: transform 0.3s var(--ease-out); }
.brand:hover .brand__mark { transform: rotate(-4deg) scale(1.04); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-size: 0.95rem; font-weight: 450; color: var(--slate); padding: 8px 15px; border-radius: 9px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); background: rgba(22, 35, 59, 0.05); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-weight: 600; font-size: 0.92rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav__phone svg { width: 15px; height: 15px; color: var(--teal); }
.nav__toggle { display: none; background: transparent; border: 0; padding: 8px; color: var(--ink); }

/* ---------- Hero (centered editorial) ---------- */
.hero { position: relative; text-align: center; padding-block: clamp(60px, 9vw, 124px) clamp(48px, 7vw, 92px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 92%; height: 132%; z-index: 0; pointer-events: none;
  filter: blur(100px); opacity: 0.5;
  background: radial-gradient(40% 40% at 50% 34%, rgba(159, 214, 199, 0.5), transparent 66%),
              radial-gradient(28% 30% at 62% 46%, rgba(46, 139, 120, 0.2), transparent 66%);
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: 1.02; letter-spacing: -0.025em; }
.hero h1 .ln { display: inline-block; }
.hero__sub { margin: 28px auto 0; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.hero__note { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--slate-2); }
.hero__note svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }

/* ---------- Integrations ---------- */
.integrations { padding-block: clamp(30px, 4vw, 46px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.integrations__inner { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.integrations__label { font-size: 0.86rem; color: var(--slate-2); }
.integrations__row { display: flex; align-items: center; gap: 14px 38px; flex-wrap: wrap; justify-content: center; }
.integrations__row span { font-family: var(--serif); font-weight: 500; font-size: 1.12rem; color: var(--slate); opacity: 0.62; transition: opacity 0.25s, color 0.25s; }
.integrations__row span:hover { opacity: 1; color: var(--ink); }

/* ---------- Problem ---------- */
.problem__grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(32px, 6vw, 76px); align-items: center; margin-top: 56px; }
.problem__list { display: grid; gap: 12px; }
.pain {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.pain:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: #dbd2be; }
.pain__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--mint-soft); color: var(--teal-d); }
.pain__icon svg { width: 20px; height: 20px; }
.pain p { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.pain span { display: block; color: var(--slate); font-size: 0.9rem; font-weight: 400; margin-top: 3px; line-height: 1.5; }
.problem__punch { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 500; color: var(--ink); line-height: 1.24; letter-spacing: -0.015em; }
.problem__punch .hl { color: var(--teal-d); font-style: italic; }

/* ---------- Cards (what we build) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.32s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #dbd2be; }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--mint-soft); color: var(--teal-d); margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 0.93rem; line-height: 1.55; }
.cards__note { margin-top: 34px; max-width: 760px; margin-inline: auto; text-align: center; font-size: 1.02rem; color: var(--slate); line-height: 1.62; }
.cards__note b { color: var(--ink); font-weight: 600; }

/* ---------- How it works ---------- */
.how__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 80px); align-items: center; margin-top: 52px; }
.steps { display: grid; gap: 14px; }
.step { display: flex; gap: 18px; align-items: flex-start; padding: 24px 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step__num { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: #faf7f0; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--slate); font-size: 0.95rem; line-height: 1.55; }
.how__aside h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 16px; }
.how__aside p { color: var(--slate); font-size: 1.05rem; margin-bottom: 26px; }

/* ---------- ROI ---------- */
.roi { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: var(--night); }
.roi::before { content: ""; position: absolute; inset: 0; opacity: 0.7; background: radial-gradient(44% 62% at 84% 12%, rgba(46, 139, 120, 0.32), transparent 62%), radial-gradient(30% 50% at 8% 92%, rgba(159, 214, 199, 0.12), transparent 60%); }
.roi__inner { position: relative; z-index: 2; padding: clamp(44px, 6vw, 82px) clamp(28px, 5vw, 64px); }
.roi__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.roi__quote { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; color: #fff; line-height: 1.22; letter-spacing: -0.02em; }
.roi__quote em { color: var(--mint); }
.roi__stats { display: grid; gap: 12px; }
.stat { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 22px 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; transition: border-color 0.3s, background 0.3s; }
.stat:hover { border-color: rgba(159, 214, 199, 0.42); background: rgba(255, 255, 255, 0.03); }
.stat__num { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--mint); letter-spacing: -0.02em; font-feature-settings: "tnum" 1; }
.stat__label { color: #93a1b5; font-size: 0.9rem; text-align: right; max-width: 22ch; }

/* ---------- Who it's for ---------- */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.chip { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s; }
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #dbd2be; }
.chip__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--mint-soft); color: var(--teal-d); }
.chip__icon svg { width: 21px; height: 21px; }
.chip span { font-weight: 600; color: var(--ink); font-size: 0.95rem; letter-spacing: -0.01em; }

/* ---------- Mission (why TaskCaddy) ---------- */
.mission { max-width: 720px; margin: 30px auto 0; text-align: center; }
.mission p { color: var(--slate); font-size: 1.1rem; line-height: 1.68; margin-bottom: 16px; }
.mission p:last-child { margin-bottom: 0; }
.mission p b { color: var(--ink); font-weight: 600; }
.cards--3 .card { text-align: center; }
.cards--3 .card__icon { margin-inline: auto; }

/* ---------- Final CTA + contact ---------- */
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.cta__copy h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
.cta__contacts { margin-top: 32px; display: grid; gap: 12px; }
.contact-row { display: flex; align-items: center; gap: 14px; color: var(--slate); font-size: 1rem; }
.contact-row a { font-weight: 600; color: var(--ink); }
.contact-row a:hover { color: var(--teal-d); }
.contact-row__icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--mint-soft); color: var(--teal-d); flex-shrink: 0; }
.contact-row__icon svg { width: 19px; height: 19px; }

.form-card { background: var(--card); border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.form-card h3 { margin-bottom: 6px; font-size: 1.4rem; }
.form-card p.hint { color: var(--slate); font-size: 0.93rem; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.97rem; color: var(--ink); background: #fbf9f4;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #b3aa98; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(46, 139, 120, 0.1); background: #fff; }
.field textarea { resize: vertical; min-height: 92px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.form-error { margin-top: 12px; text-align: center; font-size: 0.86rem; color: #c0492e; }
.form-error a { font-weight: 600; color: inherit; text-decoration: underline; }
.form-note { margin-top: 15px; text-align: center; font-size: 0.82rem; color: var(--slate-2); }
.form-success { display: none; text-align: center; padding: 28px 0; }
.form-success.is-visible { display: block; }
.form-success .check { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--mint-soft); color: var(--teal-d); display: grid; place-items: center; }
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--slate); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #93a1b5; padding-block: 56px 34px; }
.footer .brand__word { color: #fff; }
.footer .brand__word span { color: var(--mint); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer__brand p { max-width: 34ch; font-size: 0.93rem; line-height: 1.65; margin-top: 18px; }
.footer__cols { display: flex; gap: clamp(36px, 6vw, 80px); flex-wrap: wrap; }
.footer__col h4 { font-family: var(--sans); color: #fff; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; font-size: 0.93rem; margin-bottom: 10px; color: #93a1b5; transition: color 0.2s; }
.footer__col a:hover { color: var(--mint); }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: #74829a; }
.footer__bottom .tag { color: var(--mint); font-family: var(--serif); font-style: italic; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; }
  .how__grid, .roi__grid, .about__grid, .cta__grid, .problem__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 320px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 14px var(--gutter) 22px; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a { padding: 13px 6px; color: var(--ink); border-bottom: 1px solid var(--line-2); border-radius: 0; }
}
@media (max-width: 640px) {
  .nav__actions .btn--primary { display: none; }
  .cards { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
}
@media (max-width: 420px) {
  .audience { grid-template-columns: 1fr; }
}

/* =========================================================
   Dark mode
   ========================================================= */
[data-theme="dark"] {
  --bg:        #0f141b;
  --bg-2:      #141b26;
  --card:      #161d29;
  --ink:       #eef2f8;
  --ink-soft:  #cfd6e2;
  --slate:     #9aa3b2;
  --slate-2:   #7c8494;
  --teal:      #37b89a;
  --teal-d:    #5fccb0;
  --mint:      #9fd6c7;
  --mint-soft: #16302a;
  --line:      rgba(255, 255, 255, 0.10);
  --line-2:    rgba(255, 255, 255, 0.06);
  --line-dark: rgba(159, 214, 199, 0.16);
  --night:     #0a0e14;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 10px -3px rgba(0, 0, 0, 0.5);
  --shadow:    0 20px 44px -26px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 80px -40px rgba(0, 0, 0, 0.78);
}

[data-theme="dark"] .brand__mark--light { display: none; }
[data-theme="dark"] .brand__mark--dark { display: block; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }
[data-theme="dark"] .theme-toggle .i-sun { display: block; }

[data-theme="dark"] .nav { background: rgba(15, 20, 27, 0.72); }
[data-theme="dark"] .nav.is-scrolled { background: rgba(15, 20, 27, 0.9); border-color: var(--line); }
[data-theme="dark"] .nav__links a:hover { background: rgba(255, 255, 255, 0.06); }

[data-theme="dark"] .btn--primary { background: var(--teal); color: #06231b; box-shadow: 0 10px 30px -12px rgba(55, 184, 154, 0.55); }
[data-theme="dark"] .btn--primary:hover { background: var(--teal-d); }
[data-theme="dark"] .skip-link { background: var(--teal); color: #06231b; }
[data-theme="dark"] .step__num { background: var(--teal); color: #06231b; }

[data-theme="dark"] .footer { background: #0a0e14; }

[data-theme="dark"] .card:hover,
[data-theme="dark"] .pain:hover,
[data-theme="dark"] .chip:hover { border-color: rgba(255, 255, 255, 0.18); }

[data-theme="dark"] .field input,
[data-theme="dark"] .field textarea { background: #10161f; color: var(--ink); }
[data-theme="dark"] .field input::placeholder,
[data-theme="dark"] .field textarea::placeholder { color: #6f7787; }
[data-theme="dark"] .field input:focus,
[data-theme="dark"] .field textarea:focus { background: #131a24; }
[data-theme="dark"] .form-error { color: #f0a08c; }
