/* =========================================================
   HIGHEST & FUTURY Company Builder
   Shared stylesheet (Landingpage + Legal pages)
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --ink: #1c1c1c;
  --ink-2: #3d3d3d;
  --muted: #6b7280;
  --line: #e6e7eb;
  --accent: #facc15;
  --dark: #1c1c1c;
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.2 }
::selection { background: var(--accent); color: var(--ink) }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px }
@media (max-width: 720px) { .wrap { padding: 0 20px } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px }
.logo { display: flex; align-items: center; height: 46px }
.logo img { height: 46px; width: auto; object-fit: contain }
.nav-links { display: flex; gap: 32px; align-items: center; flex: 1; justify-content: center }
.nav-links a { font-size: 15px; color: var(--ink-2); font-weight: 500; transition: color .15s }
.nav-links a:hover { color: var(--ink) }
.nav-cta {
  background: var(--ink); color: #fff;
  padding: 11px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #000; transform: translateY(-1px) }
.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  border: 1px solid var(--line); border-radius: 6px;
  color: var(--ink-2); margin-right: 12px;
  transition: background .15s, color .15s, border-color .15s;
}
.lang-toggle:hover { background: var(--ink); color: #fff; border-color: var(--ink) }
.nav-back {
  font-size: 14px; font-weight: 600; color: var(--ink);
  padding: 10px 18px; border: 2px solid var(--ink); border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-back:hover { background: var(--ink); color: #fff }
@media (max-width: 880px) {
  .nav-links { display: none }
  .logo img { height: 38px }
  .nav-inner { height: 68px }
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 80px; position: relative; overflow: hidden }
.hero::before {
  content: ""; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,204,21,.18), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 58%, var(--accent) 58%, var(--accent) 92%, transparent 92%);
  padding: 0 6px;
}
.hero-sub { font-size: 18px; color: var(--ink-2); margin-bottom: 36px; max-width: 54ch }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 0 }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--ink); color: #fff }
.btn-primary:hover { background: #000; transform: translateY(-1px) }
.btn-secondary { border-color: var(--ink); color: var(--ink); background: transparent }
.btn-secondary:hover { background: var(--ink); color: #fff }
.btn .arrow { transition: transform .2s }
.btn:hover .arrow { transform: translateX(4px) }

.hero-img {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.15));
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero { padding: 48px 0 56px }
  .hero-grid { grid-template-columns: 1fr; gap: 40px }
  .hero-img { aspect-ratio: 5 / 4; max-height: 380px }
}

/* ---------- Facts strip ---------- */
.facts-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.facts {
  display: grid; grid-template-columns: repeat(5, 1fr);
  max-width: 1180px; margin: 0 auto;
}
.fact {
  padding: 32px 22px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: none }
.fact-num {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 8px;
}
.fact-num .unit { color: var(--muted); font-weight: 500; font-size: 18px; margin-left: 4px }
.fact-label { font-size: 13px; color: var(--muted); line-height: 1.4 }
.fact-label a { color: inherit; font-weight: 700; text-decoration: underline }
@media (max-width: 900px) {
  .facts { grid-template-columns: repeat(2, 1fr) }
  .fact { padding: 22px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line) }
  .fact:nth-child(2n) { border-right: none }
  .fact:nth-child(5) { border-right: none; border-bottom: none; grid-column: span 2; text-align: center }
}

/* ---------- Section base ---------- */
section { padding: 88px 0 }
.tag {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700; font-size: 13px;
  padding: 4px 10px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 24px;
  max-width: 22ch;
}
.section-lead { font-size: 17px; color: var(--ink-2); max-width: 62ch; margin-bottom: 48px }
@media (max-width: 720px) { section { padding: 64px 0 } }

/* ---------- "Was ist..." ---------- */
.what-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start }
.what-grid p { color: var(--ink-2); margin-bottom: 18px; font-size: 17px }
.callout {
  background: var(--ink); color: #fff; padding: 36px; border-radius: 8px;
  align-self: start;
}
.callout .tag { background: var(--accent); margin-bottom: 18px }
.callout-num { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 14px; letter-spacing: -0.02em }
.callout p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 14px }
.callout small { font-size: 12px; color: rgba(255,255,255,.55); font-style: italic; display: block }

