:root {
  --bg-1: #020816;
  --bg-2: #06142a;
  --bg-3: #0a1f47;
  --hero-blue: #1d5cff;
  --hero-cyan: #4ebdff;
  --hero-green: #88ef5a;
  --hero-green-2: #57d857;
  --hero-text: #f5f8ff;
  --hero-muted: #d5ddf0;
  --soft: #9fb1d8;
  --card-border: rgba(255, 255, 255, .08);
  --card-bg: rgba(16, 28, 57, .72);
  --shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--hero-text);
  background: linear-gradient(180deg, #081020 0%, #07101d 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1240px, calc(100% - 44px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(4, 10, 24, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8ff8c, #57d857);
  color: #0b1631;
  font-weight: 900;
  font-size: 28px;
  box-shadow: 0 16px 36px rgba(136,239,90,.24);
  border: 4px solid rgba(255,255,255,.08);
}
.brand-text strong {
  display: block;
  font-size: 26px;
  letter-spacing: -.6px;
}
.brand-text strong span,
.footer-grid strong span { color: var(--hero-green); }
.brand-text small {
  display: block;
  color: #b9c6e4;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
  font-weight: 800;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-panel a {
  position: relative;
  font-size: 15px;
  font-weight: 850;
  padding: 12px 0;
}
.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--hero-green);
  transition: .25s;
}
.nav-panel a:hover::after,
.nav-panel a.active::after { width: 100%; }

.nav-cta {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #9cef5a, #72df4f);
  color: #06111b;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(128, 234, 88, .24);
}
.nav-cta strong {
  display: block;
  font-size: 14px;
  line-height: 1;
}
.nav-cta small {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  opacity: .88;
}
.play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(6,17,27,.14);
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  padding: 34px 0 120px;
  background:
    radial-gradient(circle at 70% 32%, rgba(72, 255, 176, .18), transparent 18%),
    radial-gradient(circle at 86% 26%, rgba(37, 115, 255, .16), transparent 22%),
    radial-gradient(circle at 80% 76%, rgba(30, 88, 255, .26), transparent 22%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 52%, #04153d 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02), transparent 12%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.08) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 28px;
  align-items: center;
  min-height: 610px;
}
.eyebrow {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(136,239,90,.08);
  color: var(--hero-green);
  border: 1px solid rgba(136,239,90,.12);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 20px;
}
.eyebrow.dark {
  background: transparent;
  border: 0;
  padding: 0;
  color: #48b32f;
}
.hero-copy h1 {
  font-size: clamp(52px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -3px;
  text-wrap: balance;
}
.green-line {
  display: block;
  color: var(--hero-green);
}
.blue-line {
  display: block;
  color: #3e79ff;
}
.hero-copy h1 .green-line,
.hero-copy h1 .blue-line {
  position: relative;
}
.hero-copy h1 .green-line::after,
.hero-copy h1 .blue-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 60%;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .85;
}
.hero-text {
  max-width: 640px;
  margin: 22px 0 18px;
  color: var(--hero-muted);
  font-size: 19px;
  line-height: 1.6;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.hero-proof span {
  color: #eef3ff;
  font-size: 15px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #07131f;
  background: linear-gradient(135deg, #9cef5a, #72df4f);
  box-shadow: 0 18px 40px rgba(136,239,90,.24);
}
.btn-outline {
  color: #f4f8ff;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(136,239,90,.45);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}
.phone-stage {
  position: absolute;
  left: 48%;
  top: 50%;
  transform: translate(-40%, -50%) rotate(8deg);
  z-index: 5;
}
.phone-frame {
  width: min(320px, 74vw);
  overflow: hidden;
  border-radius: 44px;
  border: 10px solid #131a27;
  background: #131a27;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #131a27;
  z-index: 3;
}
.phone-frame img { width: 100%; }

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.circle-main {
  width: 380px;
  height: 380px;
  right: 120px;
  top: 140px;
  background: radial-gradient(circle, rgba(38,255,177,.36), rgba(38,255,177,.10) 40%, transparent 68%);
  filter: blur(2px);
}
.circle-blue {
  width: 560px;
  height: 560px;
  right: -80px;
  top: 90px;
  border: 2px solid rgba(53, 124, 255, .22);
  box-shadow: 0 0 120px rgba(53, 124, 255, .16);
}
.circle-dash {
  width: 320px;
  height: 320px;
  left: 60px;
  top: 180px;
  border: 2px dashed rgba(58, 218, 255, .22);
}

.floating-icon {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 26px;
  box-shadow: var(--shadow);
  z-index: 4;
  font-weight: 900;
}
.icon-check {
  top: 94px;
  left: 160px;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #35d776, #8bf15b);
  color: white;
  border-radius: 50%;
  font-size: 40px;
}
.icon-chart {
  top: 214px;
  left: 94px;
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, #4ea8ff, #2b62ff);
  font-size: 34px;
}
.icon-money {
  left: 110px;
  bottom: 108px;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #ffcc3d, #ff9f1a);
  color: white;
  border-radius: 50%;
  font-size: 38px;
}

.side-info {
  position: absolute;
  right: 10px;
  width: 230px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(15, 33, 74, .70);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  z-index: 4;
  backdrop-filter: blur(10px);
}
.side-info strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}
.side-info span {
  color: var(--hero-muted);
  line-height: 1.45;
  font-size: 15px;
}
.info-top { top: 80px; }
.info-middle { top: 250px; }
.info-bottom { top: 420px; }

.hero-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -12px;
  padding: 0 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 20, 43, .96), rgba(7, 16, 34, .98));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}
