/* Pioneer Project Experts — site styles */

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0c1b2a;
  --ink-2: #10283b;
  --ink-3: #0e2030;
  --blue: #2c86d6;
  --blue-deep: #1f6fb8;      /* AA on white for small text */
  --blue-light: #7ec2ff;
  --text: #0c1b2a;
  --muted: #4f6070;          /* 6.6:1 on white */
  --muted-2: #5b6b78;        /* 5.4:1 on white */
  --line: #dbe4eb;
  --bg: #ffffff;
  --bg-alt: #f5f8fa;
  --on-dark: #b9c8d2;
  --radius: 6px;
  --header-h: 76px;
  --shadow-lg: 0 30px 65px rgba(12, 27, 42, .22);
  --shadow-md: 0 18px 40px rgba(22, 42, 58, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv11", "ss01";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3 { text-wrap: balance; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* Accessibility helpers */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius); font-weight: 700;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
.dark-section :focus-visible, .contact-section :focus-visible, footer :focus-visible { outline-color: var(--blue-light); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: #e7edf2; box-shadow: 0 6px 24px rgba(12, 27, 42, .06); }
.nav-wrap { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; fill: var(--ink); }
.mark-accent { fill: var(--blue); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { letter-spacing: .16em; font-size: 18px; font-weight: 800; }
.brand-text small { letter-spacing: .2em; font-size: 9px; margin-top: 5px; color: var(--muted-2); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav a { position: relative; padding: 6px 0; transition: color .2s; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav a:hover, .nav a.active { color: var(--blue-deep); }
.nav a.active::after, .nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav .nav-cta {
  padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 4px; transition: background .2s;
}
.nav .nav-cta:hover { background: #17344c; color: #fff; }

.menu-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  padding: 11px 10px; flex-direction: column; justify-content: space-between;
}
.menu-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Typography */
.eyebrow {
  font-size: 12px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase;
  color: var(--blue-deep); margin: 0 0 16px;
}
.eyebrow.light { color: var(--blue-light); }
.section h2 {
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -.03em; font-weight: 750; margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 4px;
  font: inherit; font-weight: 700; font-size: 14px; border: 1px solid transparent; cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn span { transition: transform .2s; }
.btn:hover span { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #17344c; }
.btn-primary:disabled { opacity: .6; cursor: progress; }
.btn-ghost { border-color: #c6d2dc; background: #fff; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #e8f1f8; }
.full { width: 100%; }

/* Hero */
.hero { position: relative; overflow: hidden; background: #f7fafc; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(#dfe8ef80 1px, transparent 1px), linear-gradient(90deg, #dfe8ef80 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 85%);
  mask-image: linear-gradient(to right, #000, transparent 85%);
  opacity: .6;
}
.hero-layout {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: 64px; padding: 88px 0 96px;
}
.hero h1 {
  font-size: clamp(40px, 4.8vw, 64px); line-height: 1.04; letter-spacing: -.04em; font-weight: 800;
  margin: 0 0 24px; max-width: 640px;
}
.hero h1 span { color: var(--blue); }
.hero-lead { font-size: 18.5px; color: var(--muted); max-width: 580px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid #d7e1e8; max-width: 600px;
}
.hero-proof dt { font-size: 15px; font-weight: 700; }
.hero-proof dd { font-size: 13px; color: var(--muted-2); margin-top: 2px; line-height: 1.45; }

.hero-visual { position: relative; margin: 0; padding: 36px 28px; }
.panel {
  background: var(--ink-3); color: #fff; border: 1px solid #17354d; border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 22px;
}
.panel-top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; color: #9ab0c1; }
.tag { border: 1px solid #36546b; border-radius: 99px; padding: 3px 9px; font-size: 10px; letter-spacing: .08em; color: #b9c8d2; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.metric { background: #132a3d; padding: 13px 14px; border-radius: 6px; border: 1px solid transparent; }
.metric small { display: block; color: #8fa6b7; font-size: 11px; }
.metric strong { display: block; margin-top: 4px; font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums; }
.metric strong.warn { color: #f5c67d; }
.metric.accent { background: #143553; border-color: var(--blue); }
.chart { background: #0a1a27; padding: 14px 15px; border-radius: 6px; }
.chart-label { font-size: 11px; color: #8fa6b7; margin-bottom: 6px; }
.chart svg { height: 180px; width: 100%; }
.axis { stroke: #496175; stroke-width: 1; }
.gridline { stroke: #2d4253; stroke-width: 1; stroke-dasharray: 4 5; }
.line { fill: none; stroke-width: 3.5; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.baseline { stroke: #8ca2b3; }
.forecast { stroke: #f2b75b; }
.recovery { stroke: #57aaf1; }
.legend { display: flex; gap: 16px; font-size: 11px; color: #9ab0c1; margin-top: 8px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.baseline-dot { background: #8ca2b3; }
.forecast-dot { background: #f2b75b; }
.recovery-dot { background: #57aaf1; }
.workstream { margin-top: 18px; }
.workstream > span { font-size: 11px; color: #9ab0c1; }
.bar { height: 8px; background: #20384a; border-radius: 8px; margin-top: 8px; overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, #2c86d6, #57aaf1); border-radius: 8px; }
.w-88 { width: 88%; } .w-71 { width: 71%; } .w-57 { width: 57%; }

.floating-card {
  position: absolute; background: #fff; color: var(--ink); border: 1px solid #d8e2e9; border-radius: 8px;
  padding: 12px 16px; box-shadow: 0 16px 35px rgba(0, 0, 0, .12);
}
.floating-card small, .floating-card strong, .floating-card span { display: block; }
.floating-card small { font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { font-size: 17px; margin-top: 2px; }
.floating-card span { font-size: 11.5px; color: var(--muted-2); }
.card-a { top: 0; right: 0; }
.card-b { bottom: 0; left: 0; }

.sector-strip { position: relative; background: var(--ink); color: #d7e2ea; }
.sector-list {
  min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 11px; letter-spacing: .15em; font-weight: 700; text-transform: uppercase;
}
.sector-list li { display: flex; align-items: center; gap: 24px; white-space: nowrap; }
.sector-list li + li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); margin-left: -24px; }

/* Sections */
.section { padding: 104px 0; }
.section-alt { background: var(--bg-alt); }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 96px; }
.intro-copy { font-size: 18px; color: var(--muted); padding-top: 34px; }
.section-head { display: flex; justify-content: space-between; gap: 64px; align-items: end; margin-bottom: 48px; }
.section-head > div { max-width: 640px; }
.section-head > p { max-width: 360px; margin: 0; color: var(--muted-2); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s, box-shadow .25s, border-color .25s; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #aac8df; }
.service-card:hover::before { transform: scaleX(1); }
.num { font-size: 12px; letter-spacing: .1em; color: var(--blue-deep); font-weight: 700; font-variant-numeric: tabular-nums; }
.service-card h3 { font-size: 20px; line-height: 1.25; margin: 26px 0 10px; letter-spacing: -.01em; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-card ul { margin-top: 18px; padding-top: 16px; border-top: 1px solid #edf2f5; font-size: 13.5px; color: #283b49; }
.service-card li { position: relative; padding-left: 18px; margin: 6px 0; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 2px; background: var(--blue); }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process li { position: relative; padding: 28px 24px 8px 0; border-top: 2px solid var(--line); }
.process li::before {
  content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
}
.step { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); }
.process h3 { font-size: 22px; margin: 8px 0 8px; }
.process p { color: var(--muted); font-size: 15px; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: border-color .25s, box-shadow .25s; }
.industry-card:hover { border-color: #aac8df; box-shadow: var(--shadow-md); }
.industry-icon {
  width: 44px; height: 44px; padding: 10px; border-radius: 8px; background: #e8f2fb;
  fill: none; stroke: var(--blue-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.industry-card h3 { font-size: 19px; margin: 22px 0 8px; }
.industry-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Expertise */
.dark-section { background: var(--ink); color: #fff; }
.expertise-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: start; }
.light-copy { color: var(--on-dark); font-size: 17px; max-width: 480px; margin: 22px 0 30px; }
.expertise-list { border-top: 1px solid #294256; }
.expertise-list div { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid #294256; }
.expertise-list dt { font-size: 16px; font-weight: 700; }
.expertise-list dd { color: #b3c3cf; font-size: 15px; }

/* Insights */
.insight-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; }
.insight-feature, .insight-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 300px;
  display: flex; flex-direction: column;
}
.insight-feature { background: var(--ink-3); border-color: var(--ink-3); color: #fff; }
.insight-tag { font-size: 11px; letter-spacing: .13em; font-weight: 700; text-transform: uppercase; color: var(--blue-deep); margin: 0; }
.insight-feature .insight-tag { color: var(--blue-light); }
.insight-feature h3 { font-size: 28px; line-height: 1.15; margin: auto 0 12px; padding-top: 48px; }
.insight-feature p { color: #c4d3dd; }
.insight-feature a { font-weight: 700; color: #fff; border-bottom: 1px solid var(--blue-light); align-self: flex-start; padding-bottom: 2px; }
.insight-feature a:hover { color: var(--blue-light); }
.insight-card h3 { font-size: 20px; line-height: 1.25; margin: auto 0 10px; padding-top: 48px; }
.insight-card p { color: var(--muted); margin: 0; }

/* About */
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: start; }
.about-card { background: var(--ink-3); color: #fff; padding: 40px; border-radius: var(--radius); }
.about-mark { width: 52px; height: 52px; fill: #fff; }
.about-card h3 { font-size: 26px; margin: 36px 0 8px; }
.about-card > p { color: var(--on-dark); }
.about-facts { margin-top: 24px; border-top: 1px solid #294256; }
.about-facts div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid #294256; font-size: 14px; }
.about-facts dt { color: #8fa6b7; }
.about-facts dd { text-align: right; }
.about-lines { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.about-lines li { font-size: 11px; border: 1px solid #385369; border-radius: 99px; padding: 5px 11px; color: #d7e2ea; }
.about-copy { font-size: 17px; color: var(--muted); }
#about h2 { margin-bottom: 22px; }
.principles { margin-top: 30px; border-top: 1px solid #d5e0e7; }
.principles li { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid #d5e0e7; }
.principles strong { color: var(--blue-deep); font-variant-numeric: tabular-nums; }

/* Contact */
.contact-section { padding: 104px 0; background: var(--ink-2); color: #fff; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; }
.contact-section h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; margin: 0 0 20px; }
.contact-section p { color: #bfcdd7; max-width: 520px; }
.contact-points { margin-top: 28px; display: grid; gap: 12px; }
.contact-points li { position: relative; padding-left: 28px; color: #d7e2ea; font-size: 15px; }
.contact-points li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 16px; height: 16px; border-radius: 50%;
  background: #1c4466 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%237ec2ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat;
}

.contact-form { background: #fff; color: var(--ink); padding: 32px; border-radius: 10px; box-shadow: 0 30px 60px rgba(0, 0, 0, .25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.req { color: #c2410c; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid #c9d6df; background: #f9fbfc; border-radius: 4px; padding: 12px 13px;
  font: inherit; font-size: 15px; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(44, 134, 214, .2);
}
.contact-form [aria-invalid="true"] { border-color: #c2410c !important; box-shadow: 0 0 0 3px rgba(194, 65, 12, .15) !important; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form ::placeholder { color: #7b8a96; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 4px 0 18px; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--ink); }
.consent a { color: var(--blue-deep); text-decoration: underline; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted) !important; font-size: 13px; margin: 12px 0 0 !important; min-height: 1.2em; }
.form-note.ok { color: #15803d !important; }
.form-note.err { color: #b42318 !important; }

/* Footer */
footer { background: #081521; color: #a9b8c3; padding: 32px 0; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-grid p { margin: 0; }
.brand-footer .brand-mark { fill: #fff; width: 34px; height: 34px; }
.brand-footer .brand-text strong { color: #fff; font-size: 16px; }
.brand-footer .brand-text small { color: #8fa6b7; }
.footer-copy { text-align: center; font-size: 12.5px; }
.footer-meta { font-size: 12.5px; }
.footer-meta a { text-decoration: underline; text-underline-offset: 2px; }
.footer-meta a:hover { color: #fff; }

/* Motion */
.reveal { animation: fadeUp .7s ease both; }
.reveal-delay { animation-delay: .12s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Responsive */
@media (max-width: 1080px) {
  .nav { gap: 20px; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 980px) {
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0; background: #fff;
    border-bottom: 1px solid #dce5eb; box-shadow: 0 16px 30px rgba(12, 27, 42, .08);
    padding: 12px 24px 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; font-size: 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid #edf2f5; }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav .nav-cta { margin-top: 16px; text-align: center; border-bottom: 0; }
  .menu-toggle { display: flex; }
  .hero-layout, .two-col, .expertise-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-layout { padding: 64px 0 80px; gap: 40px; }
  .hero-visual { max-width: 620px; }
  .intro-copy { padding-top: 0; }
  .service-grid, .industry-grid, .insight-grid { grid-template-columns: 1fr 1fr; }
  .insight-feature { grid-column: 1 / -1; min-height: 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .two-col, .expertise-layout, .about-layout, .contact-layout { gap: 44px; }
  .sector-list { overflow-x: auto; justify-content: flex-start; gap: 48px; scrollbar-width: none; }
  .sector-list::-webkit-scrollbar { display: none; }
}
@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .container { width: calc(100% - 32px); }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 16px; }
  .hero-layout { padding: 44px 0 60px; }
  .hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .hero-lead { font-size: 17px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .hero-visual { padding: 0; }
  .floating-card { display: none; }
  .panel { padding: 14px; }
  .metric { padding: 10px; }
  .metric strong { font-size: 16px; }
  .chart svg { height: 140px; }
  .section, .contact-section { padding: 72px 0; }
  .service-grid, .industry-grid, .insight-grid, .process { grid-template-columns: 1fr; }
  .service-card, .insight-feature, .insight-card { padding: 24px; min-height: 0; }
  .insight-feature h3, .insight-card h3 { padding-top: 28px; }
  .expertise-list div { grid-template-columns: 1fr; gap: 4px; }
  .about-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-grid .brand { justify-content: center; }
}

/* Legal pages */
.legal { padding: 72px 0 96px; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); letter-spacing: -.03em; line-height: 1.1; margin: 0 0 8px; }
.legal h2 { font-size: 20px; margin: 40px 0 10px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal a { color: var(--blue-deep); text-decoration: underline; }
.legal .draft { background: #fff7e6; border: 1px solid #f2d19b; color: #7a4b00; padding: 14px 16px; border-radius: 6px; margin: 24px 0; font-size: 14px; }
.legal .back { display: inline-block; margin-top: 40px; font-weight: 700; }