.fokus {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding-top: 48px; border-top: 1px solid var(--line);
}
.fokus-item h4 { font-size: 16px; margin-bottom: 10px }
.fokus-item p { font-size: 14px; color: var(--muted); line-height: 1.55 }
@media (max-width: 900px) {
  .what-grid { grid-template-columns: 1fr; gap: 36px }
  .fokus { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 520px) { .fokus { grid-template-columns: 1fr } }

/* ---------- Flow / Programm ---------- */
.flow { background: var(--bg-soft) }
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.step { padding: 28px 22px; border-right: 1px solid var(--line) }
.step:last-child { border-right: none }
.step-num {
  display: inline-block; background: var(--accent); color: var(--ink);
  font-weight: 700; font-size: 12px; padding: 2px 8px; margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 10px }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55 }
@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, 1fr) }
  .step { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line) }
  .step:nth-child(2n) { border-right: none }
  .step:nth-child(5) { border-bottom: none }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr }
  .step { border-right: none }
}

.timeline { margin-top: 48px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 40px }
.timeline h3 { font-size: 22px; margin-bottom: 24px }
.batch { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 20px 0; border-top: 1px solid var(--line) }
.batch:first-of-type { border-top: none; padding-top: 0 }
.batch-label {
  display: inline-block; font-weight: 700; font-size: 13px;
  background: var(--ink); color: #fff; padding: 4px 10px; height: fit-content;
  letter-spacing: 0.05em;
}
.batch-phases { display: flex; flex-direction: column; gap: 8px }
.phase { display: grid; grid-template-columns: 200px 1fr; gap: 16px; font-size: 14px; align-items: baseline }
.phase-date { color: var(--muted); font-weight: 600; font-size: 13px }
.phase-name { color: var(--ink-2) }
@media (max-width: 720px) {
  .timeline { padding: 24px 20px }
  .batch { grid-template-columns: 1fr; gap: 12px }
  .phase { grid-template-columns: 1fr; gap: 2px }
}

/* ---------- Split section (Für Start-ups) ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
.split-img { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1 / 1; background: #eee }
.split-img img { width: 100%; height: 100%; object-fit: cover }
.split-content p.intro { font-size: 17px; color: var(--ink-2) }
.split-content ul { list-style: none; margin-top: 24px }
.split-content li { position: relative; padding-left: 30px; margin-bottom: 18px; font-size: 16px; color: var(--ink-2) }
.split-content li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 18px; height: 3px; background: var(--accent);
}
.split-content li strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 4px }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 36px }
  .split-img { aspect-ratio: 5 / 4; max-height: 380px }
}

/* ---------- Benefits cards ---------- */
.benefits-section { background: var(--bg-soft) }
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px }
.benefit {
  background: #fff; border: 1px solid var(--line);
  padding: 32px; border-radius: 8px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit:hover { transform: translateY(-2px); border-color: var(--ink); box-shadow: 0 8px 24px -12px rgba(0,0,0,.1) }
.benefit-num {
  display: inline-block; background: var(--accent); color: var(--ink);
  font-weight: 700; font-size: 12px; padding: 3px 9px; margin-bottom: 18px;
}
.benefit h3 { font-size: 20px; margin-bottom: 12px }
.benefit p { font-size: 15px; color: var(--ink-2); line-height: 1.6 }
@media (max-width: 720px) { .benefits { grid-template-columns: 1fr } }

/* ---------- Mentor blocks ---------- */
.blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px }
.block {
  background: #fff; border: 1px solid var(--line);
  padding: 32px; border-radius: 8px;
  transition: transform .2s, border-color .2s;
}
.block:hover { transform: translateY(-2px); border-color: var(--ink) }
.block-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 14px }
.block-num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1 }
.block-head h3 { font-size: 20px }
.block p { font-size: 15px; color: var(--ink-2); line-height: 1.6 }
.principle {
  background: var(--ink); color: #fff; padding: 28px 36px; border-radius: 8px;
  font-size: 17px; line-height: 1.5; max-width: 78ch;
}
.principle strong { color: var(--accent); font-weight: 700 }
.requirements { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px }
.req h4 { font-size: 17px; margin-bottom: 8px }
.req .req-tag { display: inline-block; background: var(--accent); color: var(--ink); padding: 2px 8px; font-size: 11px; font-weight: 700; margin-bottom: 10px }
.req p { font-size: 14px; color: var(--ink-2) }
@media (max-width: 820px) {
  .blocks { grid-template-columns: 1fr }
  .requirements { grid-template-columns: 1fr; gap: 20px }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft) }
