/* Hytch marketing site design system — extracted from the 2026-07 design handoff.
   Tokens and every literal value come from design/README.md + the .dc.html prototypes. */

:root {
  --blue: #0098D0;
  --teal: #18A0A0;
  --green: #30A860;
  --gradient: linear-gradient(135deg, #0098D0 0%, #18A0A0 50%, #30A860 100%);
  --gradient-text: linear-gradient(92deg, #4FC3E8 0%, #3FC5B8 45%, #5FD08A 100%);
  --ink: #050607;
  --text: #EDEFEF;
  --dim: #8A9391;
  --line: #1C2021;
  --accent: #3FC5B8;      /* bullets, eyebrows */
  --link: #5FD08A;        /* links, taglines */
  --card-text: #A6AEAC;   /* secondary body on cards */
  --footer-link: #8A9391;
  --footer-meta: #4E5654;
  --card-surface: linear-gradient(170deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: #4FC3E8; }

input, textarea, select, button { font-family: 'Nunito', sans-serif; }
input:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid #3FC5B8;
  outline-offset: 2px;
}

/* ---------- Animations ---------- */

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes glow-breathe {
  0%, 100% { opacity: .62; transform: translate(-50%, 0) scale(1); }
  50% { opacity: 1; transform: translate(-50%, 0) scale(1.06); }
}
@keyframes pin-pulse {
  0% { transform: translate(-50%, -50%) scale(.6); opacity: .9; }
  70% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes pin-pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }
@keyframes dash-run { to { stroke-dashoffset: -64; } }

.rise { animation: rise .7s ease both; }
.rise-1 { animation: rise .7s ease .08s both; }
.rise-2 { animation: rise .7s ease .16s both; }
.rise-3 { animation: rise .7s ease .24s both; }
.rise-4 { animation: rise .9s ease .34s both; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ---------- Page shell + background stack ---------- */

.page { position: relative; min-height: 100vh; background: var(--ink); overflow: hidden; }

.shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.bg-glow {
  position: absolute;
  left: 50%;
  top: -12%;
  width: 1100px;
  height: 740px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24,160,160,.15), transparent 66%);
  filter: blur(40px);
  pointer-events: none;
}
.bg-glow--teal16 { background: radial-gradient(ellipse, rgba(24,160,160,.16), transparent 66%); }
.bg-glow--blue { background: radial-gradient(ellipse, rgba(0,152,208,.15), transparent 66%); }
.bg-glow--green { background: radial-gradient(ellipse, rgba(48,168,96,.15), transparent 66%); }
.bg-glow--green16 { background: radial-gradient(ellipse, rgba(48,168,96,.16), transparent 66%); }
.bg-glow--legal { top: -14%; height: 700px; background: radial-gradient(ellipse, rgba(24,160,160,.13), transparent 66%); }
.bg-glow--home {
  top: 34%;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, 0);
  background: radial-gradient(circle, rgba(24,160,160,.30) 0%, rgba(0,152,208,.13) 38%, transparent 66%);
  filter: blur(30px);
  animation: glow-breathe 9s ease-in-out infinite;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 20%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 20%, #000, transparent 78%);
  pointer-events: none;
}
.bg-grid--home {
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent 78%);
}

/* ---------- Nav ---------- */

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.site-nav .nav-logo { display: block; flex: none; }
.site-nav .nav-logo img { height: 42px; width: auto; display: block; }
.site-nav-links {
  display: flex;
  gap: 14px 22px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}
.site-nav-links a {
  color: var(--text);
  font-size: 15.5px;
  white-space: nowrap;
  transition: color .2s ease;
}
.site-nav-links a:hover { color: var(--link); }
.site-nav-links a[aria-current="page"] { color: var(--text); font-weight: 600; }
.site-nav-links .nav-pill {
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.site-nav-links .nav-pill:hover { border-color: #2F3739; background: rgba(255,255,255,.03); color: var(--link); }

/* ---------- Typography ---------- */

.eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3FC5B8;
  font-weight: 700;
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 80px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero-h1--home {
  font-size: clamp(44px, 7.4vw, 94px);
  line-height: .98;
}

.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.038em;
  margin: 0;
}

.grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dim);
}

/* ---------- Buttons ---------- */

