:root {
  --bg-dark:#020617;
  --text-dark:#e5e7eb;
  --primary:#ff0074;
  --shadow:0 18px 45px rgba(0,0,0,.3);
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body {
  font-family:system-ui, sans-serif;
  background:linear-gradient(135deg, #0a0e1a 0%, #020617 25%, #0d1117 50%, #020617 75%, #0a0e27 100%);
  background-attachment:fixed;
  background-size:400% 400%;
  animation:gradientBg 15s ease infinite;
  color:var(--text-dark);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
}

@keyframes gradientBg {
  0%, 100% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
}

.page-root { width:100%; }

.hero-grid {
  width:100%;
  max-width:1240px;
  display:grid;
  grid-template-columns:1.35fr 1.1fr;
  gap:40px;
  align-items:center;
  position:relative;
}

.logo-mark-wrapper {
  width:150px;
  height:150px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #0d1b3a, #020917, #0a0e1a);
  position:relative;
  box-shadow:0 10px 40px rgba(0,0,0,0.6), 0 0 30px rgba(255,0,116,0.15);
  transition:transform .35s ease;
}

.logo-mark-wrapper::before {
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,0,116,.65),rgba(255,0,116,.35),transparent 95%);
  filter:blur(28px);
  opacity:.75;
  animation:logoPulse 3.2s infinite ease-in-out;
  z-index:-1;
}

@keyframes logoPulse {
  0% { transform:scale(.97); opacity:.55; }
  50% { transform:scale(1.05); opacity:.9; }
  100% { transform:scale(.97); opacity:.55; }
}

.logo-mark-wrapper:hover {
  transform:scale(1.08) rotate(4deg);
}

.logo-mark-wrapper::after {
  content:"";
  position:absolute;
  inset:-1.5px;
  border-radius:50%;
  border:1px solid rgba(255,0,116,.35);
  filter:blur(.5px);
  animation:glow 4s infinite;
}

@keyframes glow {
  20%,100% { opacity:.3; }
  50% { opacity:.9; }
}

.logo-img {
  width:130px;
  height:130px;
  border-radius:50%;
  transition:transform .35s ease;
}

.logo-mark-wrapper:hover .logo-img {
  transform:scale(1.06) rotate(-4deg);
}

.brand-name {
  font-family:"Style Script", cursive;
  font-size:48px;
  margin:4px 0 8px;
  display:inline-block;
  background:linear-gradient(120deg,#ff0074,#ff4faf);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-left {
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:0 auto;
}

.hero-heading {
  font-size:2.4rem;
  font-weight:700;
  line-height:1.2;
}

#hero-dynamic-word {
  color:#facc15;
  text-shadow:0 0 10px rgba(250,204,21,.6);
  opacity:0;
  display:inline-block;
  text-align:justify;
  min-width:8ch;
  transition:opacity .4s;
}

#hero-dynamic-word.is-visible { opacity:1; }

.hero-subtitle-static {
  font-size:.85rem;
  letter-spacing:.22em;
  opacity:.8;
}

