@import url("/assets/fonts/noto-sans-bengali.css");
@keyframes skyDrift {
  0% {
    transform: scale(1.02) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1.5%, -1%, 0);
  }
}
@keyframes ringPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.7;
  }
  70%,
  to {
    transform: scale(1.12);
    opacity: 0;
  }
}
@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.5;
  }
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}
@font-face {
  font-family: "Noto Sans Bengali", "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url(/assets/fonts/outfit-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Noto Sans Bengali", "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url(/assets/fonts/outfit-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: dark;
  --primary-blue: #001a3d;
  --secondary-blue: #002d6b;
  --accent-gold: #ffcc29;
  --accent-orange: #ff7e00;
  --accent-red: #e60000;
  --text-white: #ffffff;
  --text-gray: #cbd5e0;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --font: "Noto Sans Bengali", "Outfit", system-ui, sans-serif;
  --text: var(--text-white);
  --muted: var(--text-gray);
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
}
body,
html {
  margin: 0;
}
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--accent-gold);
  color: #001a3d;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}
body {
  min-height: 100dvh;
  overflow-x: hidden;
  color: var(--text-white);
  font-family: var(--font);
  line-height: 1.6;
  background-color: var(--primary-blue);
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 45, 107, 0.4) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 126, 0, 0.1) 0,
      transparent 40%
    ),
    url(/assets/bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent-gold);
}
a:hover {
  color: #fff;
}
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sky__photo {
  position: absolute;
  inset: -4%;
  background: url(/assets/bg.webp) center/cover no-repeat;
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
  animation: skyDrift 18s ease-in-out infinite alternate;
}
.sky__wash {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 45, 107, 0.45) 0,
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 126, 0, 0.14) 0,
      transparent 45%
    ),
    linear-gradient(
      180deg,
      rgba(0, 26, 61, 0.15) 0,
      rgba(0, 26, 61, 0.55) 48%,
      rgba(0, 26, 61, 0.92) 100%
    );
}
.confetti,
.sky__wash {
  position: absolute;
  inset: 0;
}
.confetti span {
  position: absolute;
  top: -12px;
  width: 7px;
  height: 11px;
  border-radius: 2px;
  opacity: 0.5;
  animation: fall linear infinite;
}
.confetti span:nth-child(1) {
  left: 8%;
  background: var(--accent-orange);
  animation-duration: 9s;
}
.confetti span:nth-child(2) {
  left: 22%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation-duration: 11s;
  animation-delay: 1.2s;
}
.confetti span:nth-child(3) {
  left: 38%;
  background: var(--accent-red);
  animation-duration: 8.5s;
  animation-delay: 2.1s;
}
.confetti span:nth-child(4) {
  left: 55%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation-duration: 12s;
  animation-delay: 0.6s;
}
.confetti span:nth-child(5) {
  left: 68%;
  background: var(--accent-gold);
  animation-duration: 10s;
  animation-delay: 3s;
}
.confetti span:nth-child(6) {
  left: 82%;
  background: var(--secondary-blue);
  animation-duration: 9.5s;
  animation-delay: 1.7s;
}
.confetti span:nth-child(7) {
  left: 92%;
  width: 5px;
  height: 8px;
  background: var(--accent-orange);
  animation-duration: 13s;
  animation-delay: 2.8s;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 26, 61, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(100% - 2rem, 1040px);
  margin: 0 auto;
  padding: 0.7rem 0;
  flex-wrap: nowrap;
  position: relative;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.nav-brand img {
  display: block;
  width: auto;
  height: clamp(40px, 5.8vw, 56px);
  max-width: min(58vw, 280px);
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.bonus h2,
.nav-brand span,
.nav-links a:hover,
.nav-links a[aria-current="page"],
.pix b,
.toc a:hover {
  color: var(--accent-gold);
}
.nav-links,
.nav-panel {
  display: flex;
  justify-content: center;
}
.nav-panel {
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.nav-links {
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav-cta,
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
}
.nav-cta {
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.28);
}
.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-cta,
.nav-cta--desktop {
  display: inline-flex;
}
.nav-panel .nav-cta,
.nav-toggle {
  display: none;
}
.nav-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.page {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
  padding: 2rem 0 max(2.5rem, env(safe-area-inset-bottom));
}
.hero,
.operator {
  align-items: center;
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  text-align: center;
  padding: 1.15rem 0 1.75rem;
}
.operator {
  display: inline-flex;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.operator strong {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 800;
}
.operator em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}
.logo {
  display: block;
  width: min(82vw, 420px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}
.hero h1,
.page-hero h1 {
  margin: 0.85rem 0 0.35rem;
  font-size: clamp(1.65rem, 6.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.08;
  text-transform: uppercase;
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.lead {
  max-width: 34rem;
  margin: 0 auto 1.35rem;
  color: var(--text-gray);
  font-size: 1.02rem;
}
.cta-wrap {
  position: relative;
  display: inline-flex;
  isolation: isolate;
}
.cta-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50px;
  border: 2px solid rgba(255, 126, 0, 0.28);
  animation: ringPulse 2.2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
.cta,
.stat strong {
  color: #fff;
  font-weight: 800;
}
.cta,
.stat span,
.toc a {
  text-transform: uppercase;
}
.cta {
  display: inline-flex;
  min-width: min(100%, 360px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 0, 0, 0.5);
  color: #fff;
}
.pix {
  margin: 0.85rem 0 0;
  color: rgba(203, 213, 224, 0.78);
  font-size: 0.84rem;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(100%, 640px);
  margin: 1.35rem auto 0;
}
.stat {
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}
.bonus h2,
.stat span,
.toc a {
  font-weight: 700;
}
.stat span {
  display: block;
  color: rgba(203, 213, 224, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.stat strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
}
.toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: min(100%, 620px);
  margin: 1.25rem auto 0;
}
.toc a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.toc a:hover {
  border-color: rgba(255, 204, 41, 0.42);
}
.bonus {
  width: min(100%, 720px);
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
}
.bonus h2 {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bonus-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.bonus-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.bonus-list li:last-child {
  border-bottom: 0;
}
.bonus-list span {
  color: rgba(203, 213, 224, 0.55);
}
.bonus-list strong {
  color: rgba(255, 255, 255, 0.88);
  text-align: right;
}
.terms {
  margin: 0.75rem 0 0;
  color: rgba(203, 213, 224, 0.45);
  font-size: 0.72rem;
}
.apk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  margin: 1.1rem auto 0;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 204, 41, 0.45);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 204, 41, 0.16),
    rgba(255, 126, 0, 0.1)
  );
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.apk::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  background: var(--accent-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85a.637.637 0 0 0-.83.22l-1.88 3.24a11.43 11.43 0 0 0-8.94 0L5.65 5.67a.643.643 0 0 0-.87-.2c-.28.18-.37.54-.22.83L6.4 9.48A10.81 10.81 0 0 0 1 18h22a10.81 10.81 0 0 0-5.4-8.52M7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85a.637.637 0 0 0-.83.22l-1.88 3.24a11.43 11.43 0 0 0-8.94 0L5.65 5.67a.643.643 0 0 0-.87-.2c-.28.18-.37.54-.22.83L6.4 9.48A10.81 10.81 0 0 0 1 18h22a10.81 10.81 0 0 0-5.4-8.52M7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.apk:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  background: linear-gradient(
    180deg,
    rgba(255, 204, 41, 0.28),
    rgba(255, 126, 0, 0.18)
  );
  color: #fff;
}
.content {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: left;
}
.content section {
  scroll-margin-top: 5rem;
  margin: 0 0 2.75rem;
}
.content .eyebrow,
.content h2,
.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
}
.content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  letter-spacing: 0.5px;
  color: #fff;
}
.content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.content li,
.content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.65;
}
.content p {
  margin: 0 0 1rem;
}
.content ol,
.content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.content .eyebrow,
.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent-gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.content .cta-inline {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0.85rem auto 1.15rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}
.feature-list,
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.25rem 0 1.35rem;
}
.checklist,
.feature-card,
.info-card,
.offer-panel {
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}
.info-card {
  padding: 0.85rem 0.95rem;
}
.info-card span {
  display: block;
  color: rgba(203, 213, 224, 0.6);
  font-size: 0.78rem;
  line-height: 1.35;
}
.info-card strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.35;
}
.checklist,
.feature-card,
.offer-panel {
  padding: 1rem 1.1rem;
}
.checklist h3,
.feature-card h3,
.offer-panel h3,
.step-list h3 {
  margin-top: 0;
}
.step-list {
  padding-left: 0;
  list-style: none;
}
.step-list li {
  margin: 0 0 0.85rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 10, 25, 0.28);
}
.checklist p:last-child,
.feature-card p:last-child,
.offer-panel p:last-child,
.step-list p:last-child {
  margin-bottom: 0;
}
.apk--content {
  margin: 0.85rem auto 0;
}
.hero .apk,
.hero .cta-wrap,
.offer-panel .cta-inline {
  margin-left: auto;
  margin-right: auto;
}
.compare-table {
  display: grid;
  overflow: hidden;
  margin: 1.25rem 0 0;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}