.btn-gradient {
  display: inline-block;
  background: var(--gradient);
  color: #04110C;
  padding: 14px 28px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.btn-gradient:hover { filter: brightness(1.08); color: #04110C; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  background: rgba(255,255,255,.02);
}
.btn-outline:hover { border-color: #2F3739; color: var(--text); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.6vw, 28px);
}
.card-grid--wide { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 30px;
  background: var(--card-surface);
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover {
  border-color: rgba(63,197,184,.55);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(79,195,232,.35), 0 26px 60px -26px rgba(24,160,160,.75);
}
.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.025em;
  margin: 0;
}
.card-body {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--dim);
  margin: 14px 0 0;
}

/* Feature icons sit bare on the card — no plate behind the artwork.
   Held at the handoff's 58px: the source artwork tops out around 70px on its
   longest edge, so drawing it larger only magnifies the softness. */
.tile {
  display: grid;
  place-items: start;
  width: 58px;
  height: 58px;
}
.tile img { width: 58px; height: 58px; object-fit: contain; display: block; }

.tag-line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  color: #5FD08A;
  margin: 9px 0 0;
}

/* Borderless "additional features" items */
.extra-item { border-top: 1px solid var(--line); padding: 20px 0 0; }
.extra-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}
.extra-item .tag-line { font-size: 14px; line-height: 1.5; margin: 8px 0 0; }
.extra-item p { font-size: 14.5px; line-height: 1.7; color: var(--dim); margin: 11px 0 0; }

/* ---------- Bullet lists ---------- */

.dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.dot-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: #A6AEAC;
}
.dot-list .dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5FD08A;
  margin-top: 8px;
}
.dot-list .dot--sm { width: 5px; height: 5px; }
.dot--teal { background: #3FC5B8; }
.dot--blue { background: #4FC3E8; }
.dot--green { background: #5FD08A; }

/* ---------- Phone frame ---------- */

.phone-frame {
  position: relative;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(170deg, rgba(255,255,255,.12), rgba(255,255,255,.02) 42%, rgba(0,0,0,0));
  box-shadow: 0 46px 106px -28px rgba(0,0,0,.92);
}
.phone-frame--home {
  padding: 11px;
  border-radius: 46px;
  background: linear-gradient(170deg, rgba(255,255,255,.14), rgba(255,255,255,.02) 42%, rgba(0,0,0,0));
  box-shadow: 0 60px 140px -30px rgba(0,0,0,.95), 0 0 90px -20px rgba(24,160,160,.30);
}
.phone-screen {
  border-radius: 35px;
  overflow: hidden;
  background: #0A0C0D;
  aspect-ratio: 736 / 1507;
  position: relative;
}
.phone-frame--home .phone-screen { border-radius: 36px; }
.phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Forms ---------- */

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--card-surface);
}
.form-panel label.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--dim);
}
.form-panel input[type="text"],
.form-panel input[type="email"],
.form-panel textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
}
.form-panel textarea { resize: vertical; }
.form-panel ::placeholder { color: var(--dim); opacity: 1; }

.pill-toggle {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13.5px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.pill-toggle:hover { border-color: #2F3739; }
.pill-toggle.selected { background: rgba(63,197,184,.16); }

/* ---------- Email list signup ----------
   Two variants of one component, both defined here so every page only carries
   markup. `.email-signup` is the prominent home-page block; adding
   `.email-signup--compact` turns it into a quiet single row that reads as
   footer furniture on the secondary pages. */

.email-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-surface);
  padding: clamp(26px, 3.4vw, 40px);
  margin: 0 0 clamp(40px, 6vw, 64px);
}
@media (min-width: 860px) {
  .email-signup { grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); }
}

.email-signup-copy > .eyebrow { margin-bottom: 10px; }
.email-signup-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
}
.email-signup-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--dim);
  margin: 12px 0 0;
  max-width: 48ch;
}

.email-signup-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* Real <label>, kept out of the visual design but read by screen readers. */
.email-signup-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.email-signup-input {
  flex: 1 1 220px;
  min-width: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
}
.email-signup-input::placeholder { color: var(--dim); opacity: 1; }
.email-signup-form .btn-gradient { flex: none; }
.email-signup-form button[disabled] { opacity: .6; cursor: default; }

