:root {
  --bg: #050610;
  --bg2: #080A16;
  --bg3: #101427;
  --ink: #F7F7FF;
  --muted: rgba(247,247,255,.74);
  --soft: rgba(247,247,255,.54);
  --line: rgba(255,255,255,.10);
  --card: rgba(15,18,34,.78);
  --card2: rgba(22,25,45,.86);
  --purple: #6C63FF;
  --violet: #8B5CF6;
  --cyan: #7CEBEE;
  --gold: #FFC857;
  --pink: #D94C9A;
  --green: #63E6BE;
  --shadow: 0 30px 90px rgba(0,0,0,.58);
  --radius: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% -8%, rgba(108,99,255,.19), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(124,235,238,.08), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(217,76,154,.08), transparent 38%),
    linear-gradient(135deg, #050610 0%, #080A16 36%, #101427 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .30;
  mask-image: radial-gradient(circle at 50% 18%, black 0%, transparent 80%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page, main, footer { position: relative; z-index: 1; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5,6,16,.80);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(124,235,238,.14);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.navlinks a:hover { color: #fff; }

.nav-cta {
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4D46D8, #2563EB);
  box-shadow: 0 16px 40px rgba(76,70,216,.26);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px;
}

.hero {
  padding-top: 68px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.kicker, .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.badge {
  color: rgba(255,255,255,.78);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(124,235,238,.82);
}

h1 {
  margin: 22px 0 20px;
  font-size: clamp(45px, 7vw, 78px);
  line-height: .96;
  letter-spacing: -.075em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #FFFFFF 0%, #D8D6FF 42%, #BDF8F8 78%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(18px, 2.05vw, 22px);
  line-height: 1.58;
  margin: 0;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 58px;
  padding: 13px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.93);
  color: #050610;
  font-weight: 950;
  line-height: 1.08;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
  transition: transform .18s ease, box-shadow .18s ease;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0,0,0,.48);
}

.store-btn.dark {
  color: #fff;
  background: linear-gradient(90deg, #4D46D8, #2563EB);
}

.store-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0,0,0,.08);
  font-size: 19px;
}

.store-btn.dark .store-icon { background: rgba(255,255,255,.12); }

.hero-banner, .feature-shot {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}

.hero-banner {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.hero-banner img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(.90) contrast(1.04) brightness(.78);
}

.hero-banner::after, .feature-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 -90px 120px rgba(0,0,0,.20);
}

.mini-note {
  margin-top: 15px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.trust, .grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.trust {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.trust-item, .mini-card {
  padding: 17px;
  border-radius: 20px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.085);
  font-weight: 800;
  font-size: 14px;
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.067em;
}

.section-lead {
  margin: 18px 0 0;
  max-width: 880px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.028)),
    var(--card);
  border: 1px solid rgba(255,255,255,.095);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}

.card.large { padding: 34px; }

.card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  letter-spacing: -.04em;
}

.card p, .card li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15.5px;
}

.card p { margin: 0; }

.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(108,99,255,.24), rgba(124,235,238,.10));
  border: 1px solid rgba(255,255,255,.12);
}

.showcase {
  display: grid;
  gap: 48px;
  margin-top: 38px;
}

.feature {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 28px;
  align-items: center;
}

.feature:nth-child(even) {
  grid-template-columns: .82fr 1fr;
}

.feature:nth-child(even) .feature-copy { order: 2; }
.feature:nth-child(even) .feature-shot { order: 1; }

.feature-copy {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
}

.feature-copy h3 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.03;
  letter-spacing: -.06em;
}

.feature-copy p {
  color: var(--muted);
  line-height: 1.66;
  font-size: 17px;
  margin: 0 0 14px;
}

.feature-shot img {
  width: 100%;
  min-height: 315px;
  object-fit: cover;
  filter: brightness(.78) saturate(.90) contrast(1.04);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(124,235,238,.12);
  border: 1px solid rgba(124,235,238,.22);
  color: #DFFFFF;
  font-weight: 850;
  font-size: 13px;
}

.chip.purple {
  background: rgba(108,99,255,.16);
  border-color: rgba(108,99,255,.28);
  color: #E4E1FF;
}

.chip.gold {
  background: rgba(255,200,87,.15);
  border-color: rgba(255,200,87,.25);
  color: #FFE6A5;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.085);
}

.step::before {
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #4D46D8, #2563EB);
  font-weight: 950;
}

.step b {
  display: block;
  margin-bottom: 5px;
}