.compare-row {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1.22fr;
}
.compare-row + .compare-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-row span {
  padding: 0.75rem 0.85rem;
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.45;
}
.compare-row span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-head {
  background: rgba(255, 204, 41, 0.08);
}
.compare-head span {
  color: #fff;
  font-weight: 800;
}
.page-hero {
  text-align: left;
  margin-bottom: 1.75rem;
  padding-top: 0.5rem;
}
.page-hero .lead {
  margin: 0;
  max-width: none;
}
.content-media img,
.faq-item {
  border: 1px solid var(--glass-border);
}
.faq-item {
  margin: 0 0 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}
.faq-item h2,
.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  color: #fff;
}
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 3.75rem 0 max(3.5rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--glass-border);
  color: rgba(203, 213, 224, 0.55);
  font-size: 0.78rem;
  text-align: center;
  background-color: var(--primary-blue);
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 26, 61, 0.72) 0,
      rgba(0, 26, 61, 0.28) 42%,
      rgba(0, 26, 61, 0.55) 100%
    ),
    url(/assets/footer-mountains.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%auto;
}
.footer-inner {
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.9rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.footer-nav a:hover {
  color: var(--accent-gold);
}
.content-media figcaption,
.footer-note {
  color: rgba(203, 213, 224, 0.55);
  text-align: center;
}
.footer-note {
  margin: 0;
  max-width: 42rem;
}
html[dir="rtl"] html[dir="rtl"] .content ol,
html[dir="rtl"] .content ul {
  padding-left: 0;
  padding-right: 1.25rem;
}
.content-media {
  margin: 1.35rem 0 1.5rem;
}
.content-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: rgba(0, 10, 25, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}
.content-media figcaption {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
}
.asset-list {
  color: var(--text-gray);
}
.asset-list li {
  margin-bottom: 0.55rem;
}
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0.65rem 1rem max(0.85rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(0, 16, 38, 0.92) 35%);
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(230, 0, 0, 0.45);
}
.sticky-cta__btn:hover {
  color: #fff;
}
body.nav-open {
  overflow: hidden;
}
body:has(.sticky-cta.is-visible) .site-footer {
  padding-bottom: 5.5rem;
}
@media (max-width: 900px) {
  .nav-cta--desktop {
    display: none;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }
  .nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(0, 16, 38, 0.97);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
  }
  body.nav-open .nav-panel {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 0.7rem 0.55rem;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
  }
  .nav-panel .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.25rem;
    min-height: 46px;
    justify-content: center;
  }
  .apk,
  .cta,
  .cta-inline {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .compare-row,
  .feature-list,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .compare-row span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .compare-head {
    display: none;
  }
}
@media (max-width: 520px) {
  .page {
    width: min(100% - 1.25rem, 920px);
  }
  .toc {
    justify-content: flex-start;
  }
  .bonus-list li {
    flex-direction: column;
  }
  .bonus-list strong {
    text-align: left;
  }
  .cta {
    min-width: 0;
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    animation: none !important;
    transition: none !important;
  }
  .sky__photo {
    transform: none;
  }
}
.hero-visual {
  display: grid;
  place-items: center;
  width: min(96vw, 680px);
  animation: planeIn 0.9s 0.08s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  display: flex !important;
  justify-content: center;
  width: 100%;
  margin: 0.25rem 0 0.55rem !important;
  position: static !important;
  animation: none !important;
  isolation: auto !important;
}
.hero-visual::before {
  display: none !important;
  content: none !important;
}
.hero-art,
.hero-banner,
.hero-plane {
  display: block !important;
  width: min(72vw, 360px) !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  filter: none !important;
  animation: none !important;
}
