:root {
  --ink: #101114;
  --muted-ink: #5e626b;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #dcded8;
  --accent: #4f46e5;
  --dark: #16171b;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(16,17,20,.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(247,247,244,.90);
  border-bottom: 1px solid rgba(220,222,216,.8);
  backdrop-filter: blur(16px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 10px; background: var(--ink); color: white; font-size: 17px;
}
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a, .footer-links a { text-decoration: none; color: var(--muted-ink); font-weight: 600; font-size: 14px; }
.main-nav a:hover, .footer-links a:hover { color: var(--ink); }
.menu-button { display: none; border: 0; background: none; font: inherit; font-weight: 700; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 23px; border-radius: 999px;
  background: var(--accent); color: white !important; text-decoration: none;
  font-weight: 750; border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button.small { min-height: 40px; padding: 0 18px; font-size: 14px; }
.button.light { background: white; color: var(--ink) !important; }
.hero { padding: 105px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(50px, 7vw, 88px); }
h2 { font-size: clamp(34px, 4.4vw, 58px); margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 13px; }
.lead { max-width: 650px; margin: 0; font-size: clamp(19px, 2vw, 24px); color: var(--muted-ink); }
.actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.text-link { font-weight: 750; text-decoration: none; }
.hero-card { position: relative; padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.signal { position: absolute; width: 150px; height: 150px; right: -50px; top: -55px; border-radius: 50%; background: var(--accent); filter: blur(2px); opacity: .16; }
.card-label { font-weight: 800; font-size: 15px; }
.card-copy { color: var(--muted-ink); font-size: 19px; margin-bottom: 28px; }
.hero-card dl { margin: 0; }
.hero-card dl div { padding: 15px 0; border-top: 1px solid var(--line); }
dt { color: var(--muted-ink); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
dd { margin: 3px 0 0; font-weight: 700; }
.section { padding: 100px 0; }
.muted { background: #eceee9; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.prose { font-size: 20px; color: var(--muted-ink); }
.prose p:first-child { margin-top: 0; }
.cards { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { min-height: 285px; padding: 30px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.card-number { display: block; color: var(--accent); font-weight: 850; font-size: 13px; margin-bottom: 70px; }
.card p { color: var(--muted-ink); margin-bottom: 0; }
.company-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: start; }
.section-intro { color: var(--muted-ink); max-width: 440px; }
.company-panel { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 32px; }
.company-list { margin: 0; }
.company-list > div { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.company-list > div:last-child { border-bottom: 0; }
.contact-section { padding-top: 25px; }
.contact-box { padding: 65px; border-radius: 30px; background: var(--dark); color: white; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-box h2 { margin-bottom: 12px; }
.contact-box p:not(.eyebrow) { color: #b9bbc1; margin-bottom: 0; }
.site-footer { padding: 65px 0 35px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-brand { margin-bottom: 17px; }
.site-footer p { color: var(--muted-ink); font-size: 14px; }
.footer-links { display: flex; gap: 22px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 26px; margin-top: 20px; }
.legal-page { padding: 90px 0 110px; }
.legal-content { max-width: 780px; }
.legal-content h1 { font-size: clamp(48px, 7vw, 76px); }
.legal-content h2 { font-size: 25px; margin-top: 45px; }
.legal-content p { color: var(--muted-ink); font-size: 17px; }
.updated { margin-bottom: 60px; }
.legal-back { margin-top: 55px; font-weight: 750; }

@media (max-width: 820px) {
  .menu-button { display: block; }
  .main-nav {
    display: none; position: absolute; left: 20px; right: 20px; top: 68px;
    flex-direction: column; align-items: stretch; padding: 20px;
    background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { padding: 70px 0; }
  .hero-grid, .split, .company-grid { grid-template-columns: 1fr; gap: 45px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-number { margin-bottom: 40px; }
  .contact-box { padding: 40px 28px; align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 48px; }
  .actions { align-items: flex-start; flex-direction: column; }
  .company-list > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
}