.hero-tagline {
  font-size:1.05rem;
  max-width:520px;
  background:linear-gradient(120deg,#e5e7eb,#fbbf24,#ff0074,#38bdf8,#e5e7eb);
  background-size:260% 260%;
  -webkit-background-clip:text;
  color:transparent;
  animation:grad 7s infinite;
}

@keyframes grad {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

.cta-row {
  display:flex;
  gap:12px;
  margin-top:12px;
}

.btn {
  padding:10px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary {
  background:var(--primary);
  color:#fff;
  box-shadow:0 12px 30px rgba(255,0,116,.35);
  transition:background .25s, box-shadow .25s, transform .25s;
}

.btn-primary:hover {
  background:#14b8a6;
  box-shadow:0 12px 35px rgba(20,184,166,.45);
  transform:scale(1.02);
}

.btn-secondary {
  background:rgba(15,23,42,.85);
  color:#fff;
  border:1px solid #94a3b8;
  transition:background .25s, transform .25s;
}

.btn-secondary:hover {
  background:#ff6600;
  box-shadow:0 12px 35px rgba(20,184,166,.45);
  transform:scale(1.02);
}

.hero-meta {
  margin-top:10px;
  font-size:.85rem;
  opacity:.75;
}

@media(max-width:900px) {
  .hero-meta { display:none!important; }
}

@media(min-width:901px) {
  .hero-meta { display:block!important; }
}

.hero-right {
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider-root {
  width:100%;
  max-width:540px;
  position:relative;
}

.slider-shell {
  padding:3px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,0,116,0.9), rgba(139,92,246,0.8), rgba(56,189,248,0.85), rgba(250,204,21,0.8));
  background-size:300% 300%;
  animation:borderGlow 8s ease infinite;
  box-shadow:0 30px 70px rgba(0,0,0,0.6), 0 0 50px rgba(255,0,116,0.2), inset 0 0 30px rgba(255,255,255,0.05);
  position:relative;
}

.slider-shell::before {
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,0,116,0.4), rgba(139,92,246,0.35), rgba(56,189,248,0.4), rgba(250,204,21,0.35));
  filter:blur(25px);
  opacity:0.7;
  z-index:-1;
  animation:borderGlow 8s ease infinite;
}

@keyframes borderGlow {
  0%, 100% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
}

.slider-inner {
  border-radius:22px;
  overflow:hidden!important;
  background:linear-gradient(135deg, rgba(10,14,26,0.95), rgba(15,23,42,0.92));
  backdrop-filter:blur(25px) saturate(180%);
  -webkit-backdrop-filter:blur(25px) saturate(180%);
  box-shadow:inset 0 0 60px rgba(0,0,0,0.3);
}

.slider-track {
  display:flex;
  width:300%;
  transition:transform .6s ease;
}

.slide {
  flex:0 0 100%;
  min-height:420px;
  max-height:520px;
  padding:32px 30px;
  background:linear-gradient(135deg, rgba(10,14,26,0.98) 0%, rgba(15,23,42,0.96) 50%, rgba(20,28,51,0.94) 100%);
  border-radius:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  font-size:.95rem;
  position:relative;
  overflow:hidden;
}

.slide::before {
  content:"";
  position:absolute;
  top:-50px;
  right:-50px;
  width:400px;
  height:400px;
  background:radial-gradient(circle, rgba(255,0,116,0.12), rgba(139,92,246,0.08), transparent 70%);
  border-radius:50%;
  pointer-events:none;
  animation:float 20s ease-in-out infinite;
}

.slide::after {
  content:"";
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:350px;
  height:350px;
  background:radial-gradient(circle, rgba(56,189,248,0.1), rgba(20,184,166,0.06), transparent 70%);
  border-radius:50%;
  pointer-events:none;
  animation:float 25s ease-in-out infinite reverse;
}

.slide-badge {
  padding:8px 16px;
  background:linear-gradient(135deg, rgba(255,0,116,0.15), rgba(56,189,248,0.15));
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.2em;
  margin-bottom:8px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 4px 15px rgba(0,0,0,0.2);
  text-transform:uppercase;
}

.badge-dot {
  width:6px;
  height:6px;
  border-radius:50%;
  background:linear-gradient(135deg, #22c55e, #10b981);
  box-shadow:0 0 10px rgba(34,197,94,0.6);
  animation:dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform:scale(1); opacity:1; }
  50% { transform:scale(1.3); opacity:0.7; }
}

.slide-title {
  font-size:1.6rem;
  font-weight:800;
  line-height:1.25;
  margin-bottom:8px;
  background:linear-gradient(135deg, #f1f5f9, #cbd5e1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-0.02em;
}

.slide-sub {
  font-size:1rem;
  color: var(--txt-2);
  opacity:.9;
  line-height:1.5;
  margin-bottom:12px;
  font-weight:400;
}

.hero-right .slider-root,
.hero-right .slider-shell,
.hero-right .slider-inner,
.hero-right .slider-track,
.hero-right .slide {
  width:100%!important;
}

.pill-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:6px;
}

