:root {
  --bg: #fcfbff;
  --surface: #ffffff;
  --surface-soft: #f7f3ff;
  --surface-strong: #efe8ff;
  --ink: #181521;
  --muted: #6f6a7d;
  --line: #ece7f5;
  --purple: #7c3aed;
  --purple-dark: #6226d8;
  --pink: #d946ef;
  --success: #168c5a;
  --danger: #d92d4d;
  --gradient: linear-gradient(135deg, #6d3df5 0%, #9b4dff 52%, #d653e8 100%);
  --shadow-sm: 0 8px 24px rgba(72, 42, 130, 0.08);
  --shadow-md: 0 18px 55px rgba(72, 42, 130, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(182, 108, 255, 0.13), transparent 27rem),
    radial-gradient(circle at 96% 24%, rgba(217, 70, 239, 0.09), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(124, 58, 237, 0.28); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 99px; background: var(--gradient); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.25rem, 7vw, 6.1rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.7rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }
.lede { margin-top: 22px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 680px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 251, 255, 0.82);
  border-bottom: 1px solid rgba(236, 231, 245, 0.85);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; font-size: 1.2rem; letter-spacing: -0.03em; }
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; align-items: center; gap: 26px; color: #4d475a; font-size: 0.94rem; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
}
.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--gradient); box-shadow: 0 14px 34px rgba(124, 58, 237, 0.25); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(124, 58, 237, 0.34); }
.button-secondary { color: var(--ink); background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: #d9cff0; }
.button-small { min-height: 44px; padding: 0 17px; border-radius: 14px; font-size: .92rem; }
.button-danger { color: white; background: linear-gradient(135deg, #c92748, #e84f6d); }

.announcement { padding: 9px 18px; text-align: center; color: #4d3d68; background: #f1ebff; border-bottom: 1px solid #e4d9ff; font-size: .88rem; font-weight: 700; }
.announcement strong { color: var(--purple); }

.hero { padding: 72px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; color: var(--muted); font-size: .91rem; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span::before { content: "✓"; color: var(--success); font-weight: 900; }
.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.hero-orb {
  position: absolute;
  width: 500px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,.92), transparent 21%),
    linear-gradient(145deg, #f4eaff, #e5d3ff 48%, #ffdffb);
  box-shadow: inset 18px 18px 45px rgba(255,255,255,.7), inset -18px -18px 50px rgba(139,92,246,.08), var(--shadow-md);
}
.hero-character { position: relative; z-index: 2; width: min(92%, 455px); filter: drop-shadow(0 26px 26px rgba(67, 35, 92, .16)); }
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  font-weight: 800;
}
.float-card small { display: block; color: var(--muted); font-weight: 650; }
.float-card.one { top: 70px; right: 6px; }
.float-card.two { bottom: 88px; left: 2px; }
.float-card.three { top: 210px; left: -24px; font-size: 1.6rem; }
.emoji-bubble { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: #f5efff; font-size: 1.55rem; box-shadow: inset 4px 4px 10px rgba(255,255,255,.9), 0 7px 18px rgba(87,51,135,.1); }

.metric-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-sm);
}
.metric { padding: 22px; text-align: center; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric strong { display: block; font-size: 1.35rem; letter-spacing: -.03em; }
.metric span { color: var(--muted); font-size: .88rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading p { max-width: 530px; color: var(--muted); }
.steps, .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
}
.step-card { position: relative; padding: 28px; overflow: hidden; }
.step-card::after { content: attr(data-step); position: absolute; right: 18px; top: 8px; color: #f0e9fb; font-size: 5.2rem; font-weight: 900; line-height: 1; z-index: 0; }
.step-card > * { position: relative; z-index: 1; }
.step-card img { width: 62px; height: 62px; margin-bottom: 22px; }
.step-card p { margin-top: 12px; color: var(--muted); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.feature-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 26px; align-items: start; }
.feature-card img { width: 56px; height: 56px; }
.feature-card p { margin-top: 8px; color: var(--muted); }

.showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,241,255,.92));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.showcase img { width: 100%; border-radius: 22px; }

.privacy-band {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 52px;
  align-items: center;
  padding: 52px;
  border-radius: var(--radius-lg);
  background: #1f1730;
  color: white;
  box-shadow: 0 30px 70px rgba(31,23,48,.2);
}
.privacy-band p { margin-top: 18px; color: #d5cde3; }
.privacy-list { display: grid; gap: 14px; }
.privacy-item { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.privacy-item span:first-child { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(182,108,255,.18); font-size: 1.15rem; }
.privacy-item strong { display: block; }
.privacy-item small { color: #c2b8d3; }

.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--ink); background: none; border: 0; text-align: left; font-weight: 800; }
.faq-question span:last-child { color: var(--purple); font-size: 1.35rem; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-answer.open { display: block; }

.cta-panel { position: relative; overflow: hidden; padding: 64px; border-radius: var(--radius-lg); color: white; background: var(--gradient); box-shadow: 0 30px 80px rgba(124,58,237,.28); }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-panel::before { width: 220px; height: 220px; right: -50px; top: -90px; }
.cta-panel::after { width: 130px; height: 130px; right: 170px; bottom: -60px; }
.cta-panel p { margin-top: 14px; color: rgba(255,255,255,.82); max-width: 650px; }
.cta-panel .button { margin-top: 28px; color: var(--purple-dark); background: white; }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--line); background: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 35px; }
.footer-copy { margin-top: 14px; color: var(--muted); max-width: 360px; font-size: .92rem; }
.footer-col h3 { margin-bottom: 14px; font-size: .95rem; letter-spacing: -.01em; }
.footer-col a { display: block; margin: 9px 0; color: var(--muted); font-size: .92rem; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .86rem; }

/* Legal and account pages */
.page-hero { padding: 80px 0 52px; text-align: center; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.page-hero p { margin: 18px auto 0; max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.page-meta { display: inline-flex; margin-top: 22px; padding: 8px 13px; border-radius: 999px; background: var(--surface-strong); color: var(--purple-dark); font-size: .82rem; font-weight: 800; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 54px; align-items: start; padding-bottom: 96px; }
.legal-toc { position: sticky; top: 104px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.legal-toc strong { display: block; margin-bottom: 11px; font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.legal-toc a { display: block; padding: 8px 10px; border-radius: 10px; color: #5d5669; font-size: .9rem; }
.legal-toc a:hover { color: var(--purple); background: var(--surface-soft); }
.legal-content { padding: 42px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-sm); }
.legal-content section + section { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 15px; font-size: 1.7rem; letter-spacing: -.02em; }
.legal-content h3 { margin: 24px 0 10px; font-size: 1.08rem; letter-spacing: -.01em; }
.legal-content p + p { margin-top: 14px; }
.legal-content p, .legal-content li { color: #504a5a; }
.legal-content ul, .legal-content ol { padding-left: 1.3rem; }
.legal-content li + li { margin-top: 8px; }
.notice { margin: 24px 0; padding: 18px 20px; border: 1px solid #dfd2ff; border-radius: 16px; background: #f6f1ff; color: #4e3678; }
.notice strong { display: block; margin-bottom: 4px; color: var(--purple-dark); }

.delete-shell { max-width: 920px; margin: 0 auto; padding-bottom: 96px; }
.delete-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.info-panel, .form-panel { padding: 30px; }
.info-panel { color: white; background: #211832; border: 0; }
.info-panel h2 { font-size: 2rem; }
.info-panel p { margin-top: 14px; color: #d0c6df; }
.deletion-list { display: grid; gap: 13px; margin-top: 26px; }
.deletion-list div { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.deletion-list span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.1); }
.deletion-list strong { display: block; }
.deletion-list small { display: block; color: #bfb4cf; }
.form-panel h2 { font-size: 1.7rem; }
.form-panel > p { margin-top: 10px; color: var(--muted); }
.form-group { margin-top: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: .9rem; font-weight: 800; }
.form-control { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #dcd5e8; border-radius: 14px; color: var(--ink); background: white; transition: border-color .2s, box-shadow .2s; }
textarea.form-control { min-height: 112px; resize: vertical; }
.form-control:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,.09); outline: 0; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin-top: 20px; color: #55505f; font-size: .9rem; }
.check-row input { width: 18px; height: 18px; accent-color: var(--purple); margin-top: 3px; }
.form-message { display: none; margin-top: 18px; padding: 15px 16px; border-radius: 14px; font-weight: 700; }
.form-message.success { display: block; color: #126d49; background: #eaf9f2; border: 1px solid #c8eedf; }
.form-message.error { display: block; color: #a9223e; background: #fff0f3; border: 1px solid #ffd0da; }
.form-note { margin-top: 18px; color: var(--muted); font-size: .84rem; }

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; border-radius: 10px; }
  .nav-links a:hover { background: var(--surface-soft); }
  .menu-button { display: block; }
  .nav-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .privacy-band { grid-template-columns: 1fr; padding: 38px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-toc { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .legal-toc strong { width: 100%; }
  .delete-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.1rem); }
  .hero { padding-top: 50px; }
  .hero-visual { min-height: 430px; }
  .hero-orb { width: 360px; }
  .hero-character { width: 330px; }
  .float-card.one { top: 35px; right: -8px; }
  .float-card.two { bottom: 46px; left: -4px; }
  .float-card.three { display: none; }
  .float-card { padding: 10px 12px; font-size: .86rem; }
  .emoji-bubble { width: 39px; height: 39px; border-radius: 13px; font-size: 1.25rem; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric + .metric { border-left: 0; border-top: 1px solid var(--line); }
  .section-heading { align-items: start; flex-direction: column; }
  .showcase { padding: 10px; border-radius: 22px; }
  .showcase img { border-radius: 16px; }
  .privacy-band { padding: 30px 22px; border-radius: 24px; }
  .cta-panel { padding: 42px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 58px; }
  .legal-content { padding: 25px 20px; border-radius: 20px; }
  .legal-content h2 { font-size: 1.45rem; }
  .legal-toc { display: none; }
  .info-panel, .form-panel { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
