/* ==========================================================================
   kairo — the smart self-development toolkit
   Brand system: Kairo blue #2845cf · cream #f1ead9 / #ece4d0 · yellow #ffd75e
   navy atmosphere #0A0E18 · IBM Plex Sans + Mono · lowercase brand.
   No em-dashes. No calm/quiet/soft/zen language.
   ========================================================================== */

:root {
  /* core brand */
  --blue: #2845cf;
  --blue-deep: #1d34a6;
  --blue-bright: #3d7de8;
  --navy: #0a0e18;
  --navy-1: #10141f;
  --navy-2: #161b2a;
  --cream: #f1ead9;
  --cream-2: #ece4d0;
  --yellow: #ffd75e;

  /* ink */
  --ink: #f2ede4;            /* text on dark */
  --ink-dim: rgba(242,237,228,.66);
  --ink-faint: rgba(242,237,228,.40);
  --ink-navy: #16284d;       /* text on cream */
  --ink-navy-dim: rgba(22,40,77,.66);

  /* lines */
  --line-dark: rgba(242,237,228,.10);
  --line-light: rgba(22,40,77,.12);
  --grid-on-blue: rgba(255,255,255,.09);
  --grid-on-cream: rgba(40,69,207,.07);

  /* type */
  --sans: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--ink-navy); }

/* ----- layout helpers ----- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin: 0 0 18px;
}
.eyebrow.on-cream { color: var(--blue); }
.hl { color: var(--yellow); }
.hl-mark { background: var(--yellow); color: var(--ink-navy); padding: 0 .18em; border-radius: 3px; }

h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; line-height: 1.07; margin: 0; }
h1 { font-size: clamp(38px, 6.4vw, 78px); }
h2 { font-size: clamp(30px, 4.6vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -.01em; }
p  { margin: 0; }
.lead { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-dim); line-height: 1.62; }

/* ----- blueprint grid backgrounds ----- */
.grid-blue {
  background-color: var(--blue);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 63px, var(--grid-on-blue) 63px 65px),
    repeating-linear-gradient(90deg, transparent 0 63px, var(--grid-on-blue) 63px 65px);
}
.grid-navy {
  background-color: var(--navy);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 63px, var(--line-dark) 63px 64px),
    repeating-linear-gradient(90deg, transparent 0 63px, var(--line-dark) 63px 64px);
}
.grid-cream {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 47px, var(--grid-on-cream) 47px 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, var(--grid-on-cream) 47px 48px);
}
.on-cream { background: var(--cream); color: var(--ink-navy); }
.on-cream .lead { color: var(--ink-navy-dim); }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,24,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand span { font-size: 19px; letter-spacing: .02em; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: 14.5px; color: var(--ink-dim); transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { margin-left: 8px; }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s, border-color .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--ink); color: var(--navy); }
.btn--solid:hover { background: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink-navy); }
.btn--ghost { border-color: var(--line-dark); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink-dim); }
.btn--navy { background: var(--blue); color: #fff; }
.btn--navy:hover { background: var(--blue-deep); }

/* ----- store badges ----- */
.badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.badges img { height: 52px; width: auto; transition: transform .12s, opacity .15s; }
.badges a:hover img { transform: translateY(-1px); opacity: .9; }
.badges--light img { filter: none; }

/* ============================ HERO ============================ */
.hero { position: relative; overflow: hidden; }
.hero::after { /* fade grid into the page */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -10%, transparent 40%, rgba(10,14,24,.55) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 { color: #fff; }
.hero h1 .soft { color: rgba(255,255,255,.62); }
.hero__lead { margin-top: 22px; max-width: 30em; color: rgba(255,255,255,.82); font-size: clamp(16px,1.5vw,19px); }
.hero__cta { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.7); }
.hero__art { display: flex; justify-content: center; position: relative; }

/* small trust row */
.trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.trust div { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.66); display: flex; align-items: center; gap: 8px; }
.trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }

/* ============================ PHONE MOCKUP ============================ */
/* Built in CSS so the site looks finished now. To use a real screenshot,
   replace the .screen contents with <img class="shot" src="..."> (see README). */
