/* ==========================================================
   Klevi — landing page styles
   ========================================================== */

:root {
  --iris: #5146d8;
  --iris-600: #4338c4;
  --iris-50: #f3f2fd;
  --iris-100: #e6e4fb;

  --ink: #1d1d1f;        /* graphite */
  --ink-2: #424245;
  --muted: #6e6e73;
  --line: #e8e8ed;
  --bg: #ffffff;
  --bg-tint: #f7f7f9;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 16, 24, .04), 0 2px 8px rgba(16, 16, 24, .04);
  --shadow: 0 2px 6px rgba(16, 16, 24, .04), 0 18px 48px -12px rgba(16, 16, 24, .14);
  --shadow-iris: 0 10px 30px -8px rgba(81, 70, 216, .45);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
}
img, svg { display: block; max-width: 100%; }
a { color: var(--iris); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3 { margin: 0; letter-spacing: -0.022em; line-height: 1.1; font-weight: 600; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--iris); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -48px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap;
  transition: background-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn--sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--iris); color: #fff; box-shadow: var(--shadow-iris); }
.btn--primary:hover { background: var(--iris-600); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #d2d2d7; background: var(--bg-tint); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 26px; height: 26px; border-radius: 9px;
  background: radial-gradient(circle at 32% 30%, #8f87ff, var(--iris) 60%, #3a30b8);
  position: relative; box-shadow: 0 4px 10px -3px rgba(81, 70, 216, .5);
}
.brand__mark::before, .brand__mark::after {
  content: ""; position: absolute; top: 10px; width: 3px; height: 5px; border-radius: 2px; background: #fff;
}
.brand__mark::before { left: 8px; }
.brand__mark::after { right: 8px; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: var(--ink-2); font-size: 14px; font-weight: 450; }
.nav__links a:hover { color: var(--ink); text-decoration: none; }
.nav__links .nav__cta-mobile { display: none; }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 720px; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40% 50% at 78% 30%, rgba(81, 70, 216, .12), transparent 70%),
    radial-gradient(30% 40% at 15% 10%, rgba(143, 135, 255, .08), transparent 70%);
}
.hero__inner { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px; background: var(--iris-50); color: var(--iris);
  font-size: 13px; font-weight: 500;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--iris); box-shadow: 0 0 0 4px rgba(81, 70, 216, .15); }

