/* Keyra — marketing site. Organic design system (same tokens as the app). */
@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f8f2e6;
  --surface: #efe4d0;
  --surface-2: #fbf7f0;
  --card: #fffdf9;
  --text: #1d1b19;
  --muted: rgba(29, 27, 25, 0.58);
  --accent: #c67139;
  --accent-600: #b2622d;
  --accent-700: #8c491a;
  --accent-100: #fff2eb;
  --accent-200: #ffe1d0;
  --accent-300: #ffc6a5;
  --accent-800: #643312;
  --green: #7a8a5e;
  --green-100: #f0fae1;
  --green-800: #3d472b;
  --divider: rgba(32, 30, 29, 0.12);
  --ink-900: #262420;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 1px 2px rgba(46, 43, 37, 0.08);
  --shadow-md: 0 6px 24px -6px rgba(46, 43, 37, 0.18);
  --shadow-lg: 0 24px 70px -18px rgba(46, 43, 37, 0.38);
  --font-heading: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
  --font-brand: "Caprasimo", "Georgia", serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
}

/* wide desktop: scale the whole composition up so the sides don't feel empty */
@media (min-width: 1600px) {
  :root { --wrap: 1400px; }
  body { font-size: 18px; }
  h1 { font-size: clamp(3rem, 4.2vw, 5rem); }
  h2 { font-size: clamp(2.2rem, 2.4vw, 3.3rem); }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(55vw 40vw at 88% -8vw, rgba(255, 198, 165, 0.5), transparent 65%),
    radial-gradient(45vw 36vw at -8vw 28vw, rgba(225, 238, 204, 0.55), transparent 65%),
    radial-gradient(40vw 30vw at 105% 62vw, rgba(255, 225, 208, 0.45), transparent 65%),
    var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-700); text-underline-offset: 3px; }
