.nav-current {
  color: var(--text) !important;
  position: relative;
}
.nav-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- App hero --- */
.app-hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.app-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(0, 208, 132, .10), transparent 60%);
  pointer-events: none;
}
.app-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.app-hero-copy h1 {
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 18px 0 18px;
}
.app-hero-copy .lede {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 520px;
  margin: 0 0 28px;
}
.app-hero-copy .hero-badges { justify-content: flex-start; margin-top: 22px; }

.app-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: transform .08s ease, opacity .15s ease;
}
.store-badge:hover { transform: translateY(-1px); opacity: .92; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge span small {
  font-size: 10px;
  font-weight: 500;
  opacity: .75;
  letter-spacing: .02em;
}

.app-hero-media {
  position: relative;
  height: 540px;
}
.phone {
  position: absolute;
  width: 62%;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, .15),
    0 10px 25px rgba(0, 0, 0, .08);
  border: 8px solid #111;
  background: #111;
}
.phone img { display: block; width: 100%; }
.phone-a {
  left: 10%;
  top: 0;
  transform: rotate(-4deg);
  z-index: 1;
}
.phone-b {
  right: 4%;
  top: 12%;
  transform: rotate(5deg);
  z-index: 2;
}

/* --- App features --- */
.app-features {
  padding: 120px 0 80px;
}
.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--sep);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.feat-card:hover {
  border-color: rgba(0, 208, 132, .25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feat-card strong {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.55;
  margin: 0;
}

/* --- App pricing --- */
.app-pricing {
  padding: 80px 0;
  background: var(--bg);
}
.app-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}
.app-price-grid .price-card { min-height: 520px; }
.app-price-grid .price-card-light { margin-top: 0; }
.app-price-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-ter);
}

/* --- Download section --- */
.download {
  padding: 80px 0 120px;
  text-align: center;
}
.download-inner h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.download-inner p {
  color: var(--text-sec);
  margin: 0 0 28px;
  font-size: 16px;
}
.download .app-store-row { justify-content: center; }

@media (max-width: 900px) {
  .app-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .app-hero-media { height: 460px; }
  .app-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .app-features-grid, .app-price-grid { grid-template-columns: 1fr; }
  .phone { width: 58%; }
}
