/* ── TOKENS ─────────────────────────────────────── */
:root {
  --paper:   #f7f3eb;
  --paper2:  #efe9dc;
  --ink:     #1a1714;
  --ink2:    #4a4540;
  --ink3:    #6b6158;
  --red:     #c84b2f;
  --red-l:   #f0c4b8;
  --blue-l:  #c8d8eb;
  --margin:  72px;
  --line-h:  28px;
  --max:     900px;
  --r:       10px;
}

/* ── Z-INDEX SCALE ──────────────────────────────── */
/* nav=50, overlay=60, modal=70 */

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--red-l); color: var(--ink); }

/* ── FOCUS & ACCESSIBILITY ─────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── CAHIER BACKGROUND ───────────────────────────── */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  min-height: 100vh;
  background-color: var(--paper);
  background-image:
    /* Ruled lines */
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent calc(var(--line-h) - 1px),
      var(--blue-l) calc(var(--line-h) - 1px),
      var(--blue-l) var(--line-h)
    );
  background-attachment: local;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, .serif { font-family: 'DM Serif Display', serif; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); line-height: 1.15; letter-spacing: -.01em; }
h3 { font-size: 1.05rem; font-weight: 400; font-family: 'DM Sans', sans-serif; font-weight: 500; }
p  { color: var(--ink2); max-width: 58ch; margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 500; }
a { color: inherit; }

/* ── LAYOUT ─────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem 0 calc(var(--margin) + 2rem); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background-color: rgba(247,243,235,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blue-l);
  background-image:
    linear-gradient(90deg,
      transparent calc(var(--margin) - 2px),
      var(--red-l) calc(var(--margin) - 2px),
      var(--red-l) var(--margin),
      transparent var(--margin)
    );
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .9rem 2rem .9rem calc(var(--margin) + 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  cursor: pointer;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 1.5rem; flex: 1; }
.nav-links a {
  font-size: 13px;
  color: var(--ink3);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
  white-space: nowrap;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.lang-toggle {
  display: flex;
  border: 1px solid var(--blue-l);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
}
.lang-toggle button {
  padding: 8px 14px;
  min-height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink3);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  transition: background .15s, color .15s;
}
.lang-toggle button.active { background: var(--ink); color: var(--paper); }
.btn-nav {
  font-size: 13px;
  font-weight: 500;
  background: var(--red);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: opacity .15s;
}
.btn-nav:hover { opacity: .88; }

/* ── PAGE TRANSITIONS ────────────────────────────── */
.page { display: none; animation: fadeUp .35s ease both; }
.page.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CARD / SURFACE ─────────────────────────────── */
.card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(200,216,235,.6);
  border-radius: var(--r);
  padding: 1.5rem;
}
.card-ink {
  background: var(--ink);
  color: white;
  border-radius: var(--r);
  padding: 2.5rem;
}
.card-ink h2 { color: white; }
.card-ink p  { color: rgba(255,255,255,.65); }

/* ── SECTION LABEL ───────────────────────────────── */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.s-label::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--red);
}

/* ── SECTION SPACING ─────────────────────────────── */
.section { padding: 4rem 0; border-bottom: 1px solid var(--blue-l); }
.section:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────── */
.hero { padding: 5rem 0 4rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero-lead { font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem; max-width: 52ch; }
.hero-sub  { max-width: 50ch; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: white; margin-top: 1.5rem; }
.btn-ghost { background: transparent; color: var(--ink3); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; margin-top: .75rem; display: inline-block; cursor: pointer; }
.btn-ghost:hover { color: var(--ink); }

/* ── 3-COL GRID ──────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }

/* ── PROBLEM CARDS ───────────────────────────────── */
.prob-card { padding: 1.25rem; border: 1px solid var(--blue-l); border-radius: var(--r); background: rgba(255,255,255,.5); transition: border-color .2s, box-shadow .2s; }
.prob-card:hover { border-color: var(--red-l); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.prob-card h3 { font-size: .9rem; margin-bottom: .5rem; }
.prob-card p { font-size: 14px; max-width: 100%; }

/* ── METRICS ROW ─────────────────────────────────── */
.metrics { display: flex; gap: 2.5rem; margin: 2rem 0; flex-wrap: wrap; }
.metric .val { font-family: 'DM Serif Display', serif; font-size: 2.4rem; line-height: 1; color: var(--ink); }
.metric .lbl { font-size: 13px; color: var(--ink3); margin-top: 4px; line-height: 1.4; }

/* ── STEPS ───────────────────────────────────────── */
.steps { display: grid; gap: 1.5rem; margin-top: 2rem; }
.step { display: grid; grid-template-columns: 50px 1fr; gap: 1.25rem; align-items: start; }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--paper2);
  border: 1px solid var(--blue-l);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.2rem;
  flex-shrink: 0;
}
.step h3 { margin-bottom: .25rem; }
.step p  { font-size: 14px; }