.phone {
  width: 264px; flex: 0 0 auto;
  background: #05070c; border-radius: 38px; padding: 11px;
  border: 1px solid rgba(242,237,228,.14);
  box-shadow: 0 40px 80px -28px rgba(0,0,0,.8), 0 12px 32px -18px rgba(0,0,0,.7),
              inset 0 1px 0 rgba(242,237,228,.05);
}
.phone--tilt { transform: rotate(2deg); }
.phone--tilt-l { transform: rotate(-2deg); }
.screen {
  background: var(--navy); border-radius: 28px; overflow: hidden;
  height: 540px; display: flex; flex-direction: column;
  padding: 16px 15px 14px; position: relative;
}
.screen .shot { width: 100%; height: 100%; object-fit: cover; border-radius: 0; display: block; }
/* when a real screenshot is used, fill the frame edge-to-edge at the screen's true ratio */
.screen:has(.shot) { padding: 0; height: auto; aspect-ratio: 680 / 1386; }
.sbar { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9.5px; letter-spacing: .04em; color: var(--ink-faint); margin-bottom: 16px; }
.stabs { display: flex; justify-content: space-around; margin-bottom: 20px; }
.stab { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: lowercase; color: var(--ink-faint); padding-bottom: 5px; position: relative; }
.stab.on { color: var(--ink); }
.stab.on::after { content: ""; position: absolute; left: 22%; right: 22%; bottom: 0; height: 1px; background: var(--ink); }
.sdate { text-align: center; font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; color: var(--ink-faint); margin-bottom: 12px; }
.stag { text-align: center; font-size: 13px; color: var(--ink-dim); margin-bottom: 18px; padding-inline: 10px; }

/* the sphere */
.orb-wrap { display: flex; justify-content: center; align-items: center; height: 96px; margin-bottom: 18px; }
.orb { width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #89aef0 0%, #3d7de8 38%, #1e4fa8 72%, #0f2654 100%);
  position: relative; box-shadow: 0 0 38px rgba(61,125,232,.28); }
