/* Dezset — official site styles. Brand: Poppins, purple #6C3AED, deep ink #0D0D1E. Flat & modern. */
:root {
  --purple: #6C3AED;
  --purple-dark: #571FC9;
  --soft: #EEE9FC;
  --soft-2: #F5F2FE;
  --ink: #0D0D1E;
  --muted: #5C5C6B;
  --bg: #FFFFFF;
  --tint: #F6F5FA;
  --border: #EAE8F1;
  --maxw: 1080px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Brand lockup (exact icon + wordmark text) */
.brand { display: flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 32px; height: 32px; border-radius: 9px; }
.brand .name { font-weight: 700; font-size: 20px; letter-spacing: -0.4px; color: var(--ink); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--purple); text-decoration: none; }
.pill {
  font-size: 12px; font-weight: 600; color: var(--purple);
  background: var(--soft); padding: 6px 13px; border-radius: 999px;
}

/* Hero */
.hero { padding: 76px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--purple); margin: 0 0 16px; }
.hero h1 { font-size: 58px; line-height: 1.04; font-weight: 700; margin: 0 0 20px; letter-spacing: -1.5px; }
.hero h1 .accent { color: var(--purple); }
.hero p.lead { font-size: 19px; color: var(--muted); margin: 0 0 30px; max-width: 30em; }

/* Store badges (flat, solid ink — no gradients) */
.store-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 13px;
}
.store-badge:hover { text-decoration: none; opacity: 0.92; }
.store-badge svg { width: 24px; height: 24px; fill: #fff; flex: none; }
.store-badge .small { font-size: 10.5px; opacity: 0.82; line-height: 1.1; display: block; }
.store-badge .big { font-size: 16px; font-weight: 600; line-height: 1.2; }
.hero .note { margin: 18px 0 0; font-size: 14px; color: var(--muted); }

/* Hero visual — the exact app icon, clean flat shadow (no purple glow) */
.hero-visual { display: flex; justify-content: center; }
.icon-card { width: 250px; height: 250px; border-radius: 56px; box-shadow: 0 18px 40px -18px rgba(13,13,30,0.4); }
.icon-card img { width: 100%; height: 100%; border-radius: 56px; }

/* Sections */
section { padding: 60px 0; }
.section-tint { background: var(--tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 40em; margin: 0 auto 40px; }
.section-head h2 { font-size: 34px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.6px; }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }
.kicker { font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--purple); margin: 0 0 8px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.card .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card .ic svg { width: 23px; height: 23px; stroke: var(--purple); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 18px; font-weight: 600; margin: 0 0 6px; }
.card p { font-size: 15px; color: var(--muted); margin: 0; }

/* Stores CTA band — solid deep ink, flat */
.stores-band { background: var(--ink); color: #fff; }
.stores-inner { display: flex; align-items: center; gap: 30px; justify-content: center; text-align: left; flex-wrap: wrap; }
.stores-inner img { width: 88px; height: 88px; border-radius: 20px; }
.stores-inner h2 { font-size: 28px; margin: 0 0 6px; font-weight: 700; letter-spacing: -0.4px; }
.stores-inner p { margin: 0; color: rgba(255,255,255,0.72); font-size: 16px; }
.stores-badge-light {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; padding: 10px 16px; border-radius: 11px; font-weight: 600; font-size: 14px;
}
.stores-badge-light:hover { text-decoration: none; background: rgba(255,255,255,0.2); }

/* Contact strip */
.contact-strip { text-align: center; }
.contact-strip h2 { font-size: 28px; margin: 0 0 8px; letter-spacing: -0.4px; }
.contact-strip p { color: var(--muted); margin: 0 0 22px; font-size: 17px; }
.btn { display: inline-block; background: var(--purple); color: #fff; font-weight: 600; padding: 13px 26px; border-radius: 12px; font-size: 15px; }
.btn:hover { text-decoration: none; background: var(--purple-dark); }

/* Doc pages */
.doc { padding: 56px 0 24px; }
.doc h1 { font-size: 40px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.8px; }
.doc .meta { color: var(--muted); font-size: 15px; margin: 0 0 36px; }
.doc h2 { font-size: 22px; font-weight: 600; margin: 34px 0 10px; letter-spacing: -0.3px; }
.doc p, .doc li { font-size: 16px; color: #24232e; }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 7px; }
.doc a { font-weight: 500; }
.callout { background: var(--soft-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; margin: 28px 0; }
.callout strong { color: var(--ink); }

/* Support specifics */
.support-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0 8px; }
.fact { background: var(--tint); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
.fact .label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.fact .value { font-size: 16px; font-weight: 500; margin: 0; }
.issues { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.issues li { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 13px 16px; font-size: 15px; color: var(--ink); margin: 0; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; padding: 46px 0 30px; }
.site-footer .brand .name { color: #fff; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.site-footer .tag { color: rgba(255,255,255,0.65); font-size: 14px; margin: 12px 0 0; max-width: 22em; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 13px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.85); }

/* Responsive — mobile first friendly */
@media (max-width: 860px) {
  .hero { padding: 46px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .hero h1 { font-size: 44px; }
  .hero-visual { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .support-facts { grid-template-columns: 1fr; }
  .issues { grid-template-columns: 1fr; }
  .nav-links a:not(.pill) { display: none; }
  .stores-inner { text-align: center; flex-direction: column; }
  .section-head { text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 35px; }
  .section-head h2 { font-size: 27px; }
  .doc h1 { font-size: 30px; }
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge { width: 100%; max-width: 260px; justify-content: center; }
}