.step span {
  display: block;
  color: var(--muted);
  line-height: 1.52;
  font-size: 14.5px;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 24px;
}

.comparison th, .comparison td {
  border: 1px solid rgba(255,255,255,.09);
  padding: 16px;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.55;
}

.comparison th {
  color: #fff;
  text-align: left;
  background: rgba(255,255,255,.07);
}

.comparison td:first-child {
  color: #fff;
  font-weight: 850;
  width: 25%;
}

.premium {
  border-radius: 42px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(108,99,255,.25), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(124,235,238,.10), transparent 32%),
    linear-gradient(135deg, rgba(17,21,42,.96), rgba(7,8,18,.96));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
}

.premium-inner {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 32px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  color: var(--muted);
  display: flex;
  gap: 10px;
  line-height: 1.45;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 950;
}

.price-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
}

.trial {
  font-size: 30px;
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -.052em;
  margin-bottom: 10px;
}

.legal, .small {
  margin-top: 17px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.6;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

details {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.085);
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.doc {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 22px 96px;
}

.doc h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.doc h2 {
  margin: 44px 0 12px;
  font-size: 30px;
  letter-spacing: -.045em;
}

.doc h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.doc p, .doc li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.doc ul, .doc ol {
  padding-left: 22px;
}

.doc .card {
  margin: 22px 0;
}

.notice {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,200,87,.10);
  border: 1px solid rgba(255,200,87,.22);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.support-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(108,99,255,.16), rgba(124,235,238,.07));
  border: 1px solid rgba(255,255,255,.10);
}

