
:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102a43;
  background: #f3f6fb;
  --surface: #ffffff;
  --surface-strong: #f8fbff;
  --border: rgba(16, 42, 67, 0.12);
  --accent: #0060df;
  --accent-soft: #e8f0ff;
  --text-muted: #52606d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
  color: #102a43;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
.button {
  font: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.site-header,
.site-footer,
.hero,
.content-panel,
.how-it-works,
.delete-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-header {
  padding: 2rem 0 0;
}
.brand {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  width: 64px;
  min-width: 64px;
}
.brand h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.tagline {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.65;
}
.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.2rem 0 2rem;
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}
.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  line-height: 0.98;
}
.hero-copy p {
  margin: 1.6rem 0 0;
  max-width: 620px;
  color: #334e68;
  font-size: 1.06rem;
  line-height: 1.8;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.primary-button {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 96, 223, 0.18);
}
.secondary-button {
  background: var(--surface);
  color: #102a43;
  border: 1px solid var(--border);
}
.button:hover {
  transform: translateY(-1px);
}
.hero-visual {
  display: grid;
  gap: 1.25rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.06);
}
.feature-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}
.feature-card p {
  margin: 0;
  color: #334e68;
  line-height: 1.75;
}
.feature-card--highlight {
  background: linear-gradient(135deg, #1558d6 0%, #3273ff 100%);
  color: #ffffff;
  border: none;
}
.feature-card--highlight p {
  color: rgba(255, 255, 255, 0.92);
}
.how-it-works {
  padding-bottom: 3rem;
}
.how-it-works h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.9rem;
}
.how-it-works p {
  margin: 0 0 2rem;
  color: #334e68;
  max-width: 860px;
  line-height: 1.75;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.info-card {
  background: var(--surface-strong);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 26px;
  padding: 1.7rem;
}
.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}
.info-card p {
  margin: 0;
  color: #334e68;
  line-height: 1.75;
}
.content-panel {
  padding: 2rem 0 2.5rem;
}
.delete-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.delete-intro p {
  margin: 1rem 0 0;
  color: #334e68;
  max-width: 760px;
  line-height: 1.8;
}
.delete-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-top: 2rem;
}
.delete-form-panel,
.delete-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.delete-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(16, 42, 67, 0.07);
}
.delete-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: #1c304f;
}
.delete-form input,
.delete-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 18px;
  background: #f6f9ff;
  color: #102a43;
  font-size: 1rem;
}
.delete-form textarea {
  resize: vertical;
}
.delete-form button {
  width: fit-content;
  padding: 0 1.8rem;
}
.form-note {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}
.delete-info-panel .info-card {
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.05);
}
.delete-info-panel ul {
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
  color: #334e68;
  line-height: 1.8;
}
.delete-info-panel li {
  margin-bottom: 0.75rem;
}
.data-privacy-footer {
  margin-top: 2.5rem;
  padding: 1.65rem 1.75rem;
  border-radius: 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 96, 223, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.data-privacy-footer p {
  margin: 0;
  color: #102a43;
  line-height: 1.6;
}
.site-footer {
  padding: 1rem 0 2rem;
  color: #52606d;
  text-align: center;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .hero,
  .delete-layout,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 1.8rem;
  }
  .data-privacy-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .hero,
  .content-panel,
  .how-it-works,
  .delete-layout {
    padding: 0 1.25rem;
  }
  .hero-copy h2,
  .delete-intro h2 {
    font-size: 2.4rem;
  }
  .button {
    width: 100%;
  }
}