.hero-band article {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-band article:last-child { border-right: 0; }
.band-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 26px;
  flex: 0 0 54px;
}
.band-icon.green { background: linear-gradient(135deg, #8bef5c, #39d770); }
.band-icon.blue { background: linear-gradient(135deg, #69b4ff, #376dff); }
.band-icon.yellow { background: linear-gradient(135deg, #ffd15d, #ff9a1f); }
.band-icon.purple { background: linear-gradient(135deg, #b87cff, #7f59ff); }
.hero-band strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}
.hero-band p {
  color: var(--hero-muted);
  font-size: 15px;
  line-height: 1.45;
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -120px;
  height: 260px;
  background: #f8f9fd;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.section {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.section-light {
  background: #f8f9fd;
  color: #0d1830;
}
.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.section-heading p {
  margin-top: 14px;
  color: #5d6c86;
  font-size: 18px;
  line-height: 1.6;
}
.green-text { color: #41b12a; }
.blue-text { color: #2f72ff; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature-card {
  min-height: 198px;
  padding: 22px 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(11, 25, 55, .06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  text-align: left;
}
.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  color: white;
  font-size: 28px;
}
.feature-icon.green { background: linear-gradient(135deg, #68dc50, #31b44a); }
.feature-icon.blue { background: linear-gradient(135deg, #66a8ff, #2b62ff); }
.feature-icon.purple { background: linear-gradient(135deg, #a66cff, #6a4cff); }
.feature-icon.orange { background: linear-gradient(135deg, #ffbd59, #ff8b1c); }
.feature-icon.cyan { background: linear-gradient(135deg, #63f0dd, #2db6ff); }
.feature-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
  color: #101b33;
}
.feature-card p {
  color: #5b6983;
  line-height: 1.55;
  font-size: 15px;
}

.gallery-section {
  background: linear-gradient(180deg, #f8f9fd 0%, #edf2fb 100%);
  color: #0d1830;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-card {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11, 25, 55, .06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}
.gallery-card img {
  border-radius: 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 25, 55, .08);
}
.gallery-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.gallery-card p {
  color: #5d6c86;
  line-height: 1.55;
  font-size: 15px;
}

.download-section {
  padding: 82px 0;
  background: linear-gradient(135deg, #081020, #091734 55%, #091c44 100%);
}
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 30px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.download-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.download-card p {
  margin-top: 12px;
  color: #d7dff2;
  font-size: 18px;
  line-height: 1.6;
}
.download-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.faq-section {
  background: #f8f9fd;
  color: #0d1830;
}
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  padding: 20px 22px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(11, 25, 55, .06);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
}
.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}
.faq-list p {
  color: #5d6c86;
  line-height: 1.6;
  margin-top: 12px;
}

.site-footer {
  padding: 32px 0;
  background: #040c1c;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #ced7ea;
}
.footer-grid strong {
  color: #fff;
  font-size: 24px;
}
.footer-grid p {
  margin-top: 8px;
}
.footer-grid a {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.policy-page {
  padding: 70px 0 100px;
  max-width: 880px;
  color: #f1f5ff;
}
.policy-page h1 { font-size: clamp(38px, 6vw, 62px); margin: 20px 0; }
.policy-page h2 { margin-top: 32px; }
.policy-page p { color: #c6d2ea; line-height: 1.7; margin-top: 12px; }
.back-link { color: #8bef5c; font-weight: 900; }

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 999;
  transform: translate(-50%, 18px);
  padding: 13px 18px;
  border: 1px solid rgba(148,187,233,.24);
  border-radius: 14px;
  background: rgba(3,10,25,.96);
  color: #f7fbff;
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}
.share-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1240px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .nav-cta { display: none; }
  .hero-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .hero-band { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .hero-band article:nth-child(2n) { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1240px); }
  .navbar { min-height: 72px; }
  .brand { min-width: auto; }
  .brand-text small { display: none; }

  .nav-toggle { display: block; }
  .nav-panel {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(4, 10, 24, .98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-panel.open { display: flex; }
  .nav-panel a {
    padding: 14px;
    text-align: center;
  }
  .nav-panel a::after { display: none; }

  .hero {
    padding: 30px 0 110px;
  }
  .hero-grid {
    min-height: auto;
    gap: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(42px, 14vw, 62px);
    letter-spacing: -2px;
  }
  .hero-text { font-size: 18px; }
  .hero-proof {
    gap: 10px;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 500px;
  }
  .phone-stage {
    left: 50%;
    transform: translate(-50%, -50%) rotate(6deg);
  }
  .phone-frame { width: min(260px, 70vw); }
  .side-info {
    position: absolute;
    width: 170px;
    padding: 14px 16px;
    right: 0;
  }
  .side-info strong { font-size: 16px; }
  .side-info span { font-size: 13px; }
  .info-top { top: 44px; }
  .info-middle { top: 190px; }
  .info-bottom { top: 334px; }

  .icon-check, .icon-chart, .icon-money {
    transform: scale(.8);
  }
  .icon-check { left: 14px; top: 70px; }
  .icon-chart { left: 0; top: 188px; }
  .icon-money { left: 16px; bottom: 70px; }

  .hero-band,
  .feature-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .hero-band article:last-child { border-bottom: 0; }

  .section { padding: 76px 0; }
  .download-card, .footer-grid { flex-direction: column; align-items: flex-start; }
}


/* v2.3 - mobile refinements */
@media (max-width: 760px) {
  .site-header { backdrop-filter: blur(12px); }
  .navbar { min-height: 68px; gap: 12px; }
  .brand-mark { width: 46px; height: 46px; font-size: 24px; }
  .brand-text strong { font-size: 22px; }

  .hero {
    padding: 18px 0 28px;
    overflow: hidden;
  }

  .hero-grid {
    gap: 12px;
    align-items: start;
  }

  .hero-copy {
    order: 1;
    padding-top: 2px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: .98;
    letter-spacing: -1.5px;
  }

  .hero-copy h1 .green-line::after,
  .hero-copy h1 .blue-line::after {
    height: 3px;
    bottom: 2px;
    width: 52%;
  }

  .hero-text {
    margin: 16px 0 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-proof {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-proof span {
    font-size: 14px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-visual {
    order: 2;
    min-height: 380px;
    margin-top: 6px;
  }

  .circle-main {
    width: 250px;
    height: 250px;
    right: 34px;
    top: 78px;
  }

  .circle-blue {
    width: 340px;
    height: 340px;
    right: -60px;
    top: 58px;
  }

  .circle-dash {
    width: 190px;
    height: 190px;
    left: 6px;
    top: 132px;
  }

  .phone-stage {
    left: 50%;
    top: 51%;
    transform: translate(-50%, -50%) rotate(6deg);
  }

  .phone-frame {
    width: min(235px, 64vw);
    border-width: 8px;
    border-radius: 34px;
  }

  .phone-frame::before {
    width: 72px;
    height: 18px;
    top: 8px;
  }

  .side-info {
    width: 152px;
    padding: 12px 14px;
    right: 0;
    border-radius: 18px;
  }

  .side-info strong { font-size: 14px; }
  .side-info span { font-size: 12px; line-height: 1.35; }
  .info-top { top: 28px; }
  .info-middle { top: 148px; }
  .info-bottom { top: 266px; }

  .floating-icon {
    transform: scale(.72);
  }

  .icon-check { left: 0; top: 46px; }
  .icon-chart { left: -8px; top: 148px; }
  .icon-money { left: 2px; bottom: 30px; }

  .hero-band {
    margin-top: 10px;
    padding: 0 14px;
    border-radius: 22px;
  }

  .hero-band article {
    padding: 16px 8px;
    gap: 12px;
  }

  .band-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
    font-size: 21px;
  }

  .hero-band strong { font-size: 16px; }
  .hero-band p { font-size: 13px; }

  .hero-wave {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p {
    font-size: 16px;
    line-height: 1.5;
  }

  .feature-card,
  .gallery-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card h3,
  .gallery-card h3 {
    font-size: 19px;
  }

  .feature-card p,
  .gallery-card p {
    font-size: 14px;
  }

  .download-section {
    padding: 56px 0;
  }

  .download-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .download-card h2 {
    font-size: 30px;
  }

  .download-card p {
    font-size: 16px;
  }

  .download-actions .btn {
    width: 100%;
  }

  .faq-list details {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .faq-list summary {
    font-size: 16px;
  }
}


/* v2.4 - compact feature cards on mobile */
@media (max-width: 760px) {
  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: center;
    column-gap: 14px;
    row-gap: 4px;
    padding: 16px 16px;
    border-radius: 18px;
  }

  .feature-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 14px;
    font-size: 22px;
    align-self: start;
  }

  .feature-card h3 {
    grid-area: title;
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
  }

  .feature-card p {
    grid-area: text;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }
}


.hero-mini-note {
  margin-top: 14px;
  color: #c9d5ee;
  font-size: 15px;
  line-height: 1.5;
  max-width: 560px;
}

.conversion-section {
  background: linear-gradient(180deg, #f8f9fd 0%, #f1f5fb 100%);
  color: #0d1830;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.conversion-card {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(11, 25, 55, .06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.conversion-card strong {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
  color: #101b33;
}

.conversion-card p {
  color: #5d6c86;
  line-height: 1.6;
  font-size: 15px;
}

.conversion-cta {
  margin-top: 22px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #081020, #0b1b3e 60%, #0d2557 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.conversion-cta strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.conversion-cta p {
  color: #d7dff2;
  line-height: 1.55;
}

.download-bullets {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #d7dff2;
  font-size: 15px;
}

.mobile-install-bar {
  display: none;
}

@media (max-width: 1100px) {
  .conversion-grid {
    grid-template-columns: 1fr;
  }
  .conversion-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-mini-note {
    font-size: 14px;
    margin-top: 10px;
  }

  .conversion-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .conversion-card strong {
    font-size: 18px;
  }

  .conversion-card p {
    font-size: 14px;
  }

  .conversion-cta {
    margin-top: 16px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .conversion-cta strong {
    font-size: 20px;
  }

  .conversion-cta .btn {
    width: 100%;
  }

  .download-bullets {
    font-size: 14px;
    gap: 6px;
  }

  .mobile-install-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(4, 10, 24, .92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .mobile-install-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9cef5a, #72df4f);
    color: #06111b;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(136,239,90,.24);
  }

  body {
    padding-bottom: 78px;
  }
}


/* v2.6 - UX conversion refinements */
.hero-mini-note {
  margin-top: 0;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #d6e0f2;
  font-size: 14px;
  line-height: 1.5;
  max-width: 560px;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.conversion-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(11, 25, 55, .06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.conversion-badge {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #8bef5c, #39d770);
  color: #081120;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(57,215,112,.18);
}

.conversion-content strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #101b33;
  line-height: 1.25;
}

.conversion-content p {
  color: #5d6c86;
  line-height: 1.6;
  font-size: 15px;
}

.conversion-cta {
  margin-top: 22px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #081020, #0b1b3e 60%, #0d2557 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.conversion-cta strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.conversion-cta p {
  color: #d7dff2;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .conversion-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-mini-note {
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 12px;
  }

  .conversion-section .section-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.1;
  }

  .conversion-section .section-heading p {
    font-size: 15px;
  }

  .conversion-grid {
    gap: 12px;
  }

  .conversion-card {
    gap: 12px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .conversion-badge {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
    font-size: 15px;
  }

  .conversion-content strong {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .conversion-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .conversion-cta {
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .conversion-cta strong {
    font-size: 20px;
  }

  .conversion-cta p {
    font-size: 14px;
  }

  .conversion-cta .btn {
    width: 100%;
  }
}


/* v2.7 - play store live + premium CTA buttons */
.nav-cta,
.btn-primary,
.mobile-install-btn {
  background: linear-gradient(135deg, #f7fbff 0%, #dceeff 22%, #79bbff 62%, #3a7dff 100%);
  color: #071120;
  box-shadow: 0 18px 42px rgba(58, 125, 255, .22);
  border: 1px solid rgba(255,255,255,.55);
}

.nav-cta:hover,
.btn-primary:hover,
.mobile-install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(58, 125, 255, .28);
}

.nav-cta small {
  opacity: .9;
}

.play-icon {
  background: rgba(7,17,32,.10);
  color: #103c8d;
}

.mobile-install-btn {
  min-height: 54px;
}

.download-actions .btn-primary,
.conversion-cta .btn-primary,
.hero-actions .btn-primary {
  font-weight: 900;
}

@media (max-width: 760px) {
  .nav-cta,
  .btn-primary,
  .mobile-install-btn {
    box-shadow: 0 14px 32px rgba(58, 125, 255, .22);
  }
}

/* v2.8 - SEO content hub */
.seo-hub-section {
  background: linear-gradient(180deg, #f8f9fd 0%, #eef4ff 100%);
  color: #0d1830;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-card {
  min-height: 280px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(11, 25, 55, .06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.seo-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #eaf4ff, #d7eaff);
  font-size: 28px;
}

.seo-card h3 {
  color: #101b33;
  font-size: 22px;
  margin-bottom: 10px;
}

.seo-card p {
  color: #5d6c86;
  line-height: 1.6;
  margin-bottom: 18px;
}

.seo-link {
  display: inline-flex;
  font-weight: 900;
  color: #245fdf;
}

.guide-page {
  background: linear-gradient(180deg, #071020 0%, #0b1530 320px, #f8f9fd 320px, #f8f9fd 100%);
  color: #0d1830;
}

.guide-hero {
  padding: 70px 0 42px;
  color: #f5f8ff;
}

.guide-hero .eyebrow {
  margin-bottom: 18px;
}

.guide-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.guide-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: #d5ddf0;
  font-size: 19px;
  line-height: 1.6;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  padding: 36px 0 80px;
}

.guide-article,
.guide-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(11, 25, 55, .06);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.guide-article {
  padding: 34px;
}

.guide-article h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 31px;
  letter-spacing: -.8px;
}

.guide-article h2:first-child {
  margin-top: 0;
}

.guide-article h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 22px;
}

.guide-article p,
.guide-article li {
  color: #4f5f79;
  line-height: 1.72;
  font-size: 17px;
}

.guide-article ul,
.guide-article ol {
  padding-left: 22px;
  margin: 12px 0 20px;
}

.guide-callout {
  margin: 26px 0;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #081020, #0b1b3e 60%, #0d2557 100%);
  color: #f5f8ff;
}

.guide-callout p {
  color: #d5ddf0;
}

.guide-callout .btn {
  margin-top: 16px;
}

.guide-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.guide-sidebar-card {
  padding: 22px;
}

.guide-sidebar-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.guide-sidebar-card p {
  color: #5d6c86;
  line-height: 1.55;
  margin-bottom: 14px;
}

.guide-nav-list {
  display: grid;
  gap: 10px;
}

.guide-nav-list a {
  color: #245fdf;
  font-weight: 850;
}

@media (max-width: 980px) {
  .seo-card-grid,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .seo-card {
    min-height: 0;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .seo-card span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 24px;
  }

  .guide-page {
    background: linear-gradient(180deg, #071020 0%, #0b1530 260px, #f8f9fd 260px, #f8f9fd 100%);
  }

  .guide-hero {
    padding: 46px 0 28px;
  }

  .guide-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1.2px;
  }

  .guide-hero p {
    font-size: 16px;
  }

  .guide-layout {
    padding: 24px 0 58px;
    gap: 16px;
  }

  .guide-article {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .guide-article h2 {
    font-size: 25px;
    margin-top: 28px;
  }

  .guide-article p,
  .guide-article li {
    font-size: 16px;
  }
}


/* v2.9 - sem PWA + botão compartilhar */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-share {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  color: #f5f8ff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  transition: .25s;
}

.nav-share:hover,
.nav-share:focus-visible,
.btn-share:hover,
.btn-share:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(142, 202, 255, .38);
  background: rgba(98, 167, 255, .10);
}

.btn-share {
  color: #f4f8ff;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(142, 202, 255, .24);
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 999;
  transform: translate(-50%, 18px);
  padding: 13px 18px;
  border: 1px solid rgba(148,187,233,.24);
  border-radius: 14px;
  background: rgba(3,10,25,.96);
  color: #f7fbff;
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.share-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1100px) {
  .nav-actions .nav-share {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-actions .btn-share {
    width: 100%;
  }
}