::selection { background: rgba(198, 113, 57, 0.3); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.032em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

/* ── sticky glass nav ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav {
  display: flex; align-items: center; gap: 26px;
  padding: 13px 22px;
  max-width: var(--wrap); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-brand); font-weight: 400; font-size: 1.3rem;
  color: var(--text); text-decoration: none; margin-right: auto;
}
.brand img { width: 34px; height: 34px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.nav a:not(.brand):not(.btn) {
  color: var(--muted); text-decoration: none; font-size: 0.93rem; font-weight: 600;
  transition: color 0.15s ease;
}
.nav a:not(.brand):not(.btn):hover { color: var(--text); }
.label-short { display: none; }
@media (max-width: 560px) {
  .nav .hide-sm { display: none; }
  .nav { gap: 12px; padding: 11px 16px; }
  .nav .btn-sm { padding: 8px 14px; }
  .nav .label-long { display: none; }
  .nav .label-short { display: inline; }
}

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.97rem; line-height: 1.2;
  padding: 15px 30px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #d67f48, var(--accent) 55%, var(--accent-600));
  color: #fff6ec;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 26px -10px rgba(140, 73, 26, 0.65);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 16px 34px -12px rgba(140, 73, 26, 0.7);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  border-color: var(--divider); color: var(--text);
  background: color-mix(in srgb, var(--card) 65%, transparent);
}
.btn-secondary:hover { background: var(--card); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }
.btn.soon { opacity: 0.6; pointer-events: none; cursor: default; }

/* ── hero ── */
.hero { margin-top: 54px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
@media (min-width: 1600px) {
  .hero { margin-top: 96px; }
  .hero-grid { gap: 80px; }
  .phone { width: 400px; }
  .phone-screen { min-height: 560px; }
  .float-chip { font-size: 0.95rem; padding: 11px 19px; }
  .float-chip.c1 { left: -84px; }
  .float-chip.c2 { right: -88px; }
  .float-chip.c3 { left: -96px; }
  .blob.b1 { width: 380px; height: 380px; right: -110px; }
  .blob.b2 { width: 320px; height: 320px; left: -100px; }
  main > section { margin-top: 128px; }
}
@media (max-width: 860px) {
  .hero { margin-top: 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero .kicker { justify-content: center; }
  .hero-stats { justify-content: center; }
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-800);
  background: color-mix(in srgb, var(--accent-100) 80%, transparent);
  border: 1px solid rgba(198, 113, 57, 0.28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero h1 .grad {
  background: linear-gradient(92deg, var(--accent) 10%, #e08a4f 45%, var(--accent-700) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); max-width: 33em; }
@media (max-width: 860px) { .hero p.lead { margin-inline: auto; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px 38px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--divider);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-heading); font-weight: 800; font-size: 1.7rem; line-height: 1.1; letter-spacing: -0.02em; }
.hero-stats span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* staggered entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero .kicker, .hero h1, .hero .lead, .hero-cta, .hero-note, .hero-stats, .hero-visual {
    opacity: 0; transform: translateY(18px);
    animation: rise 0.7s cubic-bezier(.22,1,.36,1) forwards;
  }
  .hero h1 { animation-delay: 0.07s; }
  .hero .lead { animation-delay: 0.14s; }
  .hero-cta { animation-delay: 0.21s; }
  .hero-note { animation-delay: 0.26s; }
  .hero-stats { animation-delay: 0.32s; }
  .hero-visual { animation-delay: 0.18s; }
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
  .reveal.in { opacity: 1; transform: none; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ── phone mockup + floating chips ── */
.hero-visual { position: relative; width: fit-content; margin: 0 auto; }
.blob { position: absolute; border-radius: 50%; filter: blur(46px); z-index: 0; pointer-events: none; }
.blob.b1 { width: 300px; height: 300px; right: -70px; top: -50px; background: rgba(255, 198, 165, 0.75); }
.blob.b2 { width: 240px; height: 240px; left: -60px; bottom: -30px; background: rgba(204, 219, 178, 0.7); }
.float-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem; font-weight: 700;
  background: var(--card); border: 1px solid var(--divider);
  padding: 9px 16px; border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.float-chip.c1 { top: 84px; left: -54px; animation: bob 5.2s ease-in-out infinite; }
.float-chip.c2 { top: 200px; right: -58px; animation: bob 6.1s ease-in-out 0.8s infinite; }
.float-chip.c3 { bottom: 148px; left: -66px; animation: bob 5.6s ease-in-out 1.6s infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 480px) {
  .float-chip.c1 { left: -8px; }
  .float-chip.c2 { right: -8px; }
  .float-chip.c3 { left: -10px; }
}
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }

.phone {
  position: relative; z-index: 1;
  width: min(340px, 86vw);
  background: linear-gradient(160deg, #3a352e, var(--ink-900) 40%);
  border-radius: 44px; padding: 11px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-screen {
  background: var(--surface-2); border-radius: 34px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 500px;
}
.chat { flex: 1; padding: 22px 15px 10px; display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 85%; padding: 10px 14px; font-size: 0.83rem; line-height: 1.45;
  border-radius: 17px; box-shadow: var(--shadow-sm);
}
.bubble.them { background: #ffffff; border-bottom-left-radius: 6px; align-self: flex-start; }
.bubble.me {
  background: linear-gradient(180deg, #d67f48, var(--accent));
  color: #fff6ec;
  border-bottom-right-radius: 6px; align-self: flex-end;
}
.bubble.raw {
  background: transparent; border: 1.5px dashed rgba(32,30,29,0.25); box-shadow: none;
  color: var(--muted); align-self: flex-end; text-decoration: line-through;
  font-size: 0.77rem; padding: 6px 12px;
}
.fix-note {
  align-self: flex-end; font-size: 0.7rem; font-weight: 700; color: var(--accent-700);
  display: flex; align-items: center; gap: 4px; margin-top: -3px;
}
/* keyboard */
.kb { background: var(--bg); padding: 9px 7px 12px; border-top: 1px solid var(--divider); }
.kb-strip { display: flex; align-items: center; gap: 6px; padding: 2px 4px 9px; }
.kb-ai {
  font-size: 0.72rem; font-weight: 800; color: var(--accent-800);
  background: linear-gradient(180deg, var(--accent-100), var(--accent-200));
  border: 1px solid rgba(198, 113, 57, 0.35);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.kb-sug {
  font-size: 0.72rem; font-weight: 500; color: var(--muted); background: var(--surface);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap; overflow: hidden;
}
.kb-row { display: flex; gap: 4px; justify-content: center; margin-bottom: 5px; }
.kb-key {
  flex: 1; max-width: 31px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fdfaf4; border-radius: var(--radius-sm);
  border-bottom: 2px solid rgba(32, 30, 29, 0.16);
  font-size: 0.73rem; font-weight: 600; color: var(--text);
}
.kb-key.wide { max-width: 48px; font-size: 0.62rem; }
.kb-key.space { max-width: 148px; flex: 3; font-size: 0.58rem; color: var(--muted); }
.kb-key.action {
  background: linear-gradient(180deg, #d67f48, var(--accent));
  color: #fff6ec; border-bottom-color: var(--accent-700);
}

/* ── sections ── */
section { margin-top: 104px; }
main > section:last-of-type { margin-bottom: 104px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .label {
  display: inline-block; font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-700); margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* feature cards */
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  position: relative;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 9px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 113, 57, 0.35);
}
.card .emoji {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(150deg, var(--accent-100), var(--accent-200));
  border: 1px solid rgba(198, 113, 57, 0.2);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin: 8px 0 0; }
.card p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* how-it-works steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.step {
  position: relative; padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(180deg, #d67f48, var(--accent-600));
  color: #fff6ec; box-shadow: 0 6px 16px -6px rgba(140, 73, 26, 0.6);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; }
.step p { margin: 0; font-size: 0.94rem; color: var(--muted); }

/* privacy band */
.band {
  position: relative; overflow: clip;
  background:
    radial-gradient(640px 320px at 88% -60px, rgba(198, 113, 57, 0.28), transparent 65%),
    radial-gradient(520px 300px at -60px 110%, rgba(122, 138, 94, 0.25), transparent 65%),
    var(--ink-900);
  color: #f5ead8;
  border-radius: calc(var(--radius-lg) * 1.3);
  padding: 58px 52px;
  box-shadow: var(--shadow-lg);
}
.band h2 { color: #f9f4ed; }
.band > p { color: rgba(245, 234, 216, 0.72); max-width: 40em; }
.band ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px 26px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.band li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; line-height: 1.55; color: rgba(245, 234, 216, 0.78); }
.band li strong { color: #fff; }
.band .tick {
  flex: none; width: 22px; height: 22px; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.7rem; font-weight: 800;
  background: rgba(174, 191, 146, 0.18); color: #cfe0ae;
  border: 1px solid rgba(174, 191, 146, 0.4);
}
@media (max-width: 560px) { .band { padding: 40px 26px; } }

/* language marquee */
.marquee {
  overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee + .marquee { margin-top: 14px; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: slide 36s linear infinite; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}
.marquee-track span {
  flex: none;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--divider);
  padding: 10px 20px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* pricing */
.plans { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 780px; }
.plan {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border-radius: var(--radius-lg); padding: 34px 30px;
  border: 1px solid var(--divider); box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan.pro {
  position: relative;
  border: 1.5px solid rgba(198, 113, 57, 0.55);
  background:
    linear-gradient(170deg, var(--accent-100), color-mix(in srgb, var(--card) 92%, transparent) 55%);
  box-shadow: 0 18px 44px -18px rgba(140, 73, 26, 0.4);
}
.plan .tag {
  position: absolute; top: -13px; right: 26px;
  background: linear-gradient(180deg, #d67f48, var(--accent-600));
  color: #fff6ec;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(140, 73, 26, 0.6);
}
.plan h3 { font-size: 1.5rem; }
.plan .price { font-size: 0.95rem; color: var(--muted); margin-bottom: 20px; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: 0.95rem; }
.plan li { display: flex; gap: 10px; }
.plan li::before { content: "✓"; color: var(--green); font-weight: 800; }

/* FAQ */
.faq { max-width: 780px; }
.faq details {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border-radius: var(--radius-md);
  padding: 4px 24px; margin-bottom: 12px;
  border: 1px solid var(--divider); box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(198, 113, 57, 0.4); }
.faq summary {
  font-weight: 700; font-size: 1rem; cursor: pointer;
  padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--accent-700); background: var(--accent-100);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq details p { color: var(--muted); font-size: 0.96rem; margin: 0 0 18px; }

/* CTA */
.cta { text-align: center; }
.cta-inner {
  background:
    radial-gradient(560px 280px at 50% -80px, rgba(255, 198, 165, 0.5), transparent 70%),
    color-mix(in srgb, var(--card) 80%, transparent);
  border: 1px solid var(--divider);
  border-radius: calc(var(--radius-lg) * 1.3);
  padding: 64px 30px; box-shadow: var(--shadow-sm);
}
.cta .btn { margin-top: 10px; }
.cta p { color: var(--muted); }

/* footer */
footer { border-top: 1px solid var(--divider); padding: 40px 0 50px; margin-top: 96px; background: color-mix(in srgb, var(--surface) 40%, transparent); }
.foot {
  max-width: var(--wrap); margin: 0 auto; padding: 0 22px;
  display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center;
  font-size: 0.9rem; color: var(--muted);
}
.foot a { color: inherit; text-decoration: none; font-weight: 600; }
.foot a:hover { color: var(--accent-700); }
.foot .brand { font-size: 1.05rem; margin-right: auto; color: var(--text); }
.foot .brand img { width: 26px; height: 26px; }

/* ── legal pages ── */
.legal { max-width: 740px; margin: 0 auto; padding: 46px 22px 80px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.7rem); }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 38px; }
.legal h2 { font-size: 1.4rem; margin-top: 48px; }
.legal h3 { font-size: 1.05rem; margin-top: 28px; font-family: var(--font-body); font-weight: 700; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal ol { padding-left: 22px; }
.legal ol li { margin-bottom: 8px; }
.legal code {
  font-size: 0.9em; padding: 2px 6px; border-radius: 6px;
  background: var(--surface); font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.legal .table-wrap { overflow-x: auto; margin: 18px 0 26px; }
.legal .table {
  width: 100%; border-collapse: collapse; font-size: 0.94rem;
  min-width: 460px;
}
.legal .table th {
  text-align: left; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  padding: 10px 14px; border-bottom: 1px solid var(--divider);
}
.legal .table td {
  padding: 12px 14px; vertical-align: top;
  border-bottom: 1px solid rgba(32, 30, 29, 0.07);
}
.legal .table tbody tr:last-child td { border-bottom: 0; }

.legal .box {
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid rgba(198, 113, 57, 0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px; font-size: 0.97rem;
  box-shadow: var(--shadow-sm);
}
