:root {
  color-scheme: light;
  --canvas: #fafaf8;
  --surface: #ffffff;
  --surface-alt: #f5f3ef;
  --shell: #edebe7;
  --ink: #252525;
  --muted: #626262;
  --petrol: #0b6772;
  --petrol-deep: #084e57;
  --petrol-wash: rgba(11, 103, 114, 0.09);
  --shadow: 0 24px 70px rgba(24, 39, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Archivo, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--petrol-deep);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--petrol);
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(11, 103, 114, 0.35);
  outline-offset: 4px;
}

.site-header {
  border-bottom: 1px solid var(--shell);
  background: rgba(250, 250, 248, 0.94);
}

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

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 84px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -180px;
  border-radius: 50%;
  background: var(--petrol-wash);
  filter: blur(2px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Sora, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 103, 114, 0.2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--petrol-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--petrol);
}

.section {
  padding: 72px 0;
}

.section--alt {
  border-block: 1px solid var(--shell);
  background: var(--surface-alt);
}

.section-copy {
  max-width: 740px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card {
  padding: 28px;
  border: 1px solid var(--shell);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal {
  padding: 72px 0 90px;
}

.legal-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.legal h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.legal article {
  max-width: 820px;
}

.legal article section {
  padding: 28px 0;
  border-top: 1px solid var(--shell);
}

.legal article p,
.legal article li {
  color: #494949;
}

.legal article ul {
  padding-left: 22px;
}

.updated {
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--petrol);
  border-radius: 0 14px 14px 0;
  background: var(--petrol-wash);
}

.notice p {
  margin: 0;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--shell);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

@media (max-width: 760px) {
  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 128px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.8rem;
  }

  .hero,
  .section,
  .legal {
    padding-block: 56px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav,
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-links a:first-child {
    display: none;
  }
}