/* ── CASE CARDS ──────────────────────────────────── */
.case-card { border: 1px solid var(--blue-l); border-radius: var(--r); padding: 1.5rem; background: rgba(255,255,255,.6); display: flex; flex-direction: column; gap: .75rem; transition: border-color .2s, box-shadow .2s; }
.case-card:hover { border-color: var(--red-l); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.case-tag  { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink3); }
.case-num  { font-family: 'DM Serif Display', serif; font-size: 2.8rem; line-height: 1; color: var(--ink); }
.case-headline { font-size: 14px; font-weight: 500; color: var(--ink); }
.case-body { font-size: 13px; color: var(--ink2); line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: 11px; padding: 3px 9px; border-radius: 100px; background: var(--paper2); color: var(--ink3); border: 1px solid var(--blue-l); }

/* ── TESTIMONIAL ─────────────────────────────────── */
.testi { border-left: 2.5px solid var(--blue-l); padding: .75rem 1.25rem; margin-top: 1.5rem; }
.testi blockquote { font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: .4rem; }
.testi cite { font-size: 12px; color: var(--ink3); font-style: normal; }

/* ── STAKES / SUCCESS LISTS ──────────────────────── */
.check-list { margin-top: 1.5rem; display: grid; gap: .6rem; }
.check-item { display: flex; gap: .75rem; font-size: 14px; color: var(--ink2); padding: .75rem 1rem; border: 1px solid var(--blue-l); border-radius: 8px; background: rgba(255,255,255,.5); align-items: flex-start; line-height: 1.5; }
.ico { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ico-x   { background: #fce8e4; }
.ico-x::after { content: ''; width: 8px; height: 8px; background: var(--red); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E"); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E"); }
.ico-ok  { background: #e4f4ea; }
.ico-ok::after { content: ''; width: 8px; height: 8px; background: #2f8c4b; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }

/* ── DIVIDER ─────────────────────────────────────── */
.rule { border: none; border-top: 1px solid var(--blue-l); margin: 2rem 0; }

/* ── TIER CARDS ──────────────────────────────────── */
.tier-card { border: 1px solid var(--blue-l); border-radius: var(--r); padding: 1.5rem; background: rgba(255,255,255,.6); display: flex; flex-direction: column; }
.tier-name  { font-size: 1rem; font-weight: 500; margin-bottom: .25rem; }
.tier-price { font-family: 'DM Serif Display', serif; font-size: 2rem; line-height: 1; margin-bottom: .1rem; }
.tier-price span { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--ink3); }
.tier-desc  { font-size: 13px; color: var(--ink3); margin: .75rem 0; line-height: 1.5; }
.feat { font-size: 13px; color: var(--ink2); padding: .4rem 0; border-top: 1px solid var(--blue-l); display: flex; gap: .5rem; align-items: flex-start; line-height: 1.4; }
.feat::before { content: '·'; color: var(--red); flex-shrink: 0; }

/* ── SERVICE ROWS ────────────────────────────────── */
.svc-row { padding: 1.75rem 0; border-bottom: 1px solid var(--blue-l); }
.svc-row:last-child { border-bottom: none; }
.svc-row h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.svc-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }

/* ── ABOUT ───────────────────────────────────────── */
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat .n { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--ink); }
.stat .l { font-size: 13px; color: var(--ink3); }

/* ── CONTACT / CTA ───────────────────────────────── */
.start-card { max-width: 600px; margin: 3rem auto; }
.start-list { display: grid; gap: .5rem; margin: 1.5rem 0; }
.start-item { font-size: 14px; color: var(--ink2); display: flex; gap: .75rem; }
.start-item::before { content: '→'; color: var(--red); flex-shrink: 0; }
.cal-mock {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--blue-l);
  border-radius: var(--r);
  padding: 2rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--ink3);
  font-size: 14px;
}
.cal-mock .cal-cta { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: .5rem; }

/* ── FAQ ─────────────────────────────────────────── */
.faq { margin-top: 1.5rem; display: grid; gap: .5rem; }
.faq-item { border: 1px solid var(--blue-l); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.5); }
.faq-q {
  padding: 1rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q { transition: background .15s; }
.faq-q:hover { background: rgba(255,255,255,.6); }
.faq-arrow { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s; background: var(--red); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E"); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E"); }
.faq-a { display: none; padding: 0 1.25rem 1rem; font-size: 13px; color: var(--ink2); line-height: 1.6; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }

/* ── COMPARISON TABLE ────────────────────────────── */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 13px; }
.comp-table th { text-align: left; padding: .6rem .75rem; border-bottom: 1px solid var(--blue-l); font-weight: 500; font-size: 12px; color: var(--ink3); text-transform: uppercase; letter-spacing: .06em; }
.comp-table td { padding: .7rem .75rem; border-bottom: 1px solid var(--blue-l); color: var(--ink2); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .hl { background: rgba(200,75,47,.06); color: var(--ink); font-weight: 500; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  border-top: 1px solid var(--blue-l);
  padding: 2rem calc(var(--margin) + 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: var(--ink3);
}
footer .logo { font-size: 1.1rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--ink3); text-decoration: none; cursor: pointer; transition: color .15s; padding: 4px 0; }
.footer-links a:hover { color: var(--ink); }

/* ── TRUST BAR (Home hero) ───────────────────────── */
.trust-bar {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blue-l);
}
.trust-industries {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.trust-pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--blue-l);
  color: var(--ink2);
}
.trust-tp {
  font-size: 13px;
  color: var(--ink3);
  margin-top: .25rem;
}