.hero__title { margin-top: 22px; font-size: clamp(48px, 7.4vw, 88px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.hero__lede { margin-top: 18px; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; letter-spacing: -0.02em; font-weight: 500; color: var(--ink); max-width: 20ch; }
.hero__sub { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 46ch; }
.hero__note { margin-top: 12px; font-size: 13px; color: var(--muted); }

/* ---------- Download buttons ---------- */
.downloads { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.downloads--center { justify-content: center; }
.btn__icon { width: 18px; height: 18px; flex: none; }
.downloads__msg { margin-top: 16px; min-height: 1.4em; font-size: 14px; color: var(--iris); font-weight: 500; }

/* ---------- Hero visual ---------- */
.hero__visual { position: relative; padding: 24px 0 56px; }
.window {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); overflow: hidden;
}
.window__bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: #fbfbfd; }
.window__bar span { width: 11px; height: 11px; border-radius: 50%; background: #e3e3e8; }
.window__bar p { margin-left: 10px; font-size: 12px; color: var(--muted); }
.window__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
.tile { position: relative; aspect-ratio: 16 / 10; border-radius: 10px; }
.tile span {
  position: absolute; left: 8px; bottom: 8px; padding: 2px 8px; border-radius: 6px;
  font-size: 11px; color: #fff; background: rgba(0, 0, 0, .28); backdrop-filter: blur(6px);
}
.tile::after { /* avatar circle */
  content: ""; position: absolute; left: 50%; top: 46%; width: 30%; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%); background: rgba(255, 255, 255, .35);
}
.tile--a { background: linear-gradient(145deg, #d8d4f7, #b9b2f0); }
.tile--b { background: linear-gradient(145deg, #dfe6ee, #c3cfdc); }
.tile--c { background: linear-gradient(145deg, #f1dfd6, #e3c6b8); }
.tile--d { background: linear-gradient(145deg, #dce9e2, #bcd4c7); }

.caption {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 420px; padding: 12px 14px; border-radius: 14px;
  background: rgba(29, 29, 31, .82); color: #fff; backdrop-filter: blur(12px);
  font-size: 13px; line-height: 1.45;
}
.caption__src { color: rgba(255, 255, 255, .6); }
.caption__out { margin-top: 4px; font-weight: 500; }
.lang {
  display: inline-block; margin-right: 6px; padding: 0 5px; border-radius: 4px;
  font-size: 10px; font-weight: 600; letter-spacing: .04em; line-height: 16px;
  background: rgba(255, 255, 255, .16);
}
.lang--out { background: var(--iris); }

.klev-float { position: absolute; right: -8px; bottom: 0; display: flex; align-items: flex-end; gap: 12px; flex-direction: row-reverse; }
.bubble {
  display: flex; flex-direction: column; gap: 2px; margin-bottom: 132px;
  padding: 10px 14px; border-radius: 14px 14px 4px 14px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); font-size: 13px; white-space: nowrap;
  animation: pop 6s var(--ease) infinite;
}
.bubble strong { font-weight: 600; }
.bubble span { color: var(--muted); font-size: 12px; }

/* ---------- Klev (placeholder character) ---------- */
.klev { --size: 96px; position: relative; width: var(--size); height: calc(var(--size) * 1.18); }
.klev__body {
  position: relative; width: var(--size); height: var(--size); border-radius: 44% 44% 42% 42% / 48% 48% 40% 40%;
  background: radial-gradient(circle at 34% 28%, #a39cff 0%, #6d63ea 38%, var(--iris) 62%, #3b31b5 100%);
  box-shadow: inset -6px -10px 18px rgba(30, 20, 120, .35), inset 6px 8px 14px rgba(255, 255, 255, .25), 0 18px 36px -12px rgba(81, 70, 216, .6);
  display: flex; align-items: center; justify-content: center; gap: calc(var(--size) * .17);
  animation: float 4.8s ease-in-out infinite;
}
.klev__body::before { /* highlight */
  content: ""; position: absolute; top: 12%; left: 20%; width: 26%; height: 16%; border-radius: 50%;
  background: rgba(255, 255, 255, .45); filter: blur(2px); transform: rotate(-20deg);
}
.klev__eye {
  width: calc(var(--size) * .1); height: calc(var(--size) * .16); border-radius: 999px; background: #fff;
  margin-top: calc(var(--size) * -.04);
  animation: blink 5s infinite;
}
.klev__shadow {
  position: absolute; left: 50%; bottom: 0; width: 60%; height: 10px; border-radius: 50%;
  background: rgba(81, 70, 216, .22); filter: blur(4px); transform: translateX(-50%);
  animation: shadow 4.8s ease-in-out infinite;
}
.klev--sm { --size: 64px; height: 64px; margin: 0 auto 24px; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shadow { 0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; } 50% { transform: translateX(-50%) scale(.8); opacity: .6; } }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(.1); } }
@keyframes pop {
  0%, 8% { opacity: 0; transform: translateY(6px) scale(.96); }
  14%, 80% { opacity: 1; transform: none; }
  90%, 100% { opacity: 0; transform: translateY(-4px); }
}

/* ---------- Works with ---------- */
.works { padding: 8px 0 40px; }
.works .container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.works p { font-size: 13px; color: var(--muted); }
.works ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; }
.works li { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: #a1a1a6; }

/* ---------- Sections ---------- */
.section { padding: 112px 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__head--left { text-align: left; margin: 0; }
.section__head h2 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.035em; }
.section__head p:not(.kicker) { margin-top: 16px; font-size: 19px; color: var(--muted); }
.kicker { margin-bottom: 14px; font-size: 14px; font-weight: 600; color: var(--iris); letter-spacing: 0; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature {
  padding: 36px; border-radius: var(--radius); background: var(--bg-tint);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background-color .4s;
}
.feature:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-2px); }
.feature__icon {
  width: 48px; height: 48px; margin-bottom: 28px; border-radius: 14px;
  display: grid; place-items: center; color: var(--iris); background: #fff; box-shadow: var(--shadow-sm);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 22px; }
.feature p { margin-top: 10px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 32px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step__num {
  display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 24px; border-radius: 50%;
  background: var(--iris); color: #fff; font-size: 15px; font-weight: 600;
}
.step h3 { font-size: 20px; }
.step p { margin-top: 10px; color: var(--muted); font-size: 16px; }

/* ---------- Privacy ---------- */
.privacy { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.privacy__copy h2 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.035em; }
.privacy__copy p:not(.kicker) { margin-top: 16px; font-size: 19px; color: var(--muted); max-width: 40ch; }
.privacy__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.privacy__list li { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); }
.privacy__list h3 { font-size: 17px; display: flex; align-items: center; gap: 10px; }
.privacy__list h3::before {
  content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--iris-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235146D8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 10.5l2.5 2.5L14 7.5'/%3E%3C/svg%3E") center / 20px no-repeat;
}
.privacy__list p { margin-top: 8px; font-size: 15px; color: var(--muted); }

/* ---------- Pricing ---------- */
.billing {
  display: flex; width: max-content; margin: -16px auto 40px; padding: 4px; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
}
.billing__opt {
  display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 18px; border: 0; border-radius: 999px;
  background: transparent; color: var(--ink-2); font-size: 14px; font-weight: 500;
  transition: background-color .25s var(--ease), color .25s;
}
.billing__opt.is-active { background: var(--ink); color: #fff; }
.save { padding: 2px 8px; border-radius: 999px; background: var(--iris-100); color: var(--iris); font-size: 12px; font-weight: 600; }
.billing__opt.is-active .save { background: var(--iris); color: #fff; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 32px;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
}
.plan--featured { border: 1.5px solid var(--iris); box-shadow: 0 24px 60px -24px rgba(81, 70, 216, .35); }
.plan__badge {
  position: absolute; top: -12px; left: 32px; padding: 4px 10px; border-radius: 999px;
  background: var(--iris); color: #fff; font-size: 12px; font-weight: 600;
}
.plan h3 { font-size: 20px; }
.plan__desc { margin-top: 6px; font-size: 15px; color: var(--muted); }
.plan__price { margin-top: 24px; display: flex; align-items: baseline; gap: 4px; }
.plan__price .amount { font-size: 48px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__price .per { color: var(--muted); font-size: 16px; }
.plan__billed { margin: 8px 0 24px; min-height: 1.4em; font-size: 13px; color: var(--muted); }
.plan__list { list-style: none; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235146D8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3 3L15 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.amount.is-changing { animation: tick .35s var(--ease); }
@keyframes tick { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 0; font-size: 18px; font-weight: 500; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%231d1d1f' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M10 5v10M5 10h10'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .3s var(--ease), background-color .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--iris-50); }
.faq details p { padding: 0 48px 24px 0; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { padding: 40px 0 120px; }
.cta__inner {
  text-align: center; padding: 72px 32px; border-radius: 32px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(81, 70, 216, .12), transparent 70%),
    var(--bg-tint);
}
.cta h2 { font-size: clamp(32px, 4.4vw, 48px); letter-spacing: -0.035em; }
.cta p { margin-top: 14px; font-size: 19px; color: var(--muted); }
.cta .downloads { margin-top: 32px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer__inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer .brand { font-size: 16px; }
.footer .brand__mark { width: 22px; height: 22px; border-radius: 7px; }
.footer .brand__mark::before, .footer .brand__mark::after { top: 8px; width: 2.5px; height: 4.5px; }
.footer .brand__mark::before { left: 6.5px; }
.footer .brand__mark::after { right: 6.5px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--ink-2); font-size: 14px; }
.footer__copy { margin-left: auto; font-size: 13px; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero__lede { max-width: 22ch; }
  .hero .downloads { justify-content: center; }
  .hero__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .privacy, .faq { grid-template-columns: 1fr; gap: 40px; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan--featured { order: -1; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; gap: 0;
    padding: 8px 24px 24px; background: rgba(255, 255, 255, .96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav__links .nav__cta-mobile { display: inline-flex; margin-top: 16px; height: 48px; font-size: 16px; color: #fff; border-bottom: 0; }
  .nav__cta { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    margin-left: auto; width: 40px; height: 40px; padding: 0 10px; border: 0; background: transparent;
  }
  .nav__toggle span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease); }
  .nav.is-open .nav__toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav.is-open .nav__toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 64px; }
  .hero__sub { font-size: 17px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 40px; }
  .section__head p:not(.kicker), .privacy__copy p:not(.kicker), .cta p { font-size: 17px; }
  .features, .privacy__list { grid-template-columns: 1fr; }
  .feature { padding: 28px; }
  .hide-sm { display: none; }
  .downloads { flex-direction: column; width: 100%; }
  .downloads .btn { width: 100%; }
  .klev { --size: 72px; }
  .klev-float { right: 0; }
  .bubble { display: none; }
  .caption { bottom: 12px; width: calc(100% - 24px); font-size: 12px; }
  .cta { padding: 16px 0 80px; }
  .cta__inner { padding: 56px 20px; border-radius: 24px; }
  .faq summary { font-size: 17px; }
  .faq details p { padding-right: 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__copy { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Legal pages ---------- */
.legal { padding: 72px 0 112px; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(36px, 5vw, 52px); letter-spacing: -0.035em; }
.legal .updated { margin-top: 12px; color: var(--muted); font-size: 14px; }
.legal h2 { margin: 40px 0 12px; font-size: 22px; }
.legal p, .legal li { color: var(--ink-2); }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 20px; }
.legal .notice { margin-top: 32px; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--iris-50); color: var(--iris-600); font-size: 15px; }
