:root{
  --bg0:#06070a;
  --bg1:#0b0d12;
  --text:#f3f4f6;
  --muted:rgba(243,244,246,.72);
  --border:rgba(255,255,255,.12);
  --shadow:0 24px 80px rgba(0,0,0,.55);
  --accent:#f59e0b; /* warm gold */
  --accent2:#fb7185; /* warm pink */
  --max:980px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(950px 650px at 20% 12%, rgba(245,158,11,.16), transparent 55%),
    radial-gradient(800px 600px at 80% 28%, rgba(251,113,133,.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.page{min-height:100%;display:flex;flex-direction:column;align-items:center}

.header{width:100%;max-width:var(--max);padding:24px 18px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  width:40px;
  height:40px;
  display:block;
  box-sizing:border-box;
  padding:6px;
  border-radius:12px;
  background:#ffffff;
  object-fit:contain;
  filter: drop-shadow(0 18px 55px rgba(0,0,0,.55));
}
.brand__name{font-weight:800;letter-spacing:.2px;font-size:18px}

.hero{
  width:100%;
  max-width:var(--max);
  padding:28px 18px 30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero__title{
  margin:22px 0 8px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero__subtitle{margin:0 0 10px;font-size:18px;color:var(--muted)}
.hero__micro{margin:0 0 18px;font-size:14px;color:rgba(243,244,246,.62)}

.stores{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-top:10px}

/* Official store badges */
.storebadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:0;
  overflow:visible;
  border:0;
  background:transparent;
  box-shadow:none;
  padding:0;
}
.storebadge:hover{filter:brightness(1.03);text-decoration:none}
.storebadge img{
  display:block;
  height:56px;
  width:auto;
}

@media (max-width: 380px){
  .storebadge img{height:52px}
}

/* Screenshot carousel (auto-advance, swipe) */
.carousel{
  width:100%;
  max-width:560px;
  margin-top:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.carousel__frame{
  touch-action: pan-y;
  position:relative;
  overflow:hidden;
  width:100%;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding:14px;
  box-shadow: var(--shadow);
}

.carousel__frame:focus{
  outline:2px solid rgba(245,158,11,.55);
  outline-offset:4px;
}

.carousel__slides{
  position:relative;
  width:100%;
  aspect-ratio: 9 / 18;
  border-radius:22px;
  overflow:hidden;
}

.carousel__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.01);
  transition: opacity .45s ease;
}

.carousel__img.is-active{
  opacity:1;
}


.carousel__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:var(--text);
  display:none; /* enabled on desktop */
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  backdrop-filter: blur(8px);
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.carousel__nav span{
  font-size:26px;
  line-height:1;
  transform: translateY(-1px);
}
.carousel__nav--prev{left:12px}
.carousel__nav--next{right:12px}

@media (hover:hover) and (pointer:fine) and (min-width: 900px){
  .carousel__nav{display:flex; opacity:.0; transition: opacity .18s ease}
  .carousel__frame:hover .carousel__nav{opacity:1}
  .carousel__frame:focus-within .carousel__nav{opacity:1}
}
.carousel__dots{
  position:absolute;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  z-index:4;
}

.dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
  padding:0;
  cursor:pointer;
}

.dot.is-active{
  background: rgba(245,158,11,.92);
  border-color: rgba(245,158,11,.92);
  box-shadow: 0 10px 30px rgba(245,158,11,.22);
}

.carousel__hint{
  margin:0;
  color:rgba(243,244,246,.55);
  font-size:12px;
}

@media (prefers-reduced-motion: reduce){
  .carousel__img{transition:none}
}

.footer{
  width:100%;
  max-width:var(--max);
  padding:26px 18px 80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.quicklinks{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;color:rgba(243,244,246,.70);font-size:13px}
.quicklinks a{color:rgba(243,244,246,.70)}
.quicklinks a:hover{color:rgba(243,244,246,.95);text-decoration:none}

.copyright{margin:0;color:rgba(243,244,246,.48);font-size:12px}

/* Sticky download bar (mobile-first) */
.sticky{
  position:fixed;
  left:0;right:0;bottom:12px;
  display:flex;
  justify-content:center;
  padding:0 12px;
  pointer-events:none;
}
.sticky__btn{
  pointer-events:auto;
  width:min(980px, 100%);
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(245,158,11,.92);
  color:#0b0d12;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:center;
  box-shadow: 0 18px 65px rgba(245,158,11,.26);
}
.sticky__btn:hover{text-decoration:none;filter:brightness(1.02)}

/* Desktop refinements */
@media (min-width: 860px){
  .hero__title{font-size:56px}
  .hero{padding-top:34px}
  .carousel{max-width:620px}
  .sticky{bottom:18px}
}

/* Respect safe areas on iOS */
@supports (padding: max(0px)){
  .sticky{padding-bottom: max(0px, env(safe-area-inset-bottom));}
}

/* --- Simple styling for policy/support pages (legacy pages) --- */
.container{width:100%;max-width:var(--max);margin:0 auto;padding:24px 18px 90px}
.container .header{display:flex;flex-direction:column;gap:14px;margin-bottom:18px}
.container .brand{display:flex;align-items:center;gap:12px}
.logo{width:40px;height:40px;border-radius:14px;background: linear-gradient(135deg, var(--accent), var(--accent2));box-shadow: 0 18px 55px rgba(0,0,0,.55)}
.muted{color:rgba(243,244,246,.62)}
.nav{display:flex;flex-wrap:wrap;gap:12px}
.nav a{color:rgba(243,244,246,.70)}
.nav a:hover{color:rgba(243,244,246,.95);text-decoration:none}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  border-radius:20px;
  padding:18px;
}
.card h1,.card h2,.card h3{margin-top:0}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color:rgba(243,244,246,.70);
  font-size:12px;
}

@media (min-width: 760px){
  .container .header{flex-direction:row;align-items:center;justify-content:space-between}
}


.hero__bullets{
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  text-align: left;
}

.hero__bullets li{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}

.hero__bullets li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}

.hero__bullets strong{
  color: var(--text);
  font-weight: 700;
}

.brand__tag{
  opacity: .8;
  font-weight: 500;
  font-size: 0.95em;
  white-space: nowrap;
}

@media (max-width: 420px){
  .brand__tag{
    font-size: 0.8em;
    opacity: .75;
  }
}

