:root,
html[data-landing="dark"] {
  --page-bg: #000000;
  --page-fg: #FFFFFF;
  --page-fg-2: rgba(255,255,255,0.72);
  --page-fg-3: rgba(255,255,255,0.50);
  --page-fg-4: rgba(255,255,255,0.30);
  --surface: rgba(255,255,255,0.035);
  --surface-2: rgba(255,255,255,0.06);
  --surface-strong: rgba(20,20,24,0.85);
  --hairline: rgba(255,255,255,0.08);
  --hairline-2: rgba(255,255,255,0.14);
  --glow-color: rgba(255,255,255,0.04);
  --grid-color: rgba(255,255,255,0.04);
  --accent-soft: rgba(255,255,255,0.10);
  --gain: #00D5A5;
  --loss: #CD3D69;
  --section-pad: 96px;
}

html[data-landing="light"] {
  --page-bg: #FFFFFF;
  --page-fg: #000000;
  --page-fg-2: rgba(0,0,0,0.72);
  --page-fg-3: rgba(0,0,0,0.50);
  --page-fg-4: rgba(0,0,0,0.30);
  --surface: rgba(0,0,0,0.035);
  --surface-2: rgba(0,0,0,0.06);
  --surface-strong: rgba(255,255,255,0.85);
  --hairline: rgba(0,0,0,0.08);
  --hairline-2: rgba(0,0,0,0.14);
  --glow-color: rgba(0,0,0,0.04);
  --grid-color: rgba(0,0,0,0.04);
  --accent-soft: rgba(0,0,0,0.10);
  --gain: #009973;
  --loss: #CD3D69;
  --section-pad: 96px;
}

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

html {
  color-scheme: dark light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--page-fg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--page-fg);
  text-decoration: none;
}

.lp-root,
.page {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.lp-root::before,
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 34%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 34%, transparent 100%);
}

.lp-container,
.static-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-container-narrow,
.page-main,
.site-footer {
  max-width: 920px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.static-landing-nav,
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline);
  background: var(--surface-strong);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.static-nav-inner,
.site-header {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.static-brand,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-fg);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.static-brand-mark,
.brand-mark {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--page-fg);
}

.static-brand-mark img,
.brand-mark img {
  width: 26px;
  height: 26px;
  display: block;
}

.static-nav-links,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.static-nav-links a,
.nav-links a {
  color: var(--page-fg-2);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.static-nav-links a:hover,
.static-nav-links a[aria-current="page"],
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--page-fg);
}

.static-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.static-theme-toggle {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--page-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.static-theme-toggle:hover {
  background: var(--surface-2);
}

.static-signin {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--page-fg);
  color: var(--page-bg);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.lp-legal-hero,
.hero {
  padding-top: 144px;
  padding-bottom: 48px;
}

.lp-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--page-fg-3);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-delete-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gain);
  flex-shrink: 0;
}

.lp-display-2,
.hero h1 {
  margin: 16px 0 0;
  color: var(--page-fg);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-display-3,
.card h1 {
  margin: 0;
  color: var(--page-fg);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-lede,
.lead {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--page-fg-2);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  text-wrap: balance;
}

.lp-legal-content {
  padding-bottom: 56px;
}

.lp-glass,
.card {
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.lp-legal-card,
.card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 22px;
  border-color: var(--hairline-2);
  background: color-mix(in srgb, var(--surface-strong) 82%, var(--page-bg));
  box-shadow: 0 24px 70px var(--glow-color);
}

.lp-legal-section,
.section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--hairline);
}

.lp-legal-section:first-child,
.section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.lp-legal-section h2,
.section h2 {
  margin: 0 0 14px;
  color: var(--page-fg);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: 0;
}

.lp-legal-section p,
.section p,
.small-note {
  margin: 0;
  color: var(--page-fg-2);
  font-size: 15px;
  line-height: 1.72;
}

.lp-legal-section strong,
.section strong {
  color: var(--page-fg);
  font-weight: 760;
}