/* ── TECH CAROUSEL (Services) ───────────────────── */
.tech-carousel {
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--blue-l);
  border-bottom: 1px solid var(--blue-l);
}
.tech-carousel-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1rem;
  text-align: center;
}
.tech-track {
  display: flex;
  gap: 2.5rem;
  animation: scroll-tech 30s linear infinite;
  width: max-content;
}
.tech-track:hover {
  animation-play-state: paused;
}
.tech-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: .55;
  transition: opacity .2s;
}
.tech-item:hover {
  opacity: 1;
}
.tech-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(1) brightness(.6);
}
.tech-item:hover .tech-icon {
  filter: none;
}
@keyframes scroll-tech {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── MOBILE MENU ─────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger-icon {
  width: 20px;
  height: 14px;
  position: relative;
}
.hamburger-icon span,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
.hamburger-icon::before,
.hamburger-icon::after { content: ''; position: absolute; left: 0; }
.hamburger-icon::before { top: 0; }
.hamburger-icon span { position: absolute; top: 6px; }
.hamburger-icon::after { bottom: 0; }
.hamburger.open .hamburger-icon::before { transform: rotate(45deg); top: 6px; }
.hamburger.open .hamburger-icon span { opacity: 0; }
.hamburger.open .hamburger-icon::after { transform: rotate(-45deg); bottom: 6px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,243,235,.98);
  backdrop-filter: blur(12px);
  z-index: 49;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.25rem;
  color: var(--ink2);
  text-decoration: none;
  cursor: pointer;
  padding: 12px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.mobile-menu a:hover { color: var(--ink); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 640px) {
  :root { --margin: 44px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .btn-nav { display: none; }
  .metrics { gap: 1.5rem; }
  .trust-industries { gap: .4rem; }
  .tech-track { gap: 1.5rem; }
  footer { padding: 1.5rem 1.5rem 1.5rem calc(var(--margin) + 1rem); }
  .card-ink { padding: 1.75rem; }
}

/* ── NOTEBOOK HOLE PUNCHES (decoration) ─────────── */
body::before {
  content: '';
  position: fixed;
  left: calc(var(--margin) / 2 - 7px);
  top: 0;
  width: 14px;
  height: 100%;
  background-image: radial-gradient(circle, var(--paper2) 5px, transparent 5px);
  background-size: 14px 80px;
  background-repeat: repeat-y;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateY(var(--parallax-holes, 0));
}

/* ── PARALLAX MARGIN LINE (overlay, slower scroll) ── */
body::after {
  content: '';
  position: fixed;
  left: calc(var(--margin) - 2px);
  top: 0;
  width: 2px;
  height: 120%;
  background: var(--red-l);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  opacity: .7;
  transform: translateY(var(--parallax-margin, 0));
}

/* ── SCROLL REVEAL ──────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── STATIC SITE ADDITIONS ─────────────────────────── */
[hidden] { display: none !important; }
a.btn { display: inline-block; text-decoration: none; }
a.btn-nav { text-decoration: none; }
.lang-toggle a {
  padding: 8px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink3);
  text-decoration: none;
  font-size: 12px;
  transition: background .15s, color .15s;
}
.lang-toggle a.active { background: var(--ink); color: var(--paper); }
.faq-q h3 { margin: 0; font-weight: 500; }
/* Service titles are h2 for outline order but keep the original h3 look. */
.svc-row h2 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.1rem; line-height: inherit; letter-spacing: normal; margin-bottom: .5rem; }
.footer-links button { background: none; border: 0; padding: 4px 0; font: inherit; color: var(--ink3); cursor: pointer; opacity: .6; }
.privacy h2 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 500; margin: 1.5rem 0 .5rem; }
.privacy a { color: var(--red); }
a:focus-visible, button:focus-visible, .faq-q:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.consent {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  max-width: 560px; margin-left: auto;
  background: var(--ink); color: #fff; border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem;
  font-size: 13px; box-shadow: 0 8px 24px rgba(26,23,20,.2);
}
.consent p { color: rgba(255,255,255,.8); margin: 0; flex: 1 1 260px; max-width: none; }
.consent a { color: #fff; }
.consent-actions { display: flex; gap: .5rem; }
.consent button {
  font: inherit; font-weight: 500; border-radius: 6px; padding: 8px 16px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.45); background: transparent; color: #fff;
}
.consent button:hover { background: rgba(255,255,255,.1); }

@media (prefers-reduced-motion: reduce) {
  .page, .tech-track { animation: none; }
  .js .reveal { transition: none; }
}