.faq-list { border-top: 1px solid var(--line); background: #fff; border-radius: 8px; border: 1px solid var(--line); overflow: hidden }
.faq-item { border-bottom: 1px solid var(--line) }
.faq-item:last-child { border-bottom: none }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 17px; font-weight: 600;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary:hover { background: var(--bg-soft) }
.faq-icon {
  flex: none; width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; transition: transform .2s; color: var(--ink);
}
.faq-item[open] .faq-icon { transform: rotate(45deg) }
.faq-answer { padding: 0 28px 24px; font-size: 15px; color: var(--ink-2); max-width: 75ch; line-height: 1.65 }
@media (max-width: 720px) {
  .faq-item summary { padding: 20px; font-size: 16px }
  .faq-answer { padding: 0 20px 20px }
}

/* ---------- Apply ---------- */
.apply {
  background: var(--ink); color: #fff; position: relative; overflow: hidden;
}
.apply::before {
  content: ""; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(250,204,21,.15), transparent 60%);
  pointer-events: none;
}
.apply-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center }
.apply .tag { background: var(--accent); color: var(--ink) }
.apply h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 20px; color: #fff }
.apply h2 .hl {
  background: linear-gradient(180deg, transparent 60%, var(--accent) 60%, var(--accent) 92%, transparent 92%);
  color: var(--ink); padding: 0 6px;
}
.apply-sub { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 54ch }
.apply .btn-primary { background: var(--accent); color: var(--ink); font-size: 16px; padding: 16px 30px }
.apply .btn-primary:hover { background: #fde047 }
.benefit-tags { display: flex; flex-wrap: wrap; gap: 10px }
.b-tag {
  font-size: 13px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; color: rgba(255,255,255,.85);
}
.b-tag::before { content: "\2713  "; color: var(--accent); font-weight: 700 }
@media (max-width: 900px) { .apply-grid { grid-template-columns: 1fr; gap: 36px } }

/* ---------- References ---------- */
.references { background: var(--bg-soft) }
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px }
.ref-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ref-card:hover { transform: translateY(-2px); border-color: var(--ink); box-shadow: 0 10px 28px -14px rgba(0,0,0,.12) }
.ref-photo {
  aspect-ratio: 4 / 3; background: #f0f0f0;
  overflow: hidden; position: relative;
}
.ref-photo img { width: 100%; height: 100%; object-fit: cover; display: block }
.ref-name-bar {
  background: var(--ink); color: #fff;
  padding: 10px 16px;
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 8px;
  border-top: 3px solid var(--accent);
}
.ref-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1 }
.ref-meta {
  font-size: 12px; color: var(--muted);
  margin-bottom: 14px; letter-spacing: 0.02em;
}
.ref-meta a { color: var(--muted); text-decoration: underline; text-decoration-color: #d4d4d8 }
.ref-meta a:hover { color: var(--ink) }
.ref-logo {
  height: 36px; width: auto; max-width: 140px; object-fit: contain;
  margin-bottom: 14px; align-self: flex-start;
}
.ref-desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; flex: 1 }
.ref-founders {
  font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 12px; line-height: 1.45;
}
.ref-founders strong { color: var(--ink-2); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 3px }
@media (max-width: 1020px) { .ref-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 540px) { .ref-grid { grid-template-columns: 1fr } }

