/* Nia — niapayments.io shared stylesheet
   Design tokens preserved from the existing production homepage. */

:root {
  --forest: #0F3D2E;
  --forest-deep: #0B2E22;
  --gold: #C9A84C;
  --gold-deep: #AE8E3C;
  --bg: #F0EEE6;
  --surface: #FFFFFF;
  --sage: #E9EEE7;
  --hairline: #E2E7DE;
  --ink: #14231C;
  --muted: #4E5D54;
  --on-green: #F4F6F3;
  --success: #1D7A52;
  --danger: #B3402E;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 40px rgba(15,61,46,0.10), 0 4px 12px rgba(15,61,46,0.06);
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans: 'Figtree', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 300;
  background: var(--forest); color: var(--on-green);
  padding: 12px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 4px;
}
.hero :is(a,button):focus-visible, .positioning :is(a,button):focus-visible,
.contact :is(a,button):focus-visible, .final-cta :is(a,button):focus-visible,
.why-nia :is(a,button):focus-visible, header :is(a,button):focus-visible {
  outline-color: var(--gold);
}

/* Header */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240,238,230,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; max-width: 1080px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand span { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--forest); }
nav[aria-label="Primary"] { display: flex; align-items: center; }
nav[aria-label="Primary"] a {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: 14px;
  margin-left: 26px; white-space: nowrap;
}
nav[aria-label="Primary"] a:hover { color: var(--forest); }
.header-ctas { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer; border: none; font-family: var(--font-sans);
  min-height: 44px;
}
.btn-primary { background: var(--forest); color: var(--on-green); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-text {
  background: transparent; color: var(--forest); padding: 12px 14px; font-weight: 700;
}
.btn-text:hover { color: var(--gold-deep); }
.btn-hero { background: var(--on-green); color: var(--forest); }
.btn-hero:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--on-green); border: 1.5px solid rgba(244,246,243,0.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--on-green); }

.menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; border-radius: 10px; cursor: pointer;
  color: var(--forest);
}
.menu-btn:hover { background: var(--sage); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; background: var(--forest); color: var(--on-green); z-index: 200;
  display: flex; flex-direction: column; padding: 20px 24px 32px;
  transform: translateX(100%); transition: transform .28s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-nav-header .brand span { color: var(--on-green); }
.mobile-nav a {
  color: var(--on-green); font-family: var(--font-serif); font-size: 21px; font-weight: 600;
  text-decoration: none; padding: 16px 4px; border-bottom: 1px solid rgba(244,246,243,0.14);
  min-height: 44px; display: flex; align-items: center;
}
.mobile-nav .btn-primary { margin-top: 24px; background: var(--on-green); color: var(--forest); justify-content: center; font-size: 16px; padding: 14px 22px; }
@media (max-width: 900px) {
  nav[aria-label="Primary"] { display: none; }
  .header-ctas .btn-text { display: none; }
  .menu-btn { display: flex; }
}
@media (min-width: 901px) { .mobile-nav { display: none; } }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--on-green);
  padding: 88px 24px 96px;
  text-align: center;
}
.hero .eyebrow-trust {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  max-width: 780px;
  margin: 0 auto 20px;
  text-wrap: balance;
}
.hero .tagline { font-size: 15px; font-weight: 700; letter-spacing: 0.03em; color: var(--gold); margin-bottom: 14px; }
.hero p.lead {
  font-size: 17px;
  color: rgba(244,246,243,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Section headings shared */
.section-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px; display: block; text-align: center;
}
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: var(--font-serif); font-weight: 600; color: var(--forest);
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.14; text-wrap: balance;
}
.section-head p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-top: 16px; }

/* Anchor targets: keep headings clear of the sticky header */
section[id] { scroll-margin-top: 90px; }

/* Problem section */
.problem { padding: 96px 24px; }

/* Steps */
.steps { padding: 0 24px 96px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1080px; margin: 0 auto; }
.step-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--gold-deep);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.step-num::before {
  content: ""; width: 30px; height: 1.5px; background: var(--gold-deep);
}
.step-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* Screen-story sections (feature sections with phone mockup) */
.story-section {
  padding: 96px 24px;
  display: flex; align-items: center; justify-content: center; gap: 72px;
  max-width: 1080px; margin: 0 auto;
}
.story-section.reverse { flex-direction: row-reverse; }
.story-copy { flex: 0 1 420px; }
.story-copy .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px; display: block;
}
.story-copy h2 {
  font-family: var(--font-serif); font-weight: 600; color: var(--forest);
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; margin-bottom: 16px; text-wrap: balance;
}
.story-copy p { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 380px; margin-bottom: 20px; }
.story-copy ul.feature-points { list-style: none; margin-top: 20px; }
.story-copy ul.feature-points li {
  font-size: 14.5px; color: var(--ink); padding: 9px 0 9px 26px; position: relative;
  border-top: 1px solid var(--hairline);
}
.story-copy ul.feature-points li:first-child { border-top: none; }
.story-copy ul.feature-points li::before {
  content: "◈"; position: absolute; left: 0; color: var(--gold-deep); font-size: 12px; top: 11px;
}

