:root {
  color-scheme: light;
  --bg: #F6F4EF;
  --surface: #FFFFFF;
  --surface-2: #F0EDE6;
  --text: #1A1A1A;
  --text-2: #555555;
  --text-3: #909090;
  --border: #E4E0D6;
  --accent: #E8503A;
  --accent-bg: rgba(232, 80, 58, 0.08);
  --accent-border: rgba(232, 80, 58, 0.22);
  --mint: #0F9F7A;
  --mint-bg: rgba(15, 159, 122, 0.08);
  --mint-border: rgba(15, 159, 122, 0.22);
  --amber-bg: rgba(230, 152, 40, 0.10);
  --radius: 14px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ──────────────────────────────────────────────────── */

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--text);
}

h1 { font-size: clamp(36px, 6vw, 62px); }
h2 { font-size: 28px; margin-bottom: 4px; }
h3 { font-size: 16px; font-weight: 700; margin-top: 28px; color: var(--text); }

p { color: var(--text-2); margin-top: 12px; }

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
a:hover { text-decoration: underline; }

ul, ol {
  color: var(--text-2);
  padding-left: 22px;
  margin-top: 10px;
}
li { margin-top: 7px; }

strong { color: var(--text); }

/* ── Shell (max-width wrapper) ───────────────────────────────────── */

.shell {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 22px;
}

/* ── Topbar ──────────────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 22px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; opacity: 0.8; }

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(232, 80, 58, 0.16);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

.nav a {
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: background 0.14s, color 0.14s;
}
.nav a:hover {
  background: var(--surface-2);
  color: var(--text);
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────────────────── */

.hero {
  padding: 72px 0 52px;
  background: linear-gradient(180deg, rgba(15,159,122,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.hero-inner {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 22px;
}

.hero-logo {
  width: 92px;
  height: 92px;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(232, 80, 58, 0.18), 0 10px 28px rgba(122, 53, 255, 0.12);
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--mint-bg);
  border: 1px solid var(--mint-border);
  color: var(--mint);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 720px;
}

.lead {
  max-width: 620px;
  margin-top: 20px !important;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
}

.updated {
  display: inline-block;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* ── Summary cards ───────────────────────────────────────────────── */

.summary-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s;
}
.summary-card:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 8px 28px rgba(0,0,0,0.09);
}

.summary-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  margin-bottom: 16px;
  color: inherit;
}

.mint-icon  { background: var(--mint-bg);  color: var(--mint);   }
.coral-icon { background: var(--accent-bg); color: var(--accent); }
.amber-icon { background: var(--amber-bg); color: #C07A10;        }

.summary-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.summary-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}

/* ── Policy wrapper ──────────────────────────────────────────────── */

.policies {
  padding: 40px 22px 64px;
}

/* ── Policy section card ─────────────────────────────────────────── */

.policy-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}

.section-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-3);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

/* ── Steps (account deletion) ────────────────────────────────────── */

.steps {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
}

.steps li::before {
  content: counter(step-counter);
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 12.5px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Callouts ────────────────────────────────────────────────────── */

.callout {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.callout-warning {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-left: 3px solid var(--accent);
}

.callout-note {
  background: var(--mint-bg);
  border: 1px solid var(--mint-border);
  border-left: 3px solid var(--mint);
}

/* ── Footer ──────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 48px;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.brand-sm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark-sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-nav {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.footer-nav a {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.14s, background 0.14s;
}
.footer-nav a:hover {
  color: var(--text);
  background: var(--bg);
  text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    height: auto;
    padding-top: 14px;
    padding-bottom: 12px;
    gap: 8px;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 2px;
  }

  .nav a { white-space: nowrap; }

  .hero { padding: 44px 0 36px; }

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

  .policy-section {
    padding: 24px 18px;
    border-radius: var(--radius);
  }

  h2 { font-size: 22px; }

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

  .policies {
    padding: 28px 22px 48px;
  }
}
