/* ============================================================
   DataTruth AI — styles.css
   ============================================================
   Sections:
     1. Design tokens (CSS variables)
     2. Reset & base
     3. Utility / layout primitives
     4. Navigation
     5. Hero
     6. Section scaffold
     7. Problem section
     8. Diagram (Fig. 01)
     9. Services
    10. Process
    11. About
    12. Case study
    13. Contact
    14. Footer
    15. Animations / motion
   ============================================================ */


/* ============ 1. DESIGN TOKENS ============ */
:root {
  /* Color palette */
  --paper:        #F2EDE4;
  --paper-deep:   #ECE6DA;
  --ink:          #14110D;
  --ink-soft:     #2A2520;
  --muted:        #6B5F54;
  --muted-light:  #9A8E80;
  --rule:         rgba(20, 17, 13, 0.12);
  --rule-strong:  rgba(20, 17, 13, 0.24);
  --accent:       #B8421A;
  --accent-light: #E8946C;
  --accent-deep:  #8E2F11;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --max-w:  1320px;
}


/* ============ 2. RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper-grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0 0.05 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}


/* ============ 3. UTILITIES / LAYOUT ============ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.dim {
  opacity: 0.5;
}


/* ============ 4. NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(242, 237, 228, 0.78);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.logo-suffix {
  font-style: italic;
  color: var(--muted-light);
}

.logo-mark {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  transition: color 0.2s;
}

.nav-links a:not(.cta-nav)::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:not(.cta-nav):hover::before {
  width: 100%;
}

.cta-nav {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  transition: all 0.25s ease;
}

.cta-nav:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 720px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a:not(.cta-nav):not(.logo) { display: none; }
}


/* ============ 5. HERO ============ */
.hero {
  padding: 11rem 0 6rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-meta .dash {
  width: 32px;
  height: 1px;
  background: var(--ink);
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero h1 .br {
  display: block;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

@media (min-width: 880px) {
  .hero-bottom {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: end;
  }
}

.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  border: 1px solid var(--ink);
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover .arrow {
  transform: translateX(4px);
}


/* ============ 6. SECTION SCAFFOLD ============ */
section {
  padding: 7rem 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 880px) {
  .section-head {
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: end;
  }
}

.section-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.section-num span:first-child {
  font-size: 1rem;
  color: var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}


/* ============ 7. PROBLEM ============ */
.problem {
  background: var(--paper-deep);
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

@media (min-width: 880px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

@media (min-width: 880px) {
  .problem-card {
    padding: 3rem 2.5rem 3rem 0;
    border-right: 1px solid var(--rule);
    border-bottom: none;
  }
  .problem-card:not(:first-child) { padding-left: 2.5rem; }
  .problem-card:last-child { border-right: none; padding-right: 0; }
}

.problem-card-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.problem-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
  max-width: 32ch;
}

.problem-quote {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 24ch;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  color: var(--ink);
}

.problem-quote .accent {
  color: var(--accent);
  display: block;
}


/* ============ 8. DIAGRAM ============ */
.diagram-wrap {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}

.diagram-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.diagram-meta .dash {
  width: 24px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.diagram {
  width: 100%;
  height: auto;
  max-width: 920px;
  display: block;
  margin: 0 auto;
}


/* ============ 9. SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 2.2rem 2rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  transition: all 0.4s;
}

.service:hover .service-icon {
  border-color: var(--accent);
  background: var(--accent);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  transition: stroke 0.4s;
}

.service:hover .service-icon svg {
  stroke: var(--paper);
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  transition: color 0.4s;
}

.service:hover .service-tag {
  color: var(--accent);
}

.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}

.service p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: color 0.4s;
}

.service:hover p {
  color: rgba(242, 237, 228, 0.78);
}

.service-list {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  transition: border-color 0.4s;
}

.service:hover .service-list {
  border-color: rgba(242, 237, 228, 0.18);
}

.service-list li {
  padding: 0.35rem 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.4s;
}

.service-list li::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--muted);
  flex-shrink: 0;
}

.service:hover .service-list li {
  color: rgba(242, 237, 228, 0.6);
}


/* ============ 10. PROCESS ============ */
.process {
  background: var(--ink);
  color: var(--paper);
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.process .section-num,
.process .section-num span:first-child { color: var(--paper); }
.process .section-num { color: rgba(242, 237, 228, 0.55); }
.process .section-head { border-bottom-color: rgba(242, 237, 228, 0.15); }
.process .section-title { color: var(--paper); }
.process .section-title em { color: var(--accent-light); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 880px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(242, 237, 228, 0.15);
  position: relative;
}

@media (min-width: 880px) {
  .process-step {
    padding: 3rem 2.5rem 3rem 0;
    border-right: 1px solid rgba(242, 237, 228, 0.15);
  }
  .process-step:not(:first-child) { padding-left: 2.5rem; }
  .process-step:last-child { border-right: none; padding-right: 0; }
}

.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.process-step p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(242, 237, 228, 0.7);
  max-width: 34ch;
}

.process-step .kicker {
  color: var(--accent-light);
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

.process-step .duration {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.5);
}


/* ============ 11. ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
  }
}

.about-aside {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.8;
}

.about-aside-block {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.about-aside-block:last-child {
  border-bottom: none;
}

.about-aside-label {
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about-prose p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.about-prose p + p {
  margin-top: 1.5rem;
}

.about-prose .pull {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}


/* ============ 12. CASE ============ */
.case-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at top right, rgba(184, 66, 26, 0.4), transparent 70%);
  pointer-events: none;
}

.case-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.case-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 24ch;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(242, 237, 228, 0.15);
}

@media (min-width: 720px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .case-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.case-block-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.55);
  margin-bottom: 1rem;
}

.case-block ul {
  list-style: none;
}

.case-block li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(242, 237, 228, 0.85);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(242, 237, 228, 0.1);
  display: flex;
  gap: 0.6rem;
}

.case-block li::before {
  content: '→';
  color: var(--accent-light);
  flex-shrink: 0;
}

.case-block li:last-child {
  border-bottom: none;
}


/* ============ 13. CONTACT ============ */
.contact {
  text-align: center;
  padding: 9rem 0 7rem;
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact-eyebrow .dash {
  width: 28px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.contact h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}

.contact h2 em {
  font-style: italic;
  color: var(--accent);
}

.contact-sub {
  max-width: 56ch;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.contact-deliverables {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 3.5rem;
  max-width: 720px;
}

.pill {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.3rem;
  transition: all 0.3s;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

.contact-email:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}


/* ============ 14. FOOTER ============ */
footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.footer-inner .logo {
  font-size: 0.95rem;
}


/* ============ 15. ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ============ 404 PAGE ============ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}

.error-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.error-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}

.error-title em {
  font-style: italic;
  color: var(--accent);
}

.error-sub {
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
