/* =========================
   Design Tokens (new set)
   ========================= */
:root{
  --ink: #0b1220;
  --ink-2:#0f1724;
  --sea:#10b9b6;
  --sky:#34b7ea;

  --bg: linear-gradient(180deg, #f2e9ff 0%, #f7fbff 55%, #ffffff 100%);
  --paper:#ffffff;
  --muted:#556077;

  --r-xl: 18px;
  --r-lg: 14px;
  --r-md: 12px;

  --w: 1120px;

  --shadow-1: 0 10px 28px rgba(15,23,36,.08);
  --shadow-2: 0 6px 18px rgba(10,15,25,.06);
  --shadow-3: 0 24px 70px rgba(14,20,30,.14);

  --stroke: rgba(10,15,25,.08);
  --stroke-soft: rgba(10,15,25,.06);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
}

/* =========================
   Top Bar (new structure)
   ========================= */
.topbar{
  background: var(--ink-2);
  color: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(10,15,25,.10);
}
.wrap{
  width: min(92%, var(--w));
  margin: 0 auto;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.topnav{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
}
.topnav a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s ease, transform .15s ease;
}
.topnav a:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.topnav a.is-active{
  background: rgba(255,255,255,.12);
  color:#fff;
}

/* =========================
   Hero Shell (new naming)
   ========================= */
.hero-shell{
  width: min(95%, var(--w));
  margin: 26px auto 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.985));
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-1);
  padding: 18px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items:center;
  padding: 16px;
  border-radius: var(--r-lg);
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(248,238,255,.55));
  border: 1px solid rgba(10,15,25,.03);
}

