:root {
  --purple: #4b2e4c;
  --coral: #f28c8c;
  --lilac: #cdb4db;
  --cream: #fff8f2;
  --dark: #1f1a21;
  --sketch-shadow: 3px 3px 0 rgba(75, 46, 76, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(205,180,219,0.35) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(242,140,140,0.2) 0%, transparent 40%);
  color: var(--dark);
  min-height: 100vh;
  line-height: 1.65;
}

a { color: var(--purple); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

.container { max-width: 980px; margin: 0 auto; padding: 20px 24px 60px; }

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { height: 52px; width: auto; }
.brand span { font-size: 1.5rem; font-weight: 800; color: var(--purple); }

nav.site-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
nav.site-nav a {
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.site-nav a:hover { border-bottom-color: var(--coral); text-decoration: none; }

.hero {
  text-align: center;
  padding: 20px 12px 48px;
}
.hero-logo { height: clamp(100px, 22vw, 160px); margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.12rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 28px;
}

.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 800;
  border: 2.5px solid var(--purple);
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: transform 0.12s, box-shadow 0.12s;
  box-shadow: var(--sketch-shadow);
}
.btn:hover { transform: translate(-1px, -2px); box-shadow: 4px 5px 0 rgba(75,46,76,0.15); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #6d4580);
  color: white;
  border-color: var(--purple);
}
.btn-outline { background: white; color: var(--purple); }

.badge {
  display: inline-block;
  background: white;
  border: 2px dashed var(--lilac);
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 8px 0 40px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 26px 22px;
  border: 2.5px solid var(--purple);
  box-shadow: var(--sketch-shadow);
  text-align: center;
}
.feature-card h3 { color: var(--purple); margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: 0.95rem; opacity: 0.85; }

.legal-page {
  background: white;
  border-radius: 22px;
  padding: 36px 32px;
  margin: 12px 0 48px;
  border: 2.5px solid var(--purple);
  box-shadow: var(--sketch-shadow);
}
.legal-page h1 { color: var(--purple); margin-bottom: 8px; }
.legal-page h2 { color: var(--purple); margin: 26px 0 10px; font-size: 1.15rem; }
.legal-page p, .legal-page li { margin-bottom: 10px; }
.legal-page ul, .legal-page ol { padding-left: 22px; }

.delete-panel {
  margin-top: 28px;
  padding: 24px;
  border: 2px dashed var(--coral);
  border-radius: 18px;
  background: #fff5f5;
}
.delete-panel label { display: block; font-weight: 700; margin-bottom: 8px; }
.delete-panel input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--lilac);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 12px;
}
.delete-panel .hint { font-size: 0.88rem; opacity: 0.75; margin-bottom: 16px; }
.delete-panel .error { color: #c0392b; font-weight: 700; margin-top: 10px; display: none; }
.delete-panel .success { color: #27ae60; font-weight: 700; margin-top: 10px; display: none; }

footer.site-footer {
  text-align: center;
  padding: 32px 16px;
  color: rgba(31,26,33,0.65);
  font-size: 0.88rem;
}
footer.site-footer img { height: 36px; opacity: 0.85; margin-bottom: 10px; }
footer.site-footer p { margin-bottom: 8px; }
footer.site-footer a { margin: 0 8px; }

.hidden { display: none !important; }

@media (max-width: 600px) {
  .brand span { display: none; }
  .legal-page { padding: 24px 18px; }
}
