:root {
  color-scheme: light;
  --bg: #f7faf9;
  --ink: #15201e;
  --muted: #5b6d68;
  --panel: #ffffff;
  --line: #dce7e3;
  --accent: #0e9f7d;
  --accent-dark: #08735a;
  --shadow: 0 24px 70px rgba(21, 32, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
}

a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.policy-page {
  width: min(100% - 32px, 940px);
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 125, 0.14), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
}

.app-icon {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(14, 159, 125, 0.22);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.summary {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.effective-date {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  max-width: 76ch;
  margin: 0 0 14px;
}

p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .policy-page {
    width: min(100% - 24px, 940px);
    padding: 24px 0 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .app-icon {
    width: 88px;
    height: 88px;
  }

  .summary {
    font-size: 1rem;
  }

  section {
    padding: 24px 0;
  }
}
