:root{
  --bg:#0b0b12;
  --bg-soft:#11111d;
  --panel:#151527;
  --panel-2:#10101c;
  --muted:#9aa0b4;
  --text:#e9e9f2;
  --primary:#7a3cff;
  --primary-2:#9d6eff;
  --accent:#e95eff;
  --success:#22c55e;
  --warning:#f59e0b;
  --danger:#ef4444;
  --link:#80a0ff;
  --line:#25254a;
  --line-strong:#343464;
  --radius:18px;
  --shadow:0 24px 70px rgba(0,0,0,.38);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(122,60,255,.22), transparent 30%),
    radial-gradient(circle at top right, rgba(233,94,255,.14), transparent 24%),
    linear-gradient(180deg, #0d0d16 0%, #090910 100%);
  font-family: "Segoe UI", system-ui, sans-serif;
}
a{color:inherit}
img{max-width:100%; display:block}

.site-shell{
  min-height:100vh;
}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(14px);
  background:rgba(11,11,18,.82);
  border-bottom:1px solid rgba(52,52,100,.55);
}

.topbar-inner,
.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-logo{
  width:40px;
  height:40px;
  object-fit:contain;
  border-radius:12px;
  background:#10101a;
  border:1px solid var(--line);
  padding:4px;
}

.brand-copy strong{
  display:block;
  font-size:15px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#fff;
}

.brand-copy span{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#d7daf7;
  padding:9px 12px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:14px;
}

.nav a:hover{
  border-color:var(--line-strong);
  background:rgba(255,255,255,.03);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:none;
  border-radius:12px;
  padding:11px 16px;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition:transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--primary); color:#fff; }
.btn-primary:hover{ background:var(--primary-2); }
.btn-secondary{ background:#18182b; color:#cfd3ff; border:1px solid #2a2a44; }
.btn-secondary:hover{ border-color:var(--primary); color:#fff; }
.btn-outline{ background:transparent; color:#fff; border:1px solid var(--line-strong); }
.btn-outline:hover{ border-color:var(--primary); }
.btn-store-ios{ background:#f3f4f6; color:#111827; }
.btn-store-android{ background:var(--success); color:#06210f; }

.hero{
  padding:72px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:center;
}

.hero h1{
  margin:0 0 16px;
  font-size:clamp(38px, 6vw, 66px);
  line-height:1;
}

.hero p{
  margin:0 0 24px;
  color:#c5c8da;
  font-size:18px;
  max-width:640px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(25,25,43,.95), rgba(13,13,23,.95));
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-card img{
  aspect-ratio:1/1;
  object-fit:cover;
  width:100%;
}

.hero-card-body{
  padding:22px;
}

.hero-card-body strong{
  display:block;
  font-size:22px;
  margin-bottom:6px;
}

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

.section{
  padding:30px 0 34px;
}

.section-head{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:end;
  justify-content:space-between;
  margin-bottom:22px;
}

.section-head h2,
.section-head h3{
  margin:0 0 8px;
  font-size:30px;
}

.section-head p{
  margin:0;
  color:var(--muted);
  max-width:640px;
}

.grid{
  display:grid;
  gap:18px;
}

.app-grid{
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}

.card{
  background:linear-gradient(180deg, rgba(21,21,39,.98), rgba(13,13,23,.98));
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.app-visual{
  min-height:200px;
  padding:24px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:end;
  background:
    radial-gradient(circle at top right, rgba(233,94,255,.25), transparent 30%),
    radial-gradient(circle at bottom left, rgba(122,60,255,.35), transparent 30%),
    linear-gradient(160deg, #141426 0%, #0d0d18 100%);
}

.app-visual-content{
  display:grid;
  gap:10px;
}

.app-badge{
  display:inline-flex;
  border-radius:999px;
  padding:5px 10px;
  border:1px solid rgba(255,255,255,.1);
  color:#f5ecff;
  background:rgba(255,255,255,.06);
  font-size:12px;
}

.app-visual-title{
  margin:0;
  font-size:34px;
  line-height:.95;
  color:#fff;
}

.app-visual-copy{
  margin:0;
  max-width:22ch;
  color:#ddd2ff;
  font-size:15px;
}

.app-logo{
  width:120px;
  height:120px;
  object-fit:contain;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.28));
}

.card-body{
  padding:22px;
}

.card-body h3{
  margin:0 0 8px;
  font-size:26px;
}

.card-body p{
  margin:0 0 16px;
  color:#c3c7dc;
}

.feature-list{
  display:grid;
  gap:8px;
  color:#e2e5f7;
  margin:0 0 18px;
  padding:0;
  list-style:none;
}

.feature-list li{
  padding-left:18px;
  position:relative;
}

.feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(180deg, var(--accent), var(--primary));
}

.store-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.meta{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}

.panel-grid{
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}

.panel{
  background:linear-gradient(180deg, rgba(21,21,39,.98), rgba(13,13,23,.98));
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.panel h3{
  margin:0 0 10px;
  font-size:24px;
}

.panel p,
.panel li{
  color:#c6cade;
  line-height:1.6;
}

.panel ul{
  padding-left:18px;
  margin:0;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
}

.contact-card,
.form-card{
  background:linear-gradient(180deg, rgba(21,21,39,.98), rgba(13,13,23,.98));
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-points{
  display:grid;
  gap:16px;
  margin-top:18px;
}

.contact-point{
  padding:16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}

.contact-point strong{
  display:block;
  margin-bottom:6px;
}

.contact-point a{
  color:var(--link);
  text-decoration:none;
}

.contact-point a:hover{
  text-decoration:underline;
}

.contact-form{
  display:grid;
  gap:14px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  font-weight:700;
  color:#f0f1f9;
}

.pill-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.pill-option{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid #2a2a48;
  background:#1a1830;
  color:#cfd3ff;
  cursor:pointer;
  font-weight:700;
  transition:background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.pill-option:hover{
  border-color:var(--primary);
  color:#fff;
  transform:translateY(-1px);
}

.pill-input:checked + .pill-option{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #2b2b49;
  background:#0f0f1d;
  color:#fff;
  font:inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 1px var(--primary);
}

.helper{
  color:var(--muted);
  font-size:14px;
}

.footer{
  padding:24px 0 36px;
}

.footer-inner{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:20px;
  color:var(--muted);
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.footer-links a{
  color:#d5d9f5;
  text-decoration:none;
}

.footer-links a:hover{
  color:#fff;
}

.legal-page{
  padding:56px 0;
}

.legal-card{
  background:linear-gradient(180deg, rgba(21,21,39,.98), rgba(13,13,23,.98));
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.legal-card h1{
  margin:0 0 10px;
  font-size:38px;
}

.legal-card h2{
  margin:28px 0 10px;
  font-size:24px;
}

.legal-card p,
.legal-card li{
  color:#c9cce0;
  line-height:1.7;
}

.legal-card ul{
  margin:0;
  padding-left:20px;
}

.muted{ color:var(--muted); }

@media (max-width: 920px){
  .hero-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .topbar-inner{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 640px){
  .hero{
    padding-top:52px;
  }

  .topbar-inner,
  .container,
  .footer-inner{
    width:min(100% - 24px, 1120px);
  }

  .hero h1{
    font-size:40px;
  }

  .app-visual{
    grid-template-columns:1fr;
  }

  .app-logo{
    width:88px;
    height:88px;
  }

  .section-head h2,
  .section-head h3,
  .card-body h3,
  .panel h3{
    font-size:24px;
  }

  .card-body,
  .panel,
  .contact-card,
  .form-card,
  .legal-card{
    padding:20px;
  }
}
