.app-product-page {
  background: #fff;
  color: #0b1730;
}

.app-product-page .container {
  position: relative;
  z-index: 1;
}

.app-product-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(78, 208, 255, .38), transparent 28rem),
    radial-gradient(circle at 8% 86%, rgba(35, 101, 255, .52), transparent 34rem),
    linear-gradient(135deg, #031b66 0%, #005bea 52%, #007bff 100%);
}

.app-product-hero::before,
.app-product-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.app-product-hero::before {
  top: -18rem;
  right: -12rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, .035), 0 0 0 10rem rgba(255, 255, 255, .025);
}

.app-product-hero::after {
  bottom: -28rem;
  left: -14rem;
  width: 50rem;
  height: 50rem;
  background: rgba(0, 20, 83, .22);
}

.app-product-breadcrumb {
  display: flex;
  gap: .65rem;
  align-items: center;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}

.app-product-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.app-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(31rem, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.app-product-eyebrow {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: .55rem .8rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #d9f6ff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.app-product-eyebrow::before {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #32e1ae;
  box-shadow: 0 0 0 .35rem rgba(50, 225, 174, .16);
  content: "";
}

.app-product-hero h1 {
  max-width: 14ch;
  margin: 1.2rem 0 1.15rem;
  color: #fff;
  font-size: clamp(2.65rem, 5.3vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.app-product-hero h1 span {
  color: #72e5ff;
}

.app-product-lead {
  max-width: 41rem;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.app-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.65rem;
}

.app-product-actions .btn-primary {
  border-color: #fff;
  background: #fff;
  color: #075bc9;
}

.app-product-actions .btn-primary:hover {
  background: #e9f5ff;
}

.app-product-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, .42);
}

.app-product-stores {
  margin-top: 1.25rem;
}

.app-product-stores .store-btn {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(2, 20, 70, .58);
  color: #fff;
  backdrop-filter: blur(10px);
}

.app-product-stores .store-btn:hover {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(2, 20, 70, .8);
}

.app-product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.app-product-proof span {
  display: inline-flex;
  gap: .42rem;
  align-items: center;
}

.app-product-proof span::before {
  color: #54e6ba;
  font-weight: 900;
  content: "✓";
}

.app-product-visual {
  position: relative;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 2rem 5rem rgba(0, 17, 68, .38);
  transform: rotate(.8deg);
  backdrop-filter: blur(14px);
}

.app-product-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

.app-product-visual figcaption {
  position: absolute;
  right: 1.8rem;
  bottom: -1.25rem;
  display: flex;
  gap: .65rem;
  align-items: center;
  max-width: 20rem;
  padding: .85rem 1rem;
  border: 1px solid #d5e7fb;
  border-radius: 1rem;
  background: #fff;
  color: #34445f;
  box-shadow: 0 1rem 2.5rem rgba(3, 27, 102, .2);
  font-size: .86rem;
  line-height: 1.4;
}

.app-product-visual figcaption strong {
  display: block;
  color: #07152e;
}

.app-product-visual figcaption::before {
  display: grid;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: .75rem;
  background: #e8f6ff;
  color: #006aed;
  font-size: 1.15rem;
  content: "↻";
}

.app-value-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.app-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dce9f7;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1.2rem 3rem rgba(17, 65, 122, .12);
}

.app-value-grid div {
  padding: 1.25rem 1.5rem;
}

.app-value-grid div + div {
  border-left: 1px solid #e5eef8;
}

.app-value-grid span {
  display: block;
  margin-bottom: .25rem;
  color: #0672e5;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.app-value-grid strong {
  color: #0b1730;
  font-size: 1rem;
}

.app-anchor-nav {
  position: sticky;
  z-index: 9;
  top: 76px;
  border-bottom: 1px solid #e2eaf4;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.app-anchor-nav .container {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  padding-block: .88rem;
  scrollbar-width: none;
}

.app-anchor-nav a {
  flex: 0 0 auto;
  color: #465975;
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
}

.app-anchor-nav a:hover {
  color: #006aed;
}

.app-product-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.app-product-soft {
  background:
    radial-gradient(circle at 92% 0, rgba(0, 178, 255, .12), transparent 28rem),
    #f4f8fd;
}

.app-product-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.app-product-heading.is-centered {
  margin-inline: auto;
  text-align: center;
}