.orb::before { content: ""; position: absolute; inset: -22px; border-radius: 50%; background: radial-gradient(circle, rgba(61,125,232,.22) 0%, transparent 65%); }
.orb__hi { position: absolute; top: 16%; left: 32%; width: 28%; height: 14%; background: radial-gradient(ellipse, rgba(255,255,255,.55) 0%, rgba(255,255,255,.1) 50%, transparent 75%); border-radius: 50%; filter: blur(1px); }
.orb__mouth { position: absolute; bottom: 27%; left: 50%; transform: translateX(-50%); width: 24px; height: 9px; background: #000; clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%); border-radius: 2px; }

/* task card */
.scard { background: linear-gradient(180deg, var(--navy-2), var(--navy-1)); border: .5px solid var(--line-dark); border-radius: 14px; padding: 16px 15px; }
.scat { font-family: var(--mono); font-size: 9px; letter-spacing: .2em; color: var(--ink-faint); margin-bottom: 9px; }
.sname { font-size: 21px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 9px; }
.snote { font-size: 11.5px; color: var(--ink-dim); line-height: 1.5; margin-bottom: 14px; }
.scta { display: flex; align-items: center; font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; color: var(--ink-dim); padding-top: 12px; border-top: .5px solid var(--line-dark); }
.scta::after { content: "→"; margin-left: auto; }
.snav { display: flex; justify-content: space-around; margin-top: auto; padding-top: 13px; border-top: .5px solid var(--line-dark); }
.snav span { font-family: var(--mono); font-size: 8.5px; letter-spacing: .24em; color: var(--ink-faint); }
.snav span.on { color: var(--ink); }

/* progress screen bits */
.sweek { display: flex; justify-content: space-between; gap: 4px; margin-bottom: 16px; }
.sday { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.sday b { font-family: var(--mono); font-size: 8.5px; font-weight: 400; letter-spacing: .12em; color: var(--ink-faint); }
.sdaym { width: 17px; height: 17px; border-radius: 50%; border: .5px solid rgba(242,237,228,.22); }
.sday.done .sdaym { background: var(--ink-dim); border-color: transparent; }
.sday.tod .sdaym { border: 1px solid var(--ink); position: relative; }
.sday.tod .sdaym::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--ink); }
.shero { text-align: center; padding: 14px 0; border-top: .5px solid var(--line-dark); border-bottom: .5px solid var(--line-dark); margin-bottom: 16px; }
.shero b { display: block; font-size: 60px; font-weight: 600; color: #89aef0; line-height: 1; letter-spacing: -.04em; }
.shero span { font-size: 11px; color: var(--ink-dim); }
.smini { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.sbox { text-align: center; padding: 12px 8px; background: var(--navy-1); border: .5px solid var(--line-dark); border-radius: 10px; }
.sbox em { display: block; font-family: var(--mono); font-style: normal; font-size: 8px; letter-spacing: .2em; color: var(--ink-faint); margin-bottom: 6px; }
.sbox b { font-size: 22px; font-weight: 600; }
.sbox i { display: block; font-style: normal; font-size: 9px; color: var(--ink-faint); margin-top: 2px; }

/* a tool screen (e.g. box breathing / letter) */
.sbig { margin: auto 0; text-align: center; }
.sbig .ring { width: 132px; height: 132px; margin: 6px auto 20px; border-radius: 50%; border: 1.5px solid rgba(61,125,232,.4); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 50px rgba(61,125,232,.18) inset; }
.sbig .ring b { font-family: var(--mono); font-size: 13px; letter-spacing: .18em; color: #89aef0; }
.sbig h4 { margin: 0 0 8px; font-size: 19px; font-weight: 600; }
.sbig p { font-size: 11.5px; color: var(--ink-dim); padding-inline: 14px; }

/* ============================ STATEMENT ============================ */
.statement { text-align: left; }
.statement p { font-size: clamp(22px, 3.1vw, 38px); line-height: 1.28; font-weight: 500; letter-spacing: -.018em; max-width: 18ch; }
.statement .big { max-width: 22ch; }
.statement em { font-style: normal; color: var(--ink-navy); }
.statement .mut { color: var(--ink-navy-dim); }

/* ============================ PILLARS ============================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); margin-top: 8px; }
.pillar { border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px 24px; background: rgba(255,255,255,.32); }
.pillar .num { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; color: var(--blue); margin-bottom: 16px; }
.pillar h3 { margin-bottom: 9px; color: var(--ink-navy); }
.pillar p { font-size: 14.5px; color: var(--ink-navy-dim); line-height: 1.55; }

/* ============================ FEATURE ROWS ============================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 8vw, 104px); }
.feature--flip .feature__art { order: 2; }
.feature__art { display: flex; justify-content: center; }
.feature__body .tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 14px; }
.feature__body h2 { margin-bottom: 16px; }
.feature__body p { color: var(--ink-dim); font-size: 16.5px; max-width: 34ch; }
.feature__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.feature__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-dim); }
.feature__list li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: 8px; background: var(--yellow); border-radius: 2px; }

/* ============================ TOOLKIT GRID ============================ */
.toolkit { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 12px; }
.tool { border: 1px solid var(--line-dark); border-radius: 14px; padding: 22px 18px; background: var(--navy-1); transition: border-color .15s, transform .15s, background .15s; }
.tool:hover { border-color: rgba(61,125,232,.5); transform: translateY(-2px); background: var(--navy-2); }
.tool .ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: rgba(61,125,232,.14); color: #89aef0; margin-bottom: 14px; }
.tool .ic svg { width: 19px; height: 19px; }
.tool h3 { font-size: 16px; margin-bottom: 6px; }
.tool p { font-size: 12.5px; color: var(--ink-dim); line-height: 1.5; }

/* ============================ RESEARCH STRIP ============================ */
.research { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.research__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rcard { border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 20px 18px; background: rgba(255,255,255,.06); }
.rcard .k { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.rcard p { font-size: 13.5px; color: #fff; line-height: 1.5; }
.research h2 { color: #fff; }
.research .lead { color: rgba(255,255,255,.84); margin-top: 16px; }

/* ============================ CTA BAND ============================ */
.cta { text-align: center; overflow: hidden; }
.cta h2 { color: #fff; max-width: 16ch; margin-inline: auto; }
.cta .lead { color: rgba(255,255,255,.86); margin: 18px auto 30px; max-width: 40ch; }
.cta .badges { justify-content: center; }
.cta__link { margin-top: 20px; font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.cta__link a { border-bottom: 1px solid rgba(255,255,255,.4); }

/* ============================ FAQ ============================ */
.faq { display: grid; gap: 0; max-width: 820px; margin-top: 8px; border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; gap: 16px;
  font-size: clamp(16px, 2vw, 19px); font-weight: 500; color: var(--ink-navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; font-family: var(--mono); font-size: 22px; color: var(--blue); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 4px 24px; color: var(--ink-navy-dim); font-size: 15.5px; line-height: 1.62; max-width: 64ch; }

/* ============================ FOOTER ============================ */
.footer { border-top: 1px solid var(--line-dark); padding-block: 56px 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start; }
.footer .brand span { font-size: 20px; }
.footer__tag { margin-top: 16px; color: var(--ink-dim); font-size: 14.5px; max-width: 30ch; }
.footer__badges { margin-top: 22px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin: 6px 0 16px; font-weight: 400; }
.footer__col a { display: block; color: var(--ink-dim); font-size: 14.5px; padding: 6px 0; transition: color .15s; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 13px; color: var(--ink-faint); font-family: var(--mono); letter-spacing: .03em; }

/* ============================ DOWNLOAD PAGE ============================ */
.dl { min-height: 100dvh; display: flex; flex-direction: column; }
.dl__main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px var(--gutter); }
.dl__card {
  width: 100%; max-width: 940px;
  display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 5vw, 56px); align-items: center;
}
.dl__intro { text-align: left; }
.dl__logo { width: 76px; height: 76px; border-radius: 20px; margin-bottom: 24px; }
.dl__name { font-size: 40px; font-weight: 600; letter-spacing: .04em; color: #fff; margin-bottom: 14px; }
.dl__tag { color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.55; max-width: 30ch; margin-bottom: 28px; }
.dl__badges { margin-bottom: 22px; }
.dl__detecting { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 9px; }
.dl__detecting .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); animation: pulse 1.3s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.dl__qr { text-align: center; }
.dl__qr .frame { background: var(--cream); border-radius: 18px; padding: 16px; box-shadow: 0 30px 60px -24px rgba(0,0,0,.7); }
.dl__qr .frame svg, .dl__qr .frame img { width: 168px; height: 168px; }
.dl__qr .cap { margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.dl__shots { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; padding: 8px var(--gutter) 64px; }
.dl__shots .phone { width: 210px; }
.dl__shots .screen { height: 430px; }
.dl__foot { text-align: center; padding: 22px; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.6); }
.dl__foot a { color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.35); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__art { margin-top: 10px; }
  .feature, .research, .dl__card { grid-template-columns: 1fr; }
  .feature--flip .feature__art { order: 0; }
  .research__cards { grid-template-columns: 1fr 1fr; }
  .toolkit { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .dl__intro { text-align: center; margin-inline: auto; }
  .dl__logo { margin-inline: auto; }
  .dl__tag { margin-inline: auto; }
  .dl__badges { display: flex; justify-content: center; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .toolkit { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  h1 { font-size: clamp(34px, 11vw, 52px); }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } }

/* ============================ LEGAL PAGES ============================ */
.legal { background: var(--cream); color: var(--ink-navy); }
.legal-nav { position: sticky; top: 0; z-index: 10; background: rgba(241,234,217,.86);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-light); }
.legal-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.legal-nav .brand span { color: var(--ink-navy); }
.legal-nav .brand img { width: 28px; height: 28px; border-radius: 8px; }
.legal-back { font-family: var(--mono); font-size: 13px; letter-spacing: .03em; color: var(--blue); }
.legal-back:hover { text-decoration: underline; }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: clamp(40px,6vw,72px) var(--gutter) 72px; }
.legal-wrap h1 { font-size: clamp(32px,5vw,46px); margin-bottom: 14px; }
.legal-eff { font-family: var(--mono); font-size: 13px; letter-spacing: .02em; color: var(--ink-navy-dim); margin-bottom: 26px; }
.legal-intro { font-size: 17.5px; color: var(--ink-navy-dim); line-height: 1.7; }
.legal-wrap h2 { font-size: clamp(19px,2.4vw,24px); margin: 44px 0 12px; }
.legal-wrap p { margin-bottom: 14px; line-height: 1.72; color: rgba(22,40,77,.86); }
.legal-wrap ul { margin: 0 0 18px; padding: 0; list-style: none; }
.legal-wrap li { position: relative; padding-left: 22px; margin-bottom: 11px; line-height: 1.62; color: rgba(22,40,77,.86); }
.legal-wrap li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 7px; height: 7px; background: var(--blue); border-radius: 2px; }
.legal-wrap a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: var(--blue-deep); }
.legal-foot { border-top: 1px solid var(--line-light); padding: 30px 0 52px; }
.legal-foot .wrap { display: flex; flex-direction: column; gap: 14px; }
.legal-foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.legal-foot nav a { font-size: 14px; color: var(--ink-navy-dim); }
.legal-foot nav a:hover { color: var(--ink-navy); }
.legal-foot .cr { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-navy-dim); }