.pill {
  padding:16px 14px;
  background:linear-gradient(135deg, rgba(2,6,23,0.8), rgba(15,23,42,0.6));
  border:1px solid rgba(148,163,184,0.25);
  border-radius:14px;
  font-size:.875rem;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.pill::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,0,116,0.1), rgba(56,189,248,0.1));
  opacity:0;
  transition:opacity 0.3s ease;
}

.pill:hover::before {
  opacity:1;
}

.pill:has(img) { 
  padding:12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:75px!important;
  background:linear-gradient(135deg, rgba(2,6,23,0.4), rgba(15,23,42,0.3))!important;
}

.pill:hover {
  border-color:rgba(255,0,116,0.6);
  box-shadow:0 10px 30px rgba(255,0,116,0.2), 0 0 20px rgba(255,0,116,0.15);
  transform:translateY(-4px) scale(1.02);
}

.pill-hover {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.pill-icon {
  font-size:1.5rem;
  margin-bottom:2px;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.pill-content {
  display:flex;
  flex-direction:column;
  gap:4px;
  position:relative;
  z-index:1;
}

.pill-content strong {
  font-size:.95rem;
  font-weight:700;
  color:#f1f5f9;
  letter-spacing:-0.01em;
}

.pill-content span {
  font-size:.8rem;
  color:#94a3b8;
  line-height:1.4;
}

.pill a {
  color:inherit;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

.pill a img {
  width:100%;
  max-width:150px;
  height:auto;
  object-fit:contain;
  display:block;
}

/* Rating Section (Slide 3) */
.rating-wrapper {
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:12px 0;
  margin:10px 0;
}

.rating {
  font-size:3rem;
  font-weight:900;
  line-height:1;
  background:linear-gradient(135deg, #facc15, #ff9800, #ff5722);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-0.03em;
}

.rating-max {
  font-size:1.5rem;
  opacity:0.5;
  font-weight:700;
}

.rating-stars {
  font-size:1.5rem;
  color:#facc15;
  letter-spacing:5px;
  text-shadow:0 0 15px rgba(250,204,21,0.5), 0 2px 5px rgba(0,0,0,0.3);
  margin:4px 0;
}

.rating-sub {
  font-size:.9rem;
  color:#94a3b8;
  font-weight:500;
  letter-spacing:0.02em;
}

/* Feature Pills (Slide 3) */
.features-grid {
  gap:10px;
}

.pill-feature {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 12px;
  background:linear-gradient(135deg, rgba(2,6,23,0.8), rgba(15,23,42,0.6));
  border:1px solid rgba(34,197,94,0.2);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-feature:hover {
  border-color:rgba(34,197,94,0.5);
  background:linear-gradient(135deg, rgba(34,197,94,0.15), rgba(16,185,129,0.1));
  box-shadow:0 10px 30px rgba(34,197,94,0.2);
  transform:translateY(-4px) scale(1.02);
}

.feature-icon {
  font-size:1.3rem;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(34,197,94,0.2), rgba(16,185,129,0.15));
  border:1px solid rgba(34,197,94,0.3);
  border-radius:10px;
  flex-shrink:0;
}

.pill-feature span {
  color:#e5e7eb;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:-0.01em;
}

/* Download Pills (Slide 2) */
.download-grid {
  gap:14px;
}

.pill-download {
  border:1px solid rgba(148,163,184,0.2)!important;
  background:linear-gradient(135deg, rgba(2,6,23,0.6), rgba(15,23,42,0.4))!important;
  min-height:75px!important;
  max-height:75px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:10px 12px!important;
}

.pill-download:hover {
  border-color:rgba(56,189,248,0.5)!important;
  background:linear-gradient(135deg, rgba(56,189,248,0.1), rgba(14,165,233,0.08))!important;
  box-shadow:0 10px 30px rgba(56,189,248,0.2)!important;
}

.pill-api-custom {
  background:linear-gradient(135deg, rgba(139,92,246,0.2), rgba(99,102,241,0.15))!important;
  border:1px solid rgba(139,92,246,0.4)!important;
  min-height:75px!important;
  max-height:75px!important;
  padding:10px 12px!important;
}

.pill-api-custom:hover {
  border-color:rgba(139,92,246,0.7)!important;
  background:linear-gradient(135deg, rgba(139,92,246,0.3), rgba(99,102,241,0.2))!important;
  box-shadow:0 10px 30px rgba(139,92,246,0.35)!important;
}

.download-link {
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.download-link img {
  width:100%;
  max-width:145px;
  height:auto;
  max-height:55px;
  object-fit:contain;
}

.api-link {
  text-decoration:none;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.api-badge {
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  background:rgba(139,92,246,0.15);
  border-radius:12px;
  border:1px solid rgba(139,92,246,0.3);
  backdrop-filter:blur(10px);
  transition:all 0.3s ease;
  width:100%;
  max-width:145px;
  height:55px;
}

.pill-api-custom:hover .api-badge {
  background:rgba(139,92,246,0.25);
  border-color:rgba(139,92,246,0.5);
}

.api-icon {
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(139,92,246,0.3), rgba(99,102,241,0.2));
  border-radius:8px;
  border:1px solid rgba(139,92,246,0.4);
  flex-shrink:0;
}

.api-icon svg {
  color:#a78bfa;
  width:20px;
  height:20px;
}

.api-text {
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:left;
  flex:1;
}

.api-title {
  font-size:0.85rem;
  font-weight:700;
  color:#e9d5ff;
  letter-spacing:-0.01em;
  line-height:1.2;
}

.api-subtitle {
  font-size:0.7rem;
  color:#c4b5fd;
  opacity:0.9;
  line-height:1.2;
}

/* Slide Info Box */
.slide-info-box {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
  padding:16px;
  background:linear-gradient(135deg, rgba(2,6,23,0.6), rgba(15,23,42,0.4));
  border:1px solid rgba(148,163,184,0.15);
  border-radius:14px;
  backdrop-filter:blur(10px);
}

.info-item {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.85rem;
  color: var(--txt-2);
  line-height:1.4;
}

.info-item svg {
  color:#38bdf8;
  flex-shrink:0;
  opacity:0.9;
}

.info-item span {
  flex:1;
}

.slide-footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.8rem;
  color:#94a3b8;
  padding-top:16px;
  margin-top:auto;
  border-top:1px solid rgba(148,163,184,0.15);
  position:relative;
  z-index:1;
}

.footer-left,
.footer-right {
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:500;
}

.footer-left svg {
  opacity:0.8;
}

.footer-right {
  font-variant-numeric:tabular-nums;
  letter-spacing:0.02em;
}

.slider-arrow {
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95));
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index:100;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
}

.slider-arrow:hover {
  background:linear-gradient(135deg, #ff0074, #ff4faf);
  border-color:rgba(255,0,116,0.5);
  box-shadow:0 10px 35px rgba(255,0,116,0.4);
  transform:translateY(-50%) scale(1.1);
}

.slider-arrow:active {
  transform:translateY(-50%) scale(0.95);
}

.slider-arrow-left { left:-24px; }
.slider-arrow-right { right:-24px; }

.slider-dots {
  margin-top:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(148,163,184,0.4);
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
}

.dot:hover {
  background:rgba(148,163,184,0.7);
  transform:scale(1.2);
}

.dot.active {
  width:32px;
  border-radius:999px;
  background:linear-gradient(135deg, #ff0074, #ff4faf);
  box-shadow:0 4px 15px rgba(255,0,116,0.4);
}

.dot.active::after {
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  border:1px solid rgba(255,0,116,0.3);
}

/* ================================
   MOBILE RESPONSIVE (900px)
   ================================ */
@media(max-width:900px) {
  body {
    padding:20px;
  }
  
  .hero-grid { 
    grid-template-columns:1fr;
    gap:30px;
  }
  
  .hero-left {
    text-align:center;
    align-items:center;
  }
  
  .hero-meta {
    display:none!important;
  }
  
  .site-footer {
    display:block!important;
  }
  
  .cta-row {
    display:flex;
    flex-direction:row;
    width:100%;
    gap:12px;
  }
  
  .btn {
    flex:1;
    padding:14px 20px;
  }
  
  .slider-arrow-left { left:8px; }
  .slider-arrow-right { right:8px; }
  
  .slider-root {
    max-width:100%;
  }
}

/* ================================
   MOBILE VIEW (768px and below)
   ================================ */
@media(max-width:768px) {
  body {
    padding:12px;
    align-items:flex-start;
    padding-top:15px;
  }
  
  .page-root {
    width:100%;
  }
  
  /* Hide only slider navigation */
  .slider-shell,
  .slider-track,
  .slider-arrow,
  .slider-dots {
    display:none!important;
  }
  
  /* Logo adjustments */
  .logo-mark-wrapper {
    width:80px;
    height:80px;
  }
  
  .logo-img {
    width:70px;
    height:70px;
  }
  
  .logo-glow {
    inset:-15px;
    filter:blur(20px);
  }
  
  /* Hero section */
  .hero-heading {
    font-size:1.4rem;
    margin-bottom:8px;
  }
  
  .brand-name {
    font-size:1.75rem;
  }
  
  .hero-subtitle-static {
    font-size:0.65rem;
    gap:6px;
    margin-bottom:6px;
  }
  
  .subtitle-line {
    max-width:30px;
  }
  
  .hero-tagline {
    font-size:0.85rem;
    margin-bottom:10px;
  }
  
  .cta-row {
    flex-direction:column;
    gap:8px;
    width:100%;
    max-width:350px;
    margin-bottom:6px;
  }
  
  .btn {
    width:100%;
    padding:10px 20px;
    font-size:0.85rem;
  }
  
  /* Mobile slider content - show all slides stacked */
  .slider-root {
    background:transparent!important;
    padding:0;
    margin-top:6px;
  }
  
  .slider-inner {
    display:flex!important;
    flex-direction:column!important;
    background:transparent!important;
    backdrop-filter:none!important;
    border-radius:0!important;
    gap:12px!important;
  }
  
  .slide {
    display:flex!important;
    flex-direction:column!important;
    background:linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.9))!important;
    border:1px solid rgba(148,163,184,0.2)!important;
    border-radius:12px!important;
    padding:14px!important;
    min-height:auto!important;
    max-height:none!important;
    gap:10px!important;
    backdrop-filter:blur(15px)!important;
    -webkit-backdrop-filter:blur(15px)!important;
    box-shadow:0 4px 16px rgba(0,0,0,0.3)!important;
    flex:none!important;
    width:100%!important;
  }
  
  .slide::before,
  .slide::after {
    display:none!important;
  }
  
  .slide-content {
    display:flex!important;
    flex-direction:column!important;
    gap:8px!important;
  }
  
  /* Slide badges */
  .slide-badge {
    font-size:0.65rem!important;
    padding:6px 12px!important;
    align-self:flex-start!important;
  }
  
  .badge-dot {
    width:5px!important;
    height:5px!important;
  }
  
  /* Slide titles */
  .slide-title {
    font-size:1.1rem!important;
    margin-bottom:4px!important;
  }
  
  .slide-sub {
    font-size:0.8rem!important;
    margin-bottom:6px!important;
    line-height:1.3!important;
  }
  
  /* Pills mobile styling */
  .pill-grid {
    grid-template-columns:1fr!important;
    gap:6px!important;
  }
  
  .pill {
    padding:10px 12px!important;
    border-radius:10px!important;
  }
  
  .pill-hover {
    flex-direction:row!important;
    align-items:center!important;
    gap:10px!important;
  }
  
  .pill-icon {
    font-size:1.4rem!important;
    margin-bottom:0!important;
  }
  
  .pill-content {
    text-align:left!important;
    flex:1!important;
  }
  
  .pill-content strong {
    font-size:0.8rem!important;
  }
  
  .pill-content span {
    font-size:0.72rem!important;
    line-height:1.2!important;
  }
  
  /* Hide desktop download section on mobile */
  .download-grid {
    display:none!important;
  }
  
  /* Mobile-only app download section */
  .app-download-mobile {
    display:flex!important;
    flex-direction:column;
    gap:8px;
    padding:8px 0;
    margin:6px 0 6px;
    text-align:center;
    width:100%;
    background:transparent;
    border:none;
    border-radius:0;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    box-shadow:none;
  }
  
  .download-heading {
    font-size:1.1rem;
    font-weight:700;
    color:#f1f5f9;
    margin-bottom:4px;
    background:linear-gradient(135deg, #fff, #cbd5e1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
  }
  
  .download-sub {
    font-size:0.8rem;
    color:#cbd5e1;
    margin-bottom:6px;
    line-height:1.3;
  }
  
  .download-badges {
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:center;
    width:100%;
  }
  
  .badge-link {
    display:block;
    width:100%;
    max-width:180px;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .download-badges img {
    width:100%;
    max-width:180px;
    height:auto;
    border:1px solid rgba(148,163,184,0.25);
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
    background:rgba(255,255,255,0.03);
    transition:all 0.3s ease;
  }
  
  .badge-link:hover img {
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(255,0,116,0.3);
    border-color:rgba(255,0,116,0.4);
  }
  
  .badge-link:active img {
    transform:scale(0.98);
  }
  
  .api-icon {
    width:34px!important;
    height:34px!important;
  }
  
  .api-icon svg {
    width:18px!important;
    height:18px!important;
  }
  
  .api-title {
    font-size:0.85rem!important;
  }
  
  .api-subtitle {
    font-size:0.7rem!important;
  }
  
  /* Rating mobile */
  .rating-wrapper {
    padding:8px 0!important;
    margin:6px 0!important;
  }
  
  .rating {
    font-size:2rem!important;
  }
  
  .rating-max {
    font-size:1.1rem!important;
  }
  
  .rating-stars {
    font-size:1.2rem!important;
    letter-spacing:3px!important;
  }
  
  .rating-sub {
    font-size:0.75rem!important;
  }
  
  /* Feature pills mobile */
  .pill-feature {
    padding:10px 10px!important;
    gap:8px!important;
  }
  
  .feature-icon {
    width:32px!important;
    height:32px!important;
    font-size:1.1rem!important;
  }
  
  .pill-feature span {
    font-size:0.75rem!important;
  }
  
  /* Info box mobile */
  .slide-info-box {
    padding:10px!important;
    gap:6px!important;
    margin-top:8px!important;
  }
  
  .info-item {
    font-size:0.75rem!important;
    gap:8px!important;
    line-height:1.3!important;
  }
  
  .info-item svg {
    width:14px!important;
    height:14px!important;
  }
  
  /* Hide slide footers on mobile */
  .slide-footer {
    display:none!important;
  }
  
  /* Site footer mobile */
  .site-footer {
    display:flex!important;
    align-items:center;
    justify-content:center;
    gap:6px;
    width:100%;
    text-align:center;
    padding:12px 0 8px;
    font-size:0.75rem;
    color:#94a3b8;
    border-top:1px solid rgba(148,163,184,0.15);
    margin-top:10px;
  }
  
  .footer-icon {
    font-size:1rem;
  }
}

/* ================================
   SMALL MOBILE (480px and below)
   ================================ */
@media(max-width:480px) {
  body {
    padding:12px;
    padding-top:24px;
  }
  
  .logo-mark-wrapper {
    width:100px;
    height:100px;
  }
  
  .logo-img {
    width:85px;
    height:85px;
  }
  
  .hero-heading {
    font-size:1.5rem;
  }
  
  .brand-name {
    font-size:2rem;
  }
  
  .hero-subtitle-static {
    font-size:0.65rem;
  }
  
  .hero-tagline {
    font-size:0.9rem;
  }
  
  .btn {
    padding:12px 20px;
    font-size:0.9rem;
  }
  
  .mobile-feature-card {
    padding:16px;
  }
  
  .pill {
    padding:14px 12px!important;
  }
  
  .download-heading {
    font-size:1.25rem;
  }
  
  .download-sub {
    font-size:0.9rem;
  }
}

/* Mobile-only app download section (hidden on desktop) */
.app-download-mobile {
  display:none;
}

.site-footer { display:none; }
