:root {
  color-scheme: light;
  --ink: #172229;
  --muted: #52636b;
  --line: #d4e4e5;
  --paper: #ffffff;
  --wash: #edfafa;
  --brand: #008c95;
  --brand-dark: #005c63;
  --accent: #d92332;
  --shadow: 0 18px 55px rgba(23, 34, 41, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 188, 199, 0.2), transparent 30rem),
    radial-gradient(circle at 90% 22%, rgba(217, 35, 50, 0.09), transparent 25rem),
    linear-gradient(180deg, var(--wash), #fff 42rem);
  font: 16px/1.68 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--brand-dark); text-underline-offset: 0.2em; }
a:hover { color: var(--brand); }

.site-header,
.page-shell,
.site-footer {
  width: min(1040px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.site-nav a { font-weight: 750; text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
  min-height: 560px;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.18; }
h1 { margin: 0 0 20px; font-size: clamp(2.65rem, 7vw, 5.4rem); letter-spacing: -0.055em; }
h2 { margin: 2.4rem 0 0.8rem; font-size: clamp(1.35rem, 3vw, 1.75rem); letter-spacing: -0.025em; }
h3 { margin: 1.6rem 0 0.5rem; font-size: 1.08rem; }

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--brand-dark);
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary { background: transparent; color: var(--brand-dark); }
.button:hover { background: var(--brand); color: #fff; }

.hero-art {
  display: grid;
  place-items: center;
  min-height: 350px;
  padding: 36px;
  border: 1px solid rgba(0, 140, 149, 0.2);
  border-radius: 44% 56% 46% 54% / 53% 39% 61% 47%;
  background: linear-gradient(145deg, #bcf2f3, #fff2e8);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-art img { width: min(100%, 520px); height: auto; transform: rotate(-2deg); }

.identity-card,
.legal-document {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.identity-card { margin-bottom: 88px; padding: 30px; }
.identity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.identity-label { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.identity-value { display: block; margin-top: 7px; font-weight: 750; overflow-wrap: anywhere; }

.legal-document { margin: 36px 0 72px; padding: clamp(24px, 5vw, 64px); }
.legal-document > header { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.legal-document > header h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.meta { color: var(--muted); }
.summary-box { margin: 28px 0; padding: 20px 22px; border-left: 5px solid var(--accent); border-radius: 10px; background: #fff3f3; }
.legal-document li + li { margin-top: 0.5rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 46px 0 72px; }
  .hero-art { min-height: 260px; order: -1; }
  .identity-grid, .site-footer { grid-template-columns: 1fr; }
  .legal-document { border-radius: 16px; }
}

@media print {
  body { background: #fff; }
  .site-nav, .hero-actions { display: none; }
  .legal-document { margin: 0; border: 0; box-shadow: none; }
}