.lp-legal-section a,
.section a,
.small-note a {
  color: var(--page-fg);
  font-weight: 700;
  border-bottom: 1px solid var(--hairline-2);
}

.lp-legal-section ul,
.status-list {
  margin: 0;
  padding-left: 20px;
  color: var(--page-fg-2);
  font-size: 15px;
  line-height: 1.72;
}

.lp-legal-section li + li,
.status-list li + li {
  margin-top: 8px;
}

.lp-delete-notice,
.notice {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--loss) 34%, var(--hairline));
  background: color-mix(in srgb, var(--loss) 10%, var(--surface));
  color: var(--page-fg);
}

.lp-delete-notice strong,
.notice strong {
  display: block;
  color: var(--page-fg);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 760;
}

.lp-delete-notice p,
.notice .small-note {
  margin: 8px 0 0;
  color: var(--page-fg-2);
  font-size: 14px;
  line-height: 1.65;
}

.lp-delete-form,
.form-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.lp-delete-field,
.field {
  display: grid;
  gap: 10px;
  color: var(--page-fg);
}

.lp-delete-field span,
.field span {
  color: var(--page-fg-2);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 650;
}

.lp-delete-field input,
.field input[type="email"] {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid var(--hairline-2);
  background: var(--surface);
  color: var(--page-fg);
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.lp-delete-field input::placeholder,
.field input[type="email"]::placeholder {
  color: var(--page-fg-4);
}

.lp-delete-field input:focus,
.field input[type="email"]:focus {
  border-color: var(--page-fg-3);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.lp-delete-check,
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--page-fg-2);
  font-size: 14px;
  line-height: 1.65;
}

.lp-delete-check input,
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--page-fg);
  flex: 0 0 auto;
}

.lp-delete-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.lp-btn,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.lp-btn-primary,
.button-primary {
  background: var(--page-fg);
  color: var(--page-bg);
}

.lp-btn-ghost,
.button {
  border-color: var(--hairline-2);
  background: transparent;
  color: var(--page-fg);
}

.lp-btn-ghost:hover,
.button:hover {
  background: var(--surface-2);
  border-color: var(--page-fg-3);
}

.lp-delete-danger-btn,
.button-danger {
  border-color: color-mix(in srgb, var(--loss) 42%, var(--hairline));
  background: color-mix(in srgb, var(--loss) 82%, var(--page-fg));
  color: var(--page-bg);
}

.lp-delete-help {
  margin: 18px 0 0;
  color: var(--page-fg-2);
  font-size: 14px;
  line-height: 1.7;
}

.lp-delete-status-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 72px;
}

.lp-delete-status-card,
.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.lp-delete-status-icon,
.status-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.lp-delete-status-icon.is-success,
.status-icon.success {
  border: 1px solid color-mix(in srgb, var(--gain) 32%, var(--hairline));
  background: color-mix(in srgb, var(--gain) 12%, var(--surface));
  color: var(--gain);
}

.lp-delete-status-icon.is-danger,
.status-icon.danger {
  border: 1px solid color-mix(in srgb, var(--loss) 34%, var(--hairline));
  background: color-mix(in srgb, var(--loss) 12%, var(--surface));
  color: var(--loss);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 32px;
  color: var(--page-fg-3);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .static-nav-inner,
  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .static-nav-links,
  .nav-links {
    justify-content: flex-start;
    gap: 14px;
  }
  .static-nav-actions {
    width: 100%;
    justify-content: space-between;
  }
  .lp-legal-hero,
  .hero {
    padding-top: 168px;
  }
}

@media (max-width: 640px) {
  .lp-container,
  .static-nav-inner,
  .lp-container-narrow,
  .page-main,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lp-legal-card,
  .card {
    padding: 22px;
    border-radius: 18px;
  }
  .lp-delete-actions,
  .lp-delete-actions .lp-btn,
  .button-row,
  .button-row .button {
    width: 100%;
  }
  .lp-delete-status-section {
    align-items: flex-start;
    padding: 150px 0 56px;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