.app-product-kicker {
  display: block;
  margin-bottom: .65rem;
  color: #006aed;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.app-product-heading h2,
.app-copy h2,
.app-faq-copy h2 {
  margin: 0 0 .85rem;
  color: #07152e;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.app-product-heading p,
.app-copy p,
.app-faq-copy p {
  color: #52627a;
  line-height: 1.72;
}

.app-device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.app-device-card {
  position: relative;
  overflow: hidden;
  min-height: 19rem;
  padding: 1.65rem;
  border: 1px solid #dce8f6;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 .9rem 2.4rem rgba(20, 68, 124, .08);
}

.app-device-card::after {
  position: absolute;
  right: -2.6rem;
  bottom: -2.6rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(0, 106, 237, .07);
  content: "";
}

.app-device-number {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 2.8rem;
  place-items: center;
  border-radius: .85rem;
  background: #eaf4ff;
  color: #006aed;
  font-weight: 850;
}

.app-device-card h3 {
  margin: 0 0 .65rem;
  color: #07152e;
  font-size: 1.35rem;
}

.app-device-card p {
  margin: 0;
  color: #5b6b82;
  line-height: 1.65;
}

.app-showcase-split {
  display: grid;
  grid-template-columns: minmax(17rem, 25rem) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.app-showcase-phone {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cce0f6;
  border-radius: 2rem;
  background: #006aed;
  box-shadow: 0 2rem 4.5rem rgba(11, 67, 134, .18);
}

.app-showcase-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.app-showcase-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.app-showcase-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: start;
  color: #3f506a;
  line-height: 1.6;
}

.app-showcase-list li::before {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: .05rem;
  place-items: center;
  border-radius: 50%;
  background: #dff8ef;
  color: #07986e;
  font-size: .75rem;
  font-weight: 900;
  content: "✓";
}

.app-dashboard-stage {
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfe2f7;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1.4rem 4rem rgba(13, 66, 130, .14);
}

.app-dashboard-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.app-dashboard-stage figcaption {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.3rem;
  color: #5b6b82;
  line-height: 1.5;
}

.app-dashboard-stage figcaption strong {
  color: #07152e;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.app-feature-grid article {
  padding: 1.4rem;
  border: 1px solid #dce7f3;
  border-radius: 1.15rem;
  background: #fff;
}

.app-feature-grid span {
  display: block;
  margin-bottom: .55rem;
  color: #006aed;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.app-feature-grid h3 {
  margin: 0 0 .55rem;
  color: #0b1730;
  font-size: 1.15rem;
}

.app-feature-grid p {
  margin: 0;
  color: #5c6c83;
  line-height: 1.6;
}

.app-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.app-platform-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid #dbe8f6;
  border-radius: 1.35rem;
  background: #fff;
}

.app-platform-card.is-primary {
  border-color: #b9d9fb;
  background: linear-gradient(145deg, #eaf5ff, #fff);
}

.app-platform-card span {
  color: #006aed;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.app-platform-card h3 {
  margin: .7rem 0 .65rem;
  color: #07152e;
  font-size: 1.55rem;
}

.app-platform-card p {
  color: #586980;
  line-height: 1.65;
}

.app-platform-card a {
  color: #006aed;
  font-weight: 800;
  text-decoration: none;
}

.app-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.6rem;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(85, 222, 255, .25), transparent 22rem),
    #061e5e;
}

.app-trust-panel h2 {
  margin: .65rem 0 .8rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.app-trust-panel p {
  color: rgba(255, 255, 255, .76);
  line-height: 1.65;
}

.app-trust-list {
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .86);
}

.app-trust-list li::before {
  color: #54e6ba;
  font-weight: 900;
  content: "✓";
}

.app-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.app-faq-list {
  display: grid;
  gap: .8rem;
}

.app-faq-list details {
  border: 1px solid #dce7f3;
  border-radius: 1rem;
  background: #fff;
}

.app-faq-list summary {
  padding: 1.15rem 1.25rem;
  color: #0b1730;
  font-weight: 800;
  cursor: pointer;
}

.app-faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: #596a81;
  line-height: 1.65;
}

.app-final {
  padding: clamp(2.2rem, 6vw, 4.5rem);
  border-radius: 1.65rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 120%, rgba(83, 220, 255, .4), transparent 26rem),
    linear-gradient(135deg, #052464, #006aed);
}

.app-final h2 {
  max-width: 18ch;
  margin: .5rem auto .85rem;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.app-final p {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.app-final .app-product-actions,
.app-final .store-actions {
  justify-content: center;
}

@media (max-width: 1040px) {
  .app-product-hero-grid {
    grid-template-columns: 1fr;
  }

  .app-product-hero-copy {
    max-width: 48rem;
  }

  .app-product-visual {
    max-width: 56rem;
  }
}

@media (max-width: 820px) {
  .app-value-grid,
  .app-device-grid,
  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .app-value-grid div + div {
    border-top: 1px solid #e5eef8;
    border-left: 0;
  }

  .app-showcase-split,
  .app-trust-panel,
  .app-faq-grid {
    grid-template-columns: 1fr;
  }

  .app-showcase-phone {
    width: min(100%, 24rem);
    margin-inline: auto;
  }

  .app-dashboard-stage figcaption {
    display: block;
  }
}

@media (max-width: 620px) {
  .app-product-hero {
    padding: 1.2rem 0 4rem;
  }

  .app-product-breadcrumb {
    margin-bottom: 1.8rem;
  }

  .app-product-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .app-product-actions,
  .app-product-actions .btn,
  .app-product-stores,
  .app-product-stores .store-btn {
    width: 100%;
  }

  .app-product-visual {
    padding: .55rem;
    border-radius: 1.25rem;
    transform: none;
  }

  .app-product-visual img {
    border-radius: .9rem;
  }

  .app-product-visual figcaption {
    position: static;
    max-width: none;
    margin-top: .55rem;
  }

  .app-value-strip {
    margin-top: -1.25rem;
  }

  .app-platform-grid {
    grid-template-columns: 1fr;
  }
}