/* Phone mockup */
.phone {
  flex: 0 0 auto; width: 280px; height: 572px; border-radius: 36px;
  background: var(--surface); border: 1px solid var(--hairline);
  box-shadow: 0 30px 60px rgba(15,61,46,0.16), 0 6px 16px rgba(15,61,46,0.08);
  overflow: hidden; position: relative; font-family: var(--font-sans);
}
.phone-status { display: flex; justify-content: space-between; padding: 12px 20px 4px; font-size: 12px; font-weight: 700; color: var(--ink); }
.phone-body { padding: 8px 18px 16px; height: calc(100% - 60px); overflow: hidden; }
.phone-navbar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 58px;
  background: var(--surface); border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-around; padding: 0 8px;
}
.phone-navbar span { font-size: 9.5px; font-weight: 600; color: var(--muted); }
.phone-navbar .active { color: var(--forest); font-weight: 800; }
.row { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--forest); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  font-family: var(--font-serif); flex-shrink: 0;
}
.mini-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px;
  padding: 12px 14px; margin-top: 10px;
}
.mini-label { font-size: 9px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.mini-amount { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--forest); }
.mini-sub { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.progress-track { height: 6px; border-radius: 999px; background: var(--sage); margin-top: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--gold); }
.list-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--hairline); }
.list-row:last-child { border-bottom: none; }
.list-icon { width: 30px; height: 30px; border-radius: 9px; background: var(--sage); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.list-title { font-size: 12px; font-weight: 700; color: var(--ink); }
.list-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }
.list-amt { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--forest); }
.pill { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.pill-done { background: rgba(29,122,82,0.12); color: var(--success); }
.btn-mini { background: var(--forest); color: var(--on-green); border: none; border-radius: 12px; padding: 11px; font-size: 12px; font-weight: 700; width: 100%; margin-top: 12px; }

/* Family responsibilities cards */
.family-grid { padding: 96px 24px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.resp-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 26px; text-align: left;
}
.resp-card .resp-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--sage); color: var(--forest);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 18px;
}
.resp-card h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.resp-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

/* Trust section */
.trust { background: var(--surface); padding: 96px 24px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.trust-list { max-width: 720px; margin: 0 auto; list-style: none; }
.trust-list li {
  display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--hairline); font-size: 15px; color: var(--ink); line-height: 1.55;
}
.trust-list li:first-child { border-top: none; }
.trust-check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--sage); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; }

/* Why Nia exists */
.why-nia { background: var(--forest-deep); color: var(--on-green); padding: 100px 24px; text-align: center; }
.why-nia .section-eyebrow { color: var(--gold); }
.why-nia blockquote {
  font-family: var(--font-serif); font-weight: 500; font-style: normal;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.4; max-width: 720px; margin: 0 auto 24px;
  text-wrap: balance;
}
.why-nia p.follow { font-size: 16px; color: rgba(244,246,243,0.78); max-width: 620px; margin: 0 auto; line-height: 1.65; }

/* Positioning (money-movement clarity) */
.positioning { background: var(--forest); color: var(--on-green); padding: 96px 24px; text-align: center; }
.positioning .section-eyebrow { color: var(--gold); }
.positioning h2 {
  font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.15; max-width: 680px; margin: 0 auto 20px; text-wrap: balance;
}
.positioning p { font-size: 16px; color: rgba(244,246,243,0.78); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* Final CTA */
.final-cta {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--on-green); padding: 96px 24px; text-align: center;
}
.final-cta h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 16px; text-wrap: balance; }
.final-cta p { font-size: 16px; color: rgba(244,246,243,0.8); max-width: 480px; margin: 0 auto 32px; }
.final-cta .hero-ctas { margin-top: 4px; }

/* Contact */
.contact { background: var(--forest-deep); color: var(--on-green); padding: 88px 24px; text-align: center; }
.contact .section-eyebrow { color: var(--gold); }
.contact h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 16px; }
.contact > .wrap > p { color: rgba(244,246,243,0.75); max-width: 480px; margin: 0 auto 40px; font-size: 15px; }
.contact-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.contact-card {
  background: rgba(244,246,243,0.06); border: 1px solid rgba(244,246,243,0.14);
  border-radius: 18px; padding: 28px 32px; min-width: 240px; text-align: left;
}
.contact-card .label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.contact-card a { font-family: var(--font-serif); font-size: 20px; font-weight: 600; text-decoration: none; color: var(--on-green); }
.contact-card a:hover { color: var(--gold); }

