:root {
  color-scheme: light;
  --background: #fbfbfa;
  --surface: #ffffff;
  --text: #1d232b;
  --muted: #5f6b7a;
  --border: #d9dee7;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --ink: #10201e;
  --notice: #eef6f5;
  --shadow: 0 18px 48px rgba(29, 35, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-strong);
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
}

.landing-shell {
  flex: 1;
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.landing-hero {
  max-width: 620px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent-strong);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.button-primary {
  background: var(--accent-strong);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: var(--accent-strong);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-content {
  padding: 56px 0 34px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  font-weight: 760;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}

h3 {
  margin: 26px 0 8px;
  font-size: 1.08rem;
}

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

.policy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.policy-meta div {
  min-width: 0;
  padding: 16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.policy-meta dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}

.policy-content {
  padding: 34px 0 56px;
}

.privacy-document {
  max-width: 760px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.plain-back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.plain-back-link:hover {
  color: var(--text);
}

.privacy-document h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 6vw, 3rem);
}

.privacy-document h2 {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 1.35rem;
}

.privacy-document p,
.privacy-document li {
  color: #2f3944;
}

.notice,
.policy-content section {
  margin: 0 0 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice {
  background: var(--notice);
  border-color: rgba(15, 118, 110, 0.24);
}

.notice h2 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 14px;
}

p:last-child,
ul:last-child,
address:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 8px;
}

address {
  font-style: normal;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}

.site-footer .container {
  padding: 24px 0;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 880px);
  }

  .header-content {
    padding: 38px 0 26px;
  }

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

  .privacy-hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-hero-grid {
    gap: 28px;
    padding: 34px 0 30px;
  }

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

  .policy-layout {
    gap: 28px;
    padding: 32px 0 48px;
  }

  .policy-sidebar {
    position: static;
  }

  .notice,
  .policy-content section {
    padding: 22px;
  }
}
