﻿:root {
  --primary: #085078;
  --primary-dark: #063a55;
  --secondary: #0f2f3a;
  --mint: #9ae4cb;
  --accent: #6fdcc3;
  --accent-teal: #0b7285;
  --bg: #f4fbf9;
  --surface: #ffffff;
  --surface-alt: #eaf7f3;
  --text: #0f2f3a;
  --muted: #4b5563;
  --soft-muted: #9ca3af;
  --line: #dbe7e4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(154, 228, 203, 0.24), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--mint));
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 12px 26px rgba(8, 80, 120, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-button,
.primary-action,
.secondary-action {
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}

.nav-button,
.secondary-action {
  border: 1px solid var(--line);
  background: var(--surface);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 22px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section,
.document {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(8, 80, 120, 0.1);
}

.hero-copy {
  padding: clamp(28px, 5vw, 54px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.primary-action {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(8, 80, 120, 0.18);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(154, 228, 203, 0.48), transparent 40%),
    var(--surface);
}

.metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.metric strong {
  margin-top: 6px;
  color: var(--primary-dark);
  font-size: 22px;
}

.section {
  margin-top: 28px;
  padding: 30px;
}

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

.feature-grid article {
  padding: 20px;
  border-radius: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.feature-grid p,
.document p,
.section-note {
  color: var(--muted);
  line-height: 1.7;
}

.section-note {
  margin: 20px 0 0;
}

.document {
  max-width: 860px;
  padding: clamp(26px, 5vw, 54px);
}

.document h1 {
  font-size: clamp(34px, 6vw, 56px);
}

.document h2 {
  margin-top: 28px;
  font-size: 24px;
}

.request-card {
  margin: 28px 0;
  padding: 24px;
  border-radius: 22px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.deletion-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.deletion-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.deletion-form input,
.deletion-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-weight: 500;
}

.deletion-form textarea {
  resize: vertical;
}

.deletion-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(8, 80, 120, 0.18);
}

.hidden-field {
  display: none;
}

.certificate {
  margin: 28px 0;
}

.certificate img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.certificate figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.detail-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 16px;
  padding: 14px 16px;
  background: var(--surface);
}

.detail-list dt {
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.status-document {
  margin-top: 10vh;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 22px 38px;
  color: var(--muted);
  flex-wrap: wrap;
}

footer p {
  margin: 0;
}

@media (max-width: 780px) {
  .site-header,
  .hero,
  footer {
    display: block;
  }

  nav {
    margin-top: 18px;
  }

  .hero-panel,
  .section {
    margin-top: 18px;
  }

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