:root {
  color-scheme: dark;
  --navy: #061a2e;
  --surface: #0d243d;
  --surface-2: #102a46;
  --green: #7ed957;
  --blue: #1e9bff;
  --text: #f5faff;
  --muted: #b9c9d8;
  --outline: #31516c;
}
* { box-sizing: border-box; }
html { background: var(--navy); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0%, rgba(30,155,255,.24), transparent 28rem),
    radial-gradient(circle at 0% 30%, rgba(126,217,87,.12), transparent 24rem),
    linear-gradient(145deg, #001a33, #073b66);
}
a { color: var(--green); }
.topbar {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 22px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; font-weight: 800; text-decoration: none; font-size: 20px; }
.brand img { width: 46px; height: 46px; border-radius: 13px; }
.landing, .policy { width: min(1040px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0; }
.hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  min-height: 62vh;
  padding: 48px;
  background: rgba(6,26,46,.88);
  border: 1px solid var(--outline);
  border-radius: 42px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.app-icon { width: 100%; border-radius: 30%; box-shadow: 0 24px 55px rgba(0,0,0,.45); }
.eyebrow { margin: 0 0 10px; color: var(--green); font-weight: 800; letter-spacing: .14em; font-size: 13px; }
h1 { margin: 0; font-size: clamp(42px, 7vw, 72px); line-height: 1.02; }
.lead { color: var(--muted); font-size: 21px; line-height: 1.55; max-width: 650px; }
.button { display: inline-block; margin-top: 14px; padding: 15px 21px; color: #061a2e; background: var(--green); border-radius: 16px; text-decoration: none; font-weight: 800; }
.secondary-link { display: inline-block; margin: 14px 0 0 16px; font-weight: 700; }
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 14px; }
.features article, .policy section {
  padding: 24px;
  background: rgba(13,36,61,.95);
  border: 1px solid rgba(49,81,108,.75);
  border-radius: 24px;
}
.features h2, .policy h2 { margin: 0 0 10px; font-size: 20px; }
.features p, .policy p, .policy li { color: var(--muted); line-height: 1.65; }
.policy { max-width: 860px; }
.policy-hero { padding: 34px !important; background: linear-gradient(120deg, var(--blue), var(--green)) !important; }
.policy-hero h1 { font-size: clamp(34px, 6vw, 54px); }
.policy-hero p { color: #061a2e; font-size: 18px; max-width: 680px; }
.policy-hero .eyebrow, .policy-hero .effective { color: white; }
.policy section { margin-bottom: 12px; }
.policy ul { padding-left: 22px; }
.policy li { margin: 8px 0; }
.policy strong { color: var(--text); }
footer { padding: 24px; text-align: center; color: var(--muted); font-size: 14px; }
.deletion-topbar { display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 720px) {
  .landing, .policy { padding-top: 24px; }
  .hero { grid-template-columns: 1fr; padding: 28px; border-radius: 28px; }
  .app-icon { width: 150px; }
  .features { grid-template-columns: 1fr; }
  .secondary-link { display: block; margin-left: 0; }
}
.delete-page {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  padding: 64px 20px;
}

.delete-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(16, 44, 68, 0.86);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.delete-card h1 {
  margin: 8px 0 16px;
}

.delete-card .lead {
  font-size: 1.12rem;
  line-height: 1.7;
}

.data-summary {
  margin: 30px 0;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(3, 26, 44, 0.65);
}

.data-summary h2 {
  margin-top: 0;
  font-size: 1.08rem;
}

.data-summary li,
.data-summary p {
  line-height: 1.65;
}

.delete-card label {
  display: block;
  margin: 22px 0 8px;
}

.delete-card input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: #071e31;
  color: #fff;
  font: inherit;
  text-transform: uppercase;
}

.delete-card input:focus {
  border-color: #7bd94f;
  outline: 3px solid rgba(123, 217, 79, 0.18);
}

.primary-button,
.danger-button,
.text-button {
  min-height: 48px;
  border: 0;
  border-radius: 13px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.primary-button {
  background: #7bd94f;
  color: #082033;
}

.danger-button {
  width: 100%;
  margin-top: 18px;
  background: #f35d66;
  color: #fff;
}

.text-button {
  width: 100%;
  margin-top: 8px;
  background: transparent;
  color: inherit;
}

.primary-button:disabled,
.danger-button:disabled,
.text-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.signed-in-box,
.status-message {
  padding: 14px 16px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.status-message {
  margin-top: 20px;
}

.status-message.error {
  background: rgba(243, 93, 102, 0.17);
  color: #ffd9dc;
}

.status-message.success {
  background: rgba(123, 217, 79, 0.16);
  color: #dffff0;
}

.small-print {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.hidden {
  display: none !important;
}