/* Footer */
footer { padding: 64px 24px 32px; border-top: 1px solid var(--hairline); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand span { font-family: var(--font-serif); font-weight: 600; font-size: 17px; color: var(--forest); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 240px; }
.footer-heading { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--muted); text-decoration: none; padding: 6px 0; min-height: 32px; }
.footer-col a:hover { color: var(--forest); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--hairline); }
.footer-bottom p { font-size: 12.5px; color: var(--muted); }
.footer-disclaimer { font-style: italic; }
@media (max-width: 860px) {
  .story-section, .story-section.reverse { flex-direction: column; gap: 40px; padding: 64px 24px; text-align: center; }
  .story-copy { flex-basis: auto; }
  .story-copy p, .story-copy ul.feature-points { margin-left: auto; margin-right: auto; text-align: left; }
  .steps-grid, .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Legal / support page layout ===== */
.legal-hero {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--on-green); padding: 64px 24px 48px; text-align: center;
}
.legal-hero h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 12px; }
.legal-hero .dates { font-size: 13.5px; color: rgba(244,246,243,0.7); }
.legal-hero .dates span { color: var(--gold); font-weight: 600; }
.legal-body { max-width: 1080px; margin: 0 auto; padding: 56px 24px 96px; display: flex; gap: 56px; align-items: flex-start; }
.legal-toc {
  flex: 0 0 240px; position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 22px;
}
.legal-toc h2 { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 12px; }
.legal-toc ol { list-style: none; counter-reset: toc; }
.legal-toc li { counter-increment: toc; margin-bottom: 2px; }
.legal-toc a {
  display: block; font-size: 13px; color: var(--muted); text-decoration: none; padding: 7px 8px; border-radius: 8px; line-height: 1.4;
}
.legal-toc a:hover { background: var(--sage); color: var(--forest); }
.legal-content { flex: 1 1 640px; max-width: 680px; }
.legal-content .intro { font-size: 16.5px; color: var(--ink); line-height: 1.7; margin-bottom: 40px; }
.legal-content section { margin-bottom: 40px; scroll-margin-top: 96px; }
.legal-content h2 {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--forest);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline);
}
.legal-content h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 18px 0 8px; }
.legal-content p { font-size: 15px; color: var(--ink); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul, .legal-content ol.plain { margin: 0 0 14px 22px; }
.legal-content li { font-size: 15px; color: var(--ink); line-height: 1.7; margin-bottom: 6px; }
.legal-content a.inline-link { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--forest); }
.placeholder-flag {
  background: rgba(201,168,76,0.14); color: var(--gold-deep); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px; padding: 1px 8px; font-size: 13px; font-weight: 700; white-space: nowrap;
}
.contact-block {
  background: var(--sage); border-radius: var(--radius); padding: 24px 28px; margin-top: 8px;
}
.contact-block p { margin-bottom: 4px; }
.contact-block .org { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
@media (max-width: 900px) {
  .legal-body { flex-direction: column; gap: 32px; }
  .legal-toc { position: static; width: 100%; flex-basis: auto; }
}

/* Support page */
.support-hero { background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%); color: var(--on-green); padding: 64px 24px 48px; text-align: center; }
.support-hero h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 14px; }
.support-hero p { font-size: 16px; color: rgba(244,246,243,0.82); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.support-card-wrap { max-width: 1080px; margin: -40px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.support-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.support-card .field .label { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.support-card .field .value { font-size: 16px; font-weight: 600; color: var(--forest); }
.support-card .field .value a { color: var(--forest); text-decoration: none; }
.support-card .field .value a:hover { text-decoration: underline; }
@media (max-width: 760px) { .support-card { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .support-card { grid-template-columns: 1fr; } }

.support-topics { max-width: 780px; margin: 0 auto; padding: 88px 24px 40px; }
.topic-group { margin-bottom: 36px; }
.topic-group h2 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.topic-group ul { list-style: none; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.topic-group li { padding: 15px 18px; font-size: 14.5px; color: var(--ink); border-top: 1px solid var(--hairline); }
.topic-group li:first-child { border-top: none; }
.topic-group li a.inline-link { color: var(--forest); font-weight: 600; text-decoration: underline; }

.support-warning {
  max-width: 780px; margin: 0 auto 40px; padding: 18px 22px; background: rgba(179,64,46,0.08);
  border: 1px solid rgba(179,64,46,0.28); border-radius: var(--radius-sm); color: var(--danger);
  font-size: 14px; font-weight: 600; line-height: 1.55; display: flex; gap: 12px; align-items: flex-start;
}
.support-warning svg { flex-shrink: 0; margin-top: 2px; }

.support-form { max-width: 780px; margin: 0 auto 96px; padding: 0 0; }
.support-form form { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-row .hint { font-size: 12.5px; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-sans); font-size: 15px; padding: 12px 14px; border: 1px solid var(--hairline);
  border-radius: 10px; background: var(--bg); color: var(--ink); min-height: 44px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.form-error { font-size: 12.5px; color: var(--danger); font-weight: 600; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; }

/* Delete-account steps */
.steps-ordered { max-width: 780px; margin: 0 auto; list-style: none; counter-reset: step; }
.steps-ordered li {
  counter-increment: step; display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--hairline); font-size: 15px; color: var(--ink); line-height: 1.6;
}
.steps-ordered li:first-child { border-top: none; }
.steps-ordered li::before {
  content: counter(step); flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest); color: var(--on-green); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif);
}