.email-signup-status {
  font-size: 14px;
  line-height: 1.55;
  color: var(--link);
  margin: 12px 0 0;
}
.email-signup-status:empty { display: none; }
.email-signup-status[data-state="error"] { color: #E5715F; }

/* ---- Compact variant ---- */

.email-signup--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: none;
  padding: 22px 0 26px;
  margin: clamp(28px, 4vw, 48px) 0 0;
}
.email-signup--compact .email-signup-line {
  font-size: 14px;
  line-height: 1.55;
  color: var(--dim);
  margin: 0;
  flex: 1 1 240px;
}
.email-signup--compact .email-signup-form { flex: 0 1 auto; gap: 8px; }
.email-signup--compact .email-signup-input {
  flex: 1 1 200px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.email-signup--compact .email-signup-status {
  flex: 0 1 auto;
  margin: 0;
  font-size: 13.5px;
}

.email-signup-btn--sm {
  flex: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: border-color .2s ease, color .2s ease;
}
.email-signup-btn--sm:hover { border-color: #2F3739; color: var(--link); }

/* ---------- FAQ accordion ---------- */

/* Base container for FAQ blocks embedded in a longer page (saferide, tdm).
   faq.html — where the list is the whole page — overrides the padding and
   width in its own inline style, which loads after this file. */
.faq-list { padding: clamp(40px, 6vw, 64px) 0 clamp(8px, 2vw, 16px); max-width: 820px; }
.faq-list-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  padding: 22px 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -0.015em;
  line-height: 1.35;
}
.faq-q:hover { color: #5FD08A; }
.faq-q .faq-plus {
  flex: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #3FC5B8;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .25s ease;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--dim);
  margin: 0;
  padding: 0 40px 24px 2px;
  max-width: 70ch;
}
.faq-item:not(.open) .faq-a { display: none; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px 40px;
  flex-wrap: wrap;
  padding: 36px 0 52px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 30ch;
}
.footer-brand img {
  height: 34px;
  width: auto;
  display: block;
  align-self: flex-start;
}
.footer-brand .footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.footer-brand .footer-meta {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}
.footer-cols { display: flex; gap: 30px 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text); font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--link); }

/* ---------- Investor memo modal (existing functionality, new skin) ---------- */

#investor-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,6,7,.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#investor-modal-overlay.open { display: flex; }
#investor-modal {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  background: linear-gradient(170deg, #101314, #0A0C0D);
  box-shadow: 0 46px 110px -34px rgba(0,0,0,.92);
}
#investor-modal h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
}
#investor-modal p { font-size: 14.5px; line-height: 1.6; color: var(--dim); margin: 10px 0 0; }
#investor-modal input {
  width: 100%;
  margin-top: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
}
#investor-modal-error { color: #E5715F; font-size: 13.5px; min-height: 20px; margin-top: 8px; }
#investor-modal-buttons { display: flex; gap: 10px; justify-content: flex-end; margin-top: 10px; }
#investor-modal-cancel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
#investor-modal-cancel:hover { border-color: #2F3739; }
#investor-modal-submit {
  border: 0;
  background: var(--gradient);
  color: #04110C;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
#investor-modal-submit:hover { filter: brightness(1.08); }

/* ---------- Legal page ---------- */

.legal-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
  padding: clamp(36px, 5vw, 56px) 0 clamp(56px, 8vw, 88px);
}
.legal-toc {
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.legal-toc .toc-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5C6462;
  font-weight: 700;
  margin-bottom: 6px;
}
.legal-toc a {
  font-size: 13px;
  color: #8A9391;
  font-weight: 400;
  line-height: 1.45;
  padding: 3px 0;
  display: block;
}
.legal-toc a.toc-part {
  font-size: 14px;
  color: #5FD08A;
  font-weight: 700;
  padding: 16px 0 6px;
}
.legal-toc a:hover { color: var(--text); }

.legal-article h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 72px 0 10px;
  color: #EDEFEF;
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article h2#privacy { margin-top: 90px; }
.legal-article .effective {
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3FC5B8;
  font-weight: 700;
  margin: 0 0 30px;
}
.legal-article h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 52px 0 18px;
  color: #EDEFEF;
}
.legal-article h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 34px 0 12px;
  color: #EDEFEF;
}
.legal-article h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 26px 0 10px;
  color: #5FD08A;
}
.legal-article p {
  font-size: 15px;
  line-height: 1.78;
  color: #A6AEAC;
  margin: 0 0 16px;
  max-width: 74ch;
}
.legal-article .callout {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.6;
  color: #EDEFEF;
  border-left: 2px solid #3FC5B8;
  padding-left: 16px;
  margin: 0 0 22px;
  max-width: 72ch;
}
.legal-article ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 74ch;
}
.legal-article ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.7;
  color: #8A9391;
}
.legal-article ul li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3FC5B8;
  margin-top: 9px;
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc {
    position: static;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 18px;
  }
}
