﻿:root {
  --ink: #17212f;
  --muted: #617085;
  --paper: #f4f0e8;
  --panel: #fffaf1;
  --line: #e3d8c8;
  --navy: #0c2f45;
  --copper: #b9632f;
  --copper-dark: #7b3f20;
  --blue: #245d73;
  --shadow: 0 18px 50px rgba(23, 33, 47, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Aptos", "Noto Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(185, 99, 47, 0.15), transparent 30%),
    linear-gradient(135deg, #f7f2ea 0%, #edf4f3 46%, #f6efe3 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(12, 47, 69, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 47, 69, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 27, 45, 0.98), rgba(12, 47, 69, 0.96) 58%, rgba(27, 76, 94, 0.94)),
    radial-gradient(circle at 78% 24%, rgba(185, 99, 47, 0.48), transparent 32%);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -170px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--copper);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

.nav-links a,
.hero a,
.footer a { color: inherit; }

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.nav-links a:hover { color: #fff; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: end;
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #f2b783; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.15rem);
  max-width: 1080px;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(0, 0, 0, 0.35);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--navy);
}

h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 1.35rem;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary { background: #fff; color: var(--navy); }
.button.secondary { border: 1px solid rgba(255,255,255,0.38); color: #fff; }

.hero-panel {
  background: rgba(255,250,241,0.95);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.panel-label {
  margin: 0 0 16px;
  color: var(--copper-dark);
  font-weight: 800;
}

dl { margin: 0; }
dl div { padding: 12px 0; border-top: 1px solid var(--line); }
dt { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
dd { margin: 4px 0 0; font-weight: 700; }

.section { padding: 64px 0 0; }
.section-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}

.card {
  background: rgba(255,250,241,0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(23, 33, 47, 0.08);
  padding: 26px;
}

.card p { margin-top: 0; }
.wide p:last-child { margin-bottom: 0; }

.feature-grid,
.entity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.entity-grid { grid-template-columns: 1.22fr 0.78fr; align-items: start; }
.feature-card { min-height: 230px; }
.feature-number {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 800;
}

.entity-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.entity-table th,
.entity-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
}
.entity-table th { width: 190px; color: var(--blue); }

.license-card p { color: var(--muted); }
.license {
  width: 100%;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.checklist ul { margin: 0; padding-left: 20px; }
.policy-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.policy-links a,
.contact-list a,
.back-link { color: var(--blue); font-weight: 800; text-decoration: none; }
.policy-links a:hover,
.contact-list a:hover,
.back-link:hover { text-decoration: underline; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card h2 { color: #fff; }
.contact-card p { color: rgba(255,255,255,0.78); }
.contact-list { display: grid; gap: 10px; }
.contact-list a,
.contact-list span {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 16px;
}

.footer { padding: 34px 0 42px; color: var(--muted); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.footer p { margin: 0; }

.legal-page { background: linear-gradient(135deg, #f7f2ea, #edf4f3); }
.legal-shell { padding: 42px 0 72px; }
.back-link { display: inline-block; margin-bottom: 18px; }
.legal-card { max-width: 860px; }
.legal-card h1 { color: var(--navy); font-size: clamp(2rem, 5vw, 4rem); }
.legal-card h2 { font-size: 1.5rem; margin-top: 28px; }
.muted { color: var(--muted); }
a { color: var(--blue); }

@media (max-width: 920px) {
  .hero-grid,
  .section-heading,
  .feature-grid,
  .entity-grid,
  .contact-card { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 36px; }
  .nav { align-items: flex-start; gap: 18px; flex-direction: column; }
  .feature-card { min-height: auto; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1120px); }
  .hero { padding-bottom: 48px; }
  .nav-links { gap: 12px; }
  .card, .contact-card, .hero-panel { border-radius: 20px; padding: 20px; }
  .section { padding-top: 44px; }
  .entity-table th,
  .entity-table td { display: block; width: 100%; padding: 8px 0; }
  .entity-table td { padding-bottom: 14px; }
}
