:root {
  color-scheme: light;
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-soft: #eef5fb;
  --border: #d4e0ed;
  --text: #142033;
  --muted: #5b6b80;
  --primary: #0f4f86;
  --teal: #00a6bd;
  --orange: #ee7a18;
  --shadow: 0 18px 42px rgba(20, 32, 51, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    linear-gradient(135deg, rgba(0, 166, 189, 0.08), transparent 34rem),
    linear-gradient(180deg, #f9fbfe 0%, var(--bg) 100%);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.hero,
.card,
.privacy-summary article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.3rem);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 0.9rem;
  color: var(--primary);
  font-size: 3.15rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--primary);
  font-size: 1rem;
}

.lead,
p,
li {
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: rgba(0, 166, 189, 0.7);
  color: #087887;
}

.hero-visual {
  margin: 1.5rem 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #07101b;
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.privacy-summary article {
  padding: 1.25rem;
}

.privacy-summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  background: #e5f8fb;
  color: #087887;
  font-weight: 800;
}

.privacy-summary h2 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.privacy-summary p {
  margin: 0;
  color: var(--muted);
}

.card {
  padding: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: var(--primary);
}

a:focus-visible {
  outline: 3px solid rgba(238, 122, 24, 0.42);
  outline-offset: 3px;
}

.updated {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 1rem, 1040px);
    padding-top: 0.5rem;
  }

  .hero {
    padding: 1.1rem;
  }

  h1 {
    font-size: 2.45rem;
  }

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

  .quick-links a {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.05rem;
  }

  .quick-links a {
    flex-basis: 100%;
  }
}