/* ---------- Team (circular photos, 2x2, with bio) ---------- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px }
.person {
  background: #fff; border: 1px solid var(--line);
  padding: 36px; border-radius: 8px;
  display: flex; flex-direction: column;
}
.person-head {
  display: flex; gap: 24px; align-items: center; margin-bottom: 22px;
}
.person-photo {
  width: 104px; height: 104px; flex: none;
  border-radius: 50%; overflow: hidden;
  background: #f0f0f0; border: 3px solid var(--accent);
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; display: block }
.person-photo.initials {
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 700; font-size: 34px; color: var(--ink);
  background: var(--bg-soft);
  letter-spacing: -0.01em;
}
.person-name h3 { font-size: 26px; margin-bottom: 6px }
.person-name .role {
  font-size: 13px; color: var(--muted); font-weight: 600;
}
.person p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 18px; line-height: 1.6; flex: 1 }
.person .contact {
  font-size: 14px; border-top: 1px solid var(--line); padding-top: 16px;
  color: var(--muted); margin-top: auto;
}
.person .contact a { color: var(--ink); font-weight: 600 }
.person .contact a:hover { color: var(--muted) }
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr }
  .person-head { gap: 18px }
  .person-photo { width: 84px; height: 84px }
  .person-photo.initials { font-size: 28px }
  .person-name h3 { font-size: 22px }
}

/* ---------- Site footer (Landingpage) ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0 28px; font-size: 14px; color: var(--ink-2) }
.site-footer .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px }
.site-footer .logo-foot img { height: 50px; margin-bottom: 14px; width: auto }
.site-footer .foot-intro { max-width: 42ch }
.site-footer .partners {
  margin-top: 18px;
  background: #fff; padding: 0;
  width: fit-content; max-width: 100%;
}
.site-footer .partners img { height: auto; max-height: 64px; width: auto; max-width: 100%; object-fit: contain }
.site-footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 14px; font-weight: 700 }
.site-footer .foot-col ul { list-style: none }
.site-footer .foot-col li { margin-bottom: 7px }
.site-footer .foot-col a:hover { color: var(--ink); text-decoration: underline }
.site-footer .foot-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--muted) }
.site-footer .foot-bottom a { margin-right: 18px }
@media (max-width: 900px) { .site-footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px } }
@media (max-width: 540px) { .site-footer .foot-grid { grid-template-columns: 1fr } }

/* ---------- Funding notice ---------- */
.funding-notice { background: var(--bg-soft); padding: 56px 0 }
.funding-box {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 6px; padding: 28px 32px; max-width: 900px; margin: 0 auto;
}
.funding-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); font-weight: 700; margin-bottom: 10px;
}
.funding-box p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 0 }
@media (max-width: 720px) { .funding-notice { padding: 40px 0 } .funding-box { padding: 22px 20px } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease }
.reveal.in { opacity: 1; transform: translateY(0) }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none }
  html { scroll-behavior: auto }
}

/* =========================================================
   Legal pages (Impressum, Datenschutz)
   ========================================================= */

.legal-main { padding: 64px 0 80px }
.legal-main .wrap { max-width: 780px }
.legal-main h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 36px; line-height: 1.2 }
.legal-main h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.01em }
.legal-main h3 { font-size: 17px; font-weight: 700; margin: 20px 0 8px }
.legal-main p,
.legal-main ul { margin-bottom: 14px; color: var(--ink-2) }
.legal-main ul { padding-left: 22px }
.legal-main li { margin-bottom: 4px }
.legal-main a { text-decoration: underline }

.legal-main .lead { font-size: 14px; color: var(--muted); margin-bottom: 24px }
.legal-main .toc { background: var(--bg-soft); padding: 20px 24px; border-radius: 6px; margin-bottom: 36px }
.legal-main .toc h2 { margin: 0 0 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted) }
.legal-main .toc ol { padding-left: 20px; margin: 0 }
.legal-main .toc li { margin-bottom: 4px; font-size: 14px }
.legal-main .toc a { color: var(--ink-2); text-decoration: none }
.legal-main .toc a:hover { color: var(--ink); text-decoration: underline }

.legal-main .lang-switch { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap }
.legal-main .lang-switch a {
  text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-2);
}
.legal-main .lang-switch a:hover { background: var(--ink); color: #fff; border-color: var(--ink) }
.legal-main .divider { border: 0; border-top: 1px solid var(--line); margin: 80px 0 60px }

.legal-footer { border-top: 1px solid var(--line); padding: 32px 0; font-size: 13px; color: var(--muted); margin-top: 48px }
.legal-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; max-width: 780px }
.legal-footer a { text-decoration: underline }

@media (max-width: 600px) {
  .legal-main h1 { font-size: 28px }
}