.brand-box{
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-frame{
  background: linear-gradient(135deg, #ffffff, #fff4ff);
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(14,20,30,.08);
  border: 1px solid rgba(10,15,25,.04);
}
.brand-frame img{
  width: 138px;
  height: 138px;
  border-radius: 10px;
  display:block;
}

.hero-copy{
  text-align:right;
  padding-left: 6px;
}
.kicker{
  margin:0 0 6px;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: .2px;
}
.subkicker{
  margin:0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .95rem;
}

.cred-panel{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 22px rgba(10,15,25,.04);
  border: 1px solid rgba(10,15,25,.03);
  flex-wrap: wrap;
}
.cred{
  min-width: 220px;
  text-align:left;
}
.cred small{
  display:block;
  color: var(--muted);
  margin-bottom: 4px;
  font-size: .82rem;
}
.cred b{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: .3px;
}

/* =========================
   Buttons (new system)
   ========================= */
.btnx{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  text-decoration:none;
  font-weight: 900;
  padding: 11px 14px;
  border-radius: 14px;
  transition: transform .14s ease, box-shadow .18s ease, filter .14s ease;
  box-shadow: var(--shadow-2);
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btnx svg{ width: 18px; height: 18px; }

.btnx--dark{
  background: var(--ink-2);
  color:#fff;
}
.btnx--soft{
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 1px solid var(--stroke-soft);
}
.btnx--sea{
  background: linear-gradient(180deg, var(--sky), var(--sea));
  color:#fff;
}

.btnx:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
  filter: saturate(1.04);
}
.btnx:active{ transform: translateY(-1px) scale(.99); }

/* =========================
   Download Tiles (new naming)
   ========================= */
.tile-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 10px;
}
.tile{
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border-radius: 14px;
  padding: 14px 12px;
  text-align:center;
  border: 1px solid rgba(10,15,25,.04);
  box-shadow: 0 8px 18px rgba(15,23,36,.05);
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.tile-badge{
  width: 58px;
  height: 58px;
  border-radius: 12px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, #f7fbff, #eef2ff);
  box-shadow: inset 0 -10px 16px rgba(0,0,0,.03);
}
.tile-badge img{
  width: 36px;
  height: 36px;
  object-fit: contain;
  display:block;
}
.tile h3{
  margin:0;
  font-size: 1rem;
  letter-spacing: .1px;
}
.tile p{
  margin:0;
  color: var(--muted);
  font-size: .92rem;
}
.tile .tile-cta{
  margin-top:auto;
  display:flex;
  justify-content:center;
}

/* =========================
   Primary Action Strip (new naming)
   ========================= */
.cta-strip{
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(248,238,255,.55), rgba(236,249,255,.55));
  border: 1px solid rgba(10,15,25,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

.wa-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 900;
  color:#fff;
  background: linear-gradient(180deg,#25d366,#128c7e);
  border: 0;
  cursor:pointer;
  box-shadow: 0 12px 30px rgba(37,211,102,.14);
  transition: transform .14s ease, box-shadow .18s ease;
}
.wa-pill:hover{
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 32px 70px rgba(37,211,102,.18);
}
.wa-pill svg{ width:18px; height:18px; }

.gif-cta{
  padding:0;
  border:0;
  cursor:pointer;
  border-radius: 18px;
  overflow:hidden;
  background: transparent;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  transition: transform .16s ease, box-shadow .16s ease;
}
.gif-cta img{
  display:block;
  height: 56px;
  width: auto;
  border-radius: 12px;
  transition: transform .18s ease, filter .18s ease;
}
.gif-cta:hover{
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 38px 90px rgba(255,90,20,.16);
}
.gif-cta:hover img{
  transform: scale(1.03);
  filter: drop-shadow(0 10px 28px rgba(255,80,20,.14));
}

/* =========================
   Trust Stats (new layout)
   ========================= */
.trustbar{
  width: min(95%, var(--w));
  margin: 12px auto 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.985), rgba(249,249,255,.985));
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(10,15,25,.04);
  padding: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(10,15,25,.03);
}
.stat i{
  font-style: normal;
  font-size: 1.9rem;
  line-height: 1;
}
.stat b{
  display:block;
  font-size: 1.24rem;
  line-height: 1.1;
  font-weight: 950;
  color: var(--ink-2);
}
.stat span{
  display:block;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* =========================
   Article Blocks (new naming)
   ========================= */
.block{
  width: min(95%, var(--w));
  margin: 0 auto 18px;
  background: var(--paper);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  padding: 24px 28px;
  border: 1px solid rgba(10,15,25,.04);
}

.block h1, .block h2{
  margin-top: 0;
  color: var(--ink-2);
}
.block h1{
  font-size: 1.8rem;
  border-bottom: 3px solid var(--sea);
  padding-bottom: 10px;
}
.block h2{
  font-size: 1.35rem;
  margin-top: 22px;
}
.block h3{
  font-size: 1.22rem;
  margin-top: 20px;
  color: var(--ink-2);
}
.block p, .block li{
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.block strong{ color: var(--ink); }

.dl-cta{
  display:flex;
  justify-content:center;
  margin: 18px 0 6px;
}
.dl-btn{
  min-width: 240px;
  padding: 13px 18px;
  border-radius: 16px;
}
.dl-btn--hot{
  background: linear-gradient(90deg,#ff6a00 0%, #ff3b00 100%);
  color:#fff;
  box-shadow: 0 16px 44px rgba(255,90,20,.16);
}
.dl-btn--hot:hover{
  box-shadow: 0 34px 90px rgba(255,90,20,.20);
}

/* Soft sections (kept vibe but different) */
.block--warm{ background: linear-gradient(180deg, rgba(255,251,245,.98), rgba(255,249,240,.98)); }
.block--cool{ background: linear-gradient(180deg, rgba(240,249,255,.98), rgba(255,255,255,.98)); }
.block--lav{ background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,248,255,.95)); }

/* FAQ (new markup) */
.faqbox{
  border: 1px solid rgba(15,23,36,.08);
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 8px 20px rgba(10,15,25,.04);
  margin-bottom: 12px;
}
.faqbox summary{
  list-style:none;
  cursor:pointer;
  padding: 16px 18px;
  font-weight: 900;
  color: var(--ink);
  position: relative;
}
.faqbox summary::-webkit-details-marker{ display:none; }
.faqbox summary:after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: var(--muted);
}
.faqbox[open] summary:after{ content:"–"; }
.faqbox .faqbody{
  padding: 0 18px 16px;
  border-top: 1px solid rgba(15,23,36,.06);
  color: var(--muted);
  line-height: 1.75;
}

/* Footer (new) */
.foot{
  margin-top: 18px;
  padding: 28px 0;
  background: var(--ink-2);
  color: rgba(255,255,255,.72);
  text-align:center;
}
.foot a{
  color: rgba(255, 208, 0, .75);
  text-decoration:none;
  font-weight: 800;
}
.foot a:hover{ color:#fff; }

.social{
  display:flex;
  justify-content:center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.social svg{ width: 22px; height: 22px; }

/* =========================
   Responsive (changed)
   ========================= */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-copy{ text-align:center; }
  .cred-panel{ justify-content:center; }
  .tile-row{ grid-template-columns: 1fr; }
  .trustbar{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .block{ padding: 20px 18px; }
  .trustbar{ grid-template-columns: 1fr; }
  .btnx{ padding: 10px 12px; border-radius: 14px; }
  .dl-btn{ width:100%; min-width: auto; }
}