.support-box p {
  color: var(--muted);
  margin: 7px 0 0;
  line-height: 1.5;
}

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255,255,255,.78);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .premium-inner,
  .feature,
  .feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(even) .feature-copy,
  .feature:nth-child(even) .feature-shot {
    order: initial;
  }

  .grid-4, .grid-3, .grid-2, .trust {
    grid-template-columns: 1fr 1fr;
  }

  .hero-banner {
    transform: none;
  }

  .navlinks a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 640px) {
  .section, .doc {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero { padding-top: 50px; }

  .nav { padding: 13px 16px; }

  .brand span { font-size: 18px; }

  h1 { font-size: 46px; }

  .lead { font-size: 17px; }

  .store-btn { width: 100%; }

  .grid-4, .grid-3, .grid-2, .trust {
    grid-template-columns: 1fr;
  }

  .premium, .feature-copy, .card.large {
    padding: 25px;
  }

  .hero-banner img, .feature-shot img {
    min-height: 240px;
  }

  .support-box, .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* =========================================================
   MOBILE RESPONSIVE HARDENING
   Prevent horizontal scroll / overflowing text on phones
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  min-width: 0;
}

img,
video,
svg,
canvas {
  max-width: 100%;
}

.page,
main,
section,
header,
footer,
.nav,
.section,
.doc,
.hero,
.split,
.feature,
.premium-inner,
.grid,
.trust,
.support-box,
.footer-inner {
  max-width: 100%;
}

h1,
h2,
h3,
p,
li,
summary,
.lead,
.section-title,
.section-lead,
.feature-copy h3,
.card h3,
.trial,
.store-btn,
.navlinks,
.footer-links,
.policy,
.notice {
  overflow-wrap: anywhere;
  word-break: normal;
}

.store-btn span,
.support-box a,
.footer-links a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-banner,
.feature-shot,
.card,
.premium,
.price-card,
.feature-copy,
.support-box,
.notice,
details {
  max-width: 100%;
}

/* The old mobile table behavior could create horizontal scroll.
   On phones we convert the comparison table into stacked cards. */
@media (max-width: 760px) {
  .comparison {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    border-collapse: separate;
  }

  .comparison thead {
    display: none;
  }

  .comparison tbody,
  .comparison tr,
  .comparison td {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .comparison tr {
    margin-bottom: 16px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
  }

  .comparison td {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 14px 16px;
  }

  .comparison td:last-child {
    border-bottom: none;
  }

  .comparison td:first-child {
    width: 100%;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 900;
  }
}

/* Phone layout */
@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .nav {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
  }

  .brand span {
    min-width: 0;
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navlinks {
    flex: 0 0 auto;
    gap: 8px;
  }

  .nav-cta {
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 13px;
  }

  .section,
  .doc {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .split,
  .feature,
  .feature:nth-child(even),
  .premium-inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  h1 {
    font-size: clamp(38px, 12vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .section-title {
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.052em;
  }

  .feature-copy h3 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.05;
  }

  .lead,
  .section-lead {
    font-size: 16.5px;
    line-height: 1.62;
  }

  .store-row {
    width: 100%;
  }

  .store-btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .store-icon {
    flex: 0 0 auto;
  }

  .hero-banner,
  .feature-shot {
    width: 100%;
    max-width: 100%;
    border-radius: 26px;
  }

  .hero-banner img,
  .feature-shot img {
    width: 100%;
    min-height: 220px;
    max-width: 100%;
    object-fit: cover;
  }

  .trust,
  .grid,
  .grid-4,
  .grid-3,
  .grid-2 {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .card,
  .card.large,
  .premium,
  .feature-copy,
  .price-card,
  .support-box {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .chips {
    max-width: 100%;
  }

  .chip {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .support-box .store-btn {
    font-size: 13px;
    line-height: 1.25;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
    gap: 10px 14px;
  }

  .footer-links a {
    max-width: 100%;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .section,
  .doc {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 37px;
  }

  .section-title {
    font-size: 30px;
  }

  .brand span {
    max-width: 112px;
  }

  .nav-cta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .card,
  .card.large,
  .premium,
  .feature-copy,
  .price-card,
  .support-box {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =========================================================
   DESKTOP STICKY NAV + MOBILE SIDE DRAWER MENU
   ========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 70px;
}

.desktop-nav {
  display: flex;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  width: min(86vw, 380px);
  height: 100dvh;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 18% 4%, rgba(108,99,255,.20), transparent 34%),
    linear-gradient(180deg, rgba(12,14,28,.98), rgba(5,6,16,.98));
  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: -30px 0 90px rgba(0,0,0,.62);
  transform: translateX(104%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.03em;
}

.mobile-drawer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(124,235,238,.14);
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-links {
  display: grid;
  gap: 9px;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 16px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  font-weight: 850;
}

.mobile-drawer-links a:hover {
  background: rgba(255,255,255,.075);
  color: #fff;
}

.mobile-drawer-store {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.mobile-drawer-store .store-btn {
  width: 100%;
  min-width: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }
}

@media (min-width: 981px) {
  .mobile-menu-overlay,
  .mobile-drawer,
  .mobile-menu-button {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .mobile-drawer {
    width: 88vw;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mobile-drawer-links a {
    min-height: 46px;
    font-size: 15px;
  }
}

/* =========================================================
   DESKTOP STICKY NAV + MOBILE SIDE DRAWER MENU
   ========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 70px;
}

.desktop-nav {
  display: flex;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  width: min(86vw, 380px);
  height: 100dvh;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 18% 4%, rgba(108,99,255,.20), transparent 34%),
    linear-gradient(180deg, rgba(12,14,28,.98), rgba(5,6,16,.98));
  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: -30px 0 90px rgba(0,0,0,.62);
  transform: translateX(104%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.03em;
}

.mobile-drawer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(124,235,238,.14);
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-links {
  display: grid;
  gap: 9px;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 16px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  font-weight: 850;
}

.mobile-drawer-links a:hover {
  background: rgba(255,255,255,.075);
  color: #fff;
}

.mobile-drawer-store {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.mobile-drawer-store .store-btn {
  width: 100%;
  min-width: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }
}

@media (min-width: 981px) {
  .mobile-menu-overlay,
  .mobile-drawer,
  .mobile-menu-button {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .mobile-drawer {
    width: 88vw;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mobile-drawer-links a {
    min-height: 46px;
    font-size: 15px;
  }
}


/* =========================================================
   INNERSTREAM NAVIGATION FIX
   Desktop sticky nav + mobile side drawer + floating back-to-top
   END INNERSTREAM NAVIGATION FIX
   ========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 70px;
}

.desktop-nav {
  display: flex;
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(14px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  box-shadow: 0 12px 34px rgba(0,0,0,.26);
}

.mobile-menu-button span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: rgba(0,0,0,.56);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  width: min(86vw, 390px);
  height: 100dvh;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 18% 4%, rgba(108,99,255,.22), transparent 34%),
    linear-gradient(180deg, rgba(12,14,28,.985), rgba(5,6,16,.985));
  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: -30px 0 90px rgba(0,0,0,.64);
  transform: translateX(104%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.03em;
}

.mobile-drawer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(124,235,238,.14);
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.065);
  color: rgba(255,255,255,.88);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-links {
  display: grid;
  gap: 9px;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 16px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.048);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 850;
}

.mobile-drawer-links a:hover {
  background: rgba(255,255,255,.078);
  color: #fff;
}

.mobile-drawer-store {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.mobile-drawer-store .store-btn {
  width: 100%;
  min-width: 0;
}

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 1600;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(108,99,255,.92), rgba(37,99,235,.92));
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
  transition: opacity .18s ease, transform .18s ease;
  display: grid;
  place-items: center;
}

.back-to-top span {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex !important;
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    max-width: calc(100% - 62px);
  }
}

@media (min-width: 981px) {
  .mobile-menu-overlay,
  .mobile-drawer,
  .mobile-menu-button {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    right: 16px;
    bottom: 18px;
  }

  .back-to-top span {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .mobile-drawer {
    width: 88vw;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mobile-drawer-links a {
    min-height: 46px;
    font-size: 15px;
  }
}


/* =========================================================
   EU / GDPR COOKIE CONSENT
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2600;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(108,99,255,.22), transparent 36%),
    linear-gradient(135deg, rgba(12,14,28,.98), rgba(5,6,16,.98));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 90px rgba(0,0,0,.58);
  backdrop-filter: blur(18px);
}

.cookie-banner-text strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 5px;
}

.cookie-banner-text p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-size: 14px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-btn {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  cursor: pointer;
  color: #fff;
  font-weight: 850;
  background: rgba(255,255,255,.065);
}

.cookie-btn.primary {
  background: linear-gradient(90deg, #4D46D8, #2563EB);
  border-color: rgba(255,255,255,.16);
}

.cookie-btn.ghost:hover,
.cookie-btn.primary:hover {
  transform: translateY(-1px);
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2700;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(7px);
}

.cookie-modal {
  width: min(680px, 100%);
  max-height: min(760px, 92dvh);
  overflow-y: auto;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(108,99,255,.20), transparent 38%),
    linear-gradient(180deg, rgba(15,18,34,.98), rgba(5,6,16,.98));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 110px rgba(0,0,0,.68);
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-modal-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.04em;
}

.cookie-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.065);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-intro,
.cookie-modal-note {
  color: rgba(255,255,255,.70);
  line-height: 1.62;
  font-size: 14px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.085);
}

.cookie-option strong {
  color: #fff;
}

.cookie-option p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  font-size: 13px;
}

.cookie-option span {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 850;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: #6C63FF;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1 1 100%;
  }

  .cookie-modal {
    padding: 20px;
    border-radius: 24px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-modal-actions .cookie-btn {
    flex: 1 1 100%;
  }
}

/* INNERSTREAM_STORE_ICONS_ONLY_START */
.store-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.store-icon-apple svg {
  width: 22px;
  height: 22px;
}

.store-icon-play svg {
  width: 22px;
  height: 22px;
}
/* INNERSTREAM_STORE_ICONS_ONLY_END */

/* INNERSTREAM_DARK_PAINT_ONLY_START */
/* Prevent white canvas flashes during fast browser repaint.
   This patch does not touch scroll, overflow, menus, blur or layout. */
html {
  background-color: #050610 !important;
}

body {
  background-color: #050610 !important;
}

.page {
  background-color: #050610;
}

main,
header,
footer,
section {
  background-color: transparent;
}
/* INNERSTREAM_DARK_PAINT_ONLY_END */

/* INNERSTREAM_FINAL_RESPONSIVE_IMAGES_980_START */
/*
  Final responsive image rules.
  Important: the layout becomes single-column at 980px, so images must stop
  behaving like cropped desktop banners at the same breakpoint.
*/

/* Picture wrappers */
.hero-banner picture,
.feature-shot picture {
  display: block;
  width: 100%;
}

/* Default desktop/tablet wide layout: visual cards can be cover-filled. */
.hero-banner picture,
.feature-shot picture {
  height: 100%;
}

.hero-banner picture > img,
.feature-shot picture > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Logos must use their real small display size. */
.brand img,
.mobile-drawer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/*
  When layout becomes one column, do NOT crop the embedded promo screenshots.
  This covers phones AND narrow desktop/browser windows.
*/
@media (max-width: 980px) {
  .hero-banner,
  .feature-shot {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .hero-banner picture,
  .feature-shot picture {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }

  .hero-banner > img,
  .feature-shot > img,
  .hero-banner picture > img,
  .feature-shot picture > img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }
}

/* Remove old mobile min-height crop rule by overriding it later in cascade. */
@media (max-width: 640px) {
  .hero-banner img,
  .feature-shot img,
  .hero-banner picture > img,
  .feature-shot picture > img {
    min-height: 0 !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/* INNERSTREAM_FINAL_RESPONSIVE_IMAGES_980_END */
