:root {
  --blue-25: #f8fbff;
  --blue-50: #eef6ff;
  --blue-100: #dbeafe;
  --blue-200: #bad8ff;
  --blue-500: #5b8ff0;
  --blue-600: #2f73ee;
  --blue-700: #10499f;
  --blue-900: #062b68;
  --gold-400: #ffc83d;
  --gold-500: #f6ad14;
  --red-50: #fff4f4;
  --red-100: #ffe2e2;
  --red-500: #ef4444;
  --red-700: #b4232a;
  --ink: #0d1b35;
  --muted: #62708a;
  --line: #dce8f7;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(47, 115, 238, 0.13);
  --shadow-card: 0 18px 38px rgba(36, 79, 139, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--blue-25) 0%, var(--blue-50) 62%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 232, 247, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--blue-900);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(47, 115, 238, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px clamp(18px, 3vw, 46px);
  color: var(--blue-900);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-block: 4px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-600);
  border-color: var(--gold-400);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, #3e83fb, #1460d4);
  box-shadow: 0 14px 26px rgba(47, 115, 238, 0.25);
  font-size: 15px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 108px) clamp(22px, 5vw, 52px) 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: 2%;
  width: min(760px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 143, 240, 0.2), rgba(186, 216, 255, 0.26) 42%, rgba(186, 216, 255, 0) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(66px, 8.4vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 22px;
  color: #17325d;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #1c3c70;
  list-style: none;
  font-size: 17px;
  font-weight: 650;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(47, 115, 238, 0.08);
  font-size: 15px;
  font-weight: 850;
}

.hero-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at 55% 50%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(248, 251, 255, 0.74) 48%,
    rgba(238, 246, 255, 0.34) 66%,
    rgba(238, 246, 255, 0) 82%
  );
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 6% 1% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 55% 48%,
    rgba(186, 216, 255, 0.28) 0%,
    rgba(186, 216, 255, 0.18) 48%,
    rgba(238, 246, 255, 0) 76%
  );
  filter: blur(20px);
}

.hero-composite {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(47, 115, 238, 0.12));
}

.features-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 26px clamp(22px, 5vw, 52px) 48px;
}

.features-section h2 {
  margin: 0 0 28px;
  color: var(--blue-900);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  text-align: center;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  min-height: 260px;
  padding: 24px 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.feature-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.feature-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.8fr);
  gap: 26px;
  max-width: 1260px;
  margin: 0 auto 28px;
  padding: 46px 40px 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eaf5ff, #d8ecff);
  box-shadow: var(--shadow-soft);
}

.privacy-intro h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.privacy-intro p {
  margin: 18px 0 0;
  color: #426082;
  font-size: 16px;
}

.privacy-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.privacy-items article {
  text-align: center;
}

.privacy-items img {
  width: 86px;
  height: 86px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.62);
}

.privacy-items h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 17px;
}

.privacy-items p {
  margin: 8px 0 0;
  color: #426082;
  font-size: 14px;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #4c6a8e;
  font-size: 14px;
  text-align: center;
}

.delete-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.55fr);
  gap: 36px;
  max-width: 1260px;
  margin: 0 auto 30px;
  padding: 36px 42px;
  border: 1px solid #ffcaca;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff9f9, var(--red-50));
}

.delete-page {
  min-height: calc(100vh - 86px);
  padding: clamp(54px, 8vw, 96px) clamp(22px, 5vw, 52px);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 202, 202, 0.24), transparent 34%),
    radial-gradient(circle at 80% 28%, rgba(186, 216, 255, 0.3), transparent 36%),
    var(--blue-25);
}

.delete-page-panel {
  margin-bottom: 0;
  box-shadow: 0 24px 58px rgba(154, 52, 62, 0.12);
}

.delete-visual {
  display: grid;
  place-items: center;
  min-height: 300px;
}

.delete-asset {
  width: min(330px, 88%);
  filter: drop-shadow(0 26px 38px rgba(239, 68, 68, 0.16));
}

.section-kicker {
  margin: 0;
  color: var(--red-700);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.delete-content h2 {
  margin: 2px 0 10px;
  color: var(--red-700);
  font-size: 26px;
  line-height: 1.1;
}

.delete-content h1 {
  margin: 4px 0 12px;
  color: var(--red-700);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.delete-content > p:not(.section-kicker):not(.delete-help):not(.delete-email-note) {
  max-width: 680px;
  margin: 0 0 26px;
  color: #573b42;
  font-size: 16px;
}

.delete-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.delete-steps article {
  padding: 22px;
  border: 1px solid #ffcaca;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.delete-steps span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0 auto 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-500);
  font-size: 14px;
  font-weight: 900;
}

.delete-steps strong {
  display: block;
  color: var(--blue-900);
  font-size: 15px;
}

.delete-steps p {
  margin: 6px 0 0;
  color: #6f5960;
  font-size: 13px;
}

.delete-warning {
  margin: 22px 0 16px;
  padding: 14px 18px;
  border: 1px solid #ffcaca;
  border-radius: 12px;
  color: var(--red-700);
  background: #fff5f5;
  font-size: 14px;
  font-weight: 750;
}

.delete-email-note {
  margin: 0 0 10px;
  color: #6f5960;
  font-size: 14px;
}

.delete-email-note a {
  color: var(--blue-700);
  font-weight: 850;
}

.delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 240px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, #ff6262, #d9272f);
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.24);
  font-size: 16px;
  font-weight: 900;
}

.delete-help {
  margin: 12px 0 0;
  color: #6f5960;
  font-size: 14px;
}

.delete-help a {
  color: var(--blue-700);
  font-weight: 850;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto 34px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.support-strip h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--blue-700);
  background: var(--blue-50);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
  padding: 32px clamp(22px, 5vw, 52px) 24px;
  color: #405271;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--blue-900);
  font-size: 15px;
}

.footer-column a {
  color: #405271;
  font-size: 14px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: #8a96aa;
  font-size: 13px;
  text-align: center;
}

.legal-header {
  position: sticky;
}

.legal-page {
  background: var(--blue-25);
}

.legal-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 78px clamp(22px, 5vw, 52px) 36px;
}

.legal-hero .eyebrow,
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 24px clamp(22px, 5vw, 52px) 58px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.2;
}

.legal-content p {
  margin: 0;
  color: #4f5b6f;
  font-size: 17px;
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero,
  .privacy-panel,
  .delete-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 620px;
  }

  .feature-grid,
  .privacy-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 18px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    gap: 8px 16px;
    width: 100%;
    font-size: 14px;
  }

  .hero {
    display: block;
    overflow: hidden;
    padding: 42px 20px 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 70px);
    overflow-wrap: anywhere;
  }

  .hero-lede {
    width: 100%;
    max-width: 340px;
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .check-list {
    width: 100%;
    max-width: 340px;
  }

  .hero-contact {
    max-width: 340px;
  }

  .hero-contact a,
  .support-links a {
    width: 100%;
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .hero-art {
    width: 100%;
    min-height: 0;
  }

  .hero-composite {
    width: min(430px, 108vw);
    max-width: none;
    margin-left: -7vw;
  }

  .features-section {
    padding-inline: 20px;
  }

  .feature-grid,
  .privacy-items,
  .delete-steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .privacy-panel,
  .delete-panel,
  .support-strip {
    margin-inline: 20px;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .delete-visual {
    min-height: 220px;
  }

  .delete-asset {
    width: min(260px, 92%);
  }

  .delete-button {
    width: 100%;
  }

  .copyright {
    text-align: left;
  }
}
