:root{
  --primary:#7c3aed;
  --primary-dark:#5b21b6;
  --bg:#ffffff;
  --bg-soft:#f5f3ff;
  --fg:#1f1937;
  --muted:#6b7280;
  --border:#ece9f5;
  --gradient-hero:linear-gradient(135deg,#7c3aed 0%,#4c1d95 100%);
  --shadow-violet:0 20px 60px -20px rgba(124,58,237,0.45);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* Layout */
.container{max-width:1120px;margin:0 auto;padding:0 24px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(236,233,245,0.7);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:20px;letter-spacing:-0.01em}
.brand img{width:36px;height:36px;border-radius:8px;box-shadow:0 1px 3px rgba(0,0,0,.08)}
.brand .accent{color:var(--primary)}
.nav-links{display:none;gap:32px;font-size:14px;font-weight:500;color:var(--muted)}
.nav-links a:hover{color:var(--fg)}
.nav-links a.active{color:var(--fg)}
@media(min-width:768px){.nav-links{display:flex}}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  border-radius:9999px;padding:10px 18px;
  font-weight:600;font-size:14px;
  background:var(--primary);color:#fff;
  transition:opacity .2s,transform .2s;
  border:none;cursor:pointer;
}
.btn:hover{opacity:.9}
.btn-lg{padding:16px 28px;font-size:16px;box-shadow:var(--shadow-violet)}
.btn-light{background:#fff;color:var(--primary);box-shadow:0 12px 30px -10px rgba(0,0,0,.25)}
.btn-light:hover{transform:scale(1.02)}
.btn .play-label{display:none}
@media(min-width:640px){.btn .play-label{display:inline}}

/* Hero */
.hero{position:relative;overflow:hidden;color:#fff}
.hero-bg{position:absolute;inset:0;z-index:-2;background:var(--gradient-hero)}
.hero-dots{position:absolute;inset:0;z-index:-1;opacity:.15;
  background-image:radial-gradient(circle,#fff 1px,transparent 1px);
  background-size:18px 18px;
}
.hero-ring{position:absolute;border-radius:50%;border:18px solid rgba(255,255,255,.1);z-index:-1}
.hero-ring-1{width:288px;height:288px;left:-96px;bottom:-96px}
.hero-ring-2{width:224px;height:224px;right:-64px;top:-40px;border-width:14px}
.hero-grid{display:grid;gap:48px;padding:80px 0;align-items:center}
@media(min-width:768px){.hero-grid{grid-template-columns:1fr 1fr;padding:112px 0}}
.hero-text{text-align:center}
@media(min-width:768px){.hero-text{text-align:left}}
.badge{
  display:inline-block;border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.1);backdrop-filter:blur(6px);
  padding:6px 16px;border-radius:9999px;
  font-size:12px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.9);
}
.hero h1{font-size:40px;line-height:1.1;font-weight:800;letter-spacing:-0.02em;margin:24px 0 0}
@media(min-width:768px){.hero h1{font-size:60px}}
.hero p.lead{font-size:18px;color:rgba(255,255,255,.85);max-width:560px;margin:24px auto 0}
@media(min-width:768px){.hero p.lead{margin-left:0;margin-right:0}}
.hero-cta{margin-top:40px;display:flex;justify-content:center}
@media(min-width:768px){.hero-cta{justify-content:flex-start}}

.phone{position:relative;max-width:320px;margin:0 auto;width:100%}
@media(min-width:768px){.phone{max-width:380px}}
.phone-glow{position:absolute;inset:-24px;border-radius:48px;background:rgba(255,255,255,.1);filter:blur(32px)}
.phone-frame{position:relative;border:8px solid rgba(0,0,0,.4);border-radius:40px;overflow:hidden;box-shadow:0 25px 50px -12px rgba(0,0,0,.5)}

/* Sections */
section.pad{padding:96px 0}
.section-head{max-width:640px;margin:0 auto;text-align:center}
.section-head h2{font-size:32px;font-weight:700;letter-spacing:-0.01em;margin:0}
@media(min-width:768px){.section-head h2{font-size:40px}}
.section-head p{margin-top:16px;color:var(--muted)}

.grid-3{display:grid;gap:32px;margin-top:64px}
@media(min-width:768px){.grid-3{grid-template-columns:repeat(3,1fr)}}

.card{
  border:1px solid var(--border);background:#fff;border-radius:16px;padding:32px;
  transition:transform .2s,border-color .2s,box-shadow .2s;
}
.card:hover{transform:translateY(-4px);border-color:rgba(124,58,237,.4);box-shadow:var(--shadow-violet)}
.card .icon{
  width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:var(--bg-soft);color:var(--primary);font-size:24px;
}
.card h3{margin:24px 0 12px;font-size:20px;font-weight:600}
.card p{margin:0;color:var(--muted)}

.bg-soft{background:rgba(245,243,255,.6)}
.step{background:#fff;border-radius:16px;padding:32px;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.step .num{font-size:48px;font-weight:800;color:rgba(124,58,237,.2)}
.step h3{margin:16px 0 12px;font-size:20px;font-weight:600}
.step p{margin:0;color:var(--muted)}

.cta-final{max-width:720px;margin:0 auto;text-align:center;padding:96px 24px}
.cta-final h2{font-size:32px;font-weight:700;margin:0}
@media(min-width:768px){.cta-final h2{font-size:40px}}
.cta-final p{margin:16px 0 0;color:var(--muted)}
.cta-final .btn{margin-top:32px}

/* Footer */
.site-footer{
  margin-top:96px;border-top:1px solid var(--border);
  background:rgba(245,243,255,.4);
}
.footer-inner{
  display:flex;flex-direction:column;align-items:center;gap:24px;
  padding:40px 24px;text-align:center;
}
@media(min-width:768px){
  .footer-inner{flex-direction:row;justify-content:space-between;text-align:left}
}
.footer-brand{display:flex;align-items:center;gap:12px}
.footer-brand img{width:40px;height:40px;border-radius:8px}
.footer-brand .name{font-weight:800;font-size:18px;letter-spacing:-0.01em}
.footer-brand .name .accent{color:var(--primary)}
.footer-brand p{margin:0;font-size:14px;color:var(--muted)}
.footer-links{display:flex;gap:24px;font-size:14px;color:var(--muted)}
.footer-links a:hover{color:var(--primary)}
.footer-copy{font-size:12px;color:var(--muted)}

/* Legal */
.legal-hero{background:rgba(245,243,255,.5);border-bottom:1px solid var(--border)}
.legal-hero .container{max-width:768px;padding-top:64px;padding-bottom:64px}
.legal-hero h1{font-size:36px;font-weight:800;letter-spacing:-0.02em;margin:0}
@media(min-width:768px){.legal-hero h1{font-size:48px}}
.legal-hero .updated{margin-top:12px;font-size:14px;color:var(--muted)}

.legal-article{max-width:768px;margin:0 auto;padding:64px 24px}
.legal-article section{margin-bottom:40px}
.legal-article h2{font-size:20px;font-weight:700;color:var(--primary);margin:0 0 12px}
.legal-article p, .legal-article li{color:var(--muted);font-size:16px;line-height:1.7}
.legal-article ul{margin:12px 0;padding-left:24px}
.legal-article li{margin:8px 0}
.legal-article .email{color:var(--primary);font-weight:500}

/* Deletion pages */
.steps-list{list-style:none;padding:0;margin:16px 0 0;counter-reset:steps}
.steps-list li{counter-increment:steps;display:flex;gap:16px;align-items:flex-start;margin-bottom:20px;font-size:16px;color:var(--muted);line-height:1.6}
.steps-list li::before{content:counter(steps);background:var(--primary);color:#fff;font-weight:700;font-size:13px;min-width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.steps-list strong{color:var(--fg)}
.warning-box{background:#fefce8;border:1px solid #fde68a;border-radius:12px;padding:16px 20px;margin-top:16px;font-size:14px;color:#78350f;display:flex;gap:10px;align-items:flex-start;line-height:1.6}
.info-box{background:var(--bg-soft);border:1px solid var(--border);border-radius:12px;padding:20px 24px;margin-top:8px}
.info-box p{margin:0;font-size:15px;color:var(--muted)}
.info-box a{color:var(--primary);font-weight:600}
.data-table{width:100%;border-collapse:collapse;margin-top:12px;font-size:14px}
.data-table th{background:var(--bg-soft);color:var(--primary-dark);font-weight:700;text-align:left;padding:10px 14px;border-bottom:2px solid var(--border)}
.data-table td{padding:10px 14px;border-bottom:1px solid var(--border);color:var(--muted)}
.tag{display:inline-block;padding:2px 10px;border-radius:20px;font-size:12px;font-weight:700}
.tag-deleted{background:#fee2e2;color:#b91c1c}
.tag-kept{background:#fef3c7;color:#92400e}
