/* ── BODY OVERRIDE ── */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-copy {
  flex: 1;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 420px;
}
.hero-cities {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cities strong {
  color: var(--ink-soft);
  font-weight: 500;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  transition:
    background 0.15s ease,
    transform 0.1s ease;
}
.store-badge:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}
.store-badge-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-badge-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.store-badge-sub {
  font-size: 10px;
  opacity: 0.65;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.store-badge-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.badge-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-note svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink-mute);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── PHONE FRAME (real screenshot) ── */
.hero-visual {
  flex-shrink: 0;
}

.phone-frame-hero {
  width: 240px;
  background: #fff;
  border-radius: 30px;
  padding: 10px;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.1);
}
.phone-frame-hero-inner {
  border-radius: 31px;
  overflow: hidden;
  background: #f5f5f5;
}
.phone-frame-hero-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 520px) {
  .phone-frame-hero {
    width: 200px;
  }
}

/* ── PHONE MOCKUP (legacy, unused) ── */
.phone-mockup {
  width: 240px;
  height: 490px;
  background: var(--ink);
  border-radius: 36px;
  position: relative;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--ink);
  border-radius: 12px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 3px;
  border-radius: 33px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  height: 44px;
  background: #fff;
  flex-shrink: 0;
}
.phone-content {
  flex: 1;
  background: #f5f5f5;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.app-searchbar {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.app-searchbar-icon {
  width: 14px;
  height: 14px;
  opacity: 0.35;
  flex-shrink: 0;
}
.app-searchbar-text {
  font-size: 11px;
  color: #999;
}
.app-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.app-card-info {
  flex: 1;
  min-width: 0;
}
.app-card-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-card-spec {
  font-size: 10px;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.app-card-fee {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  color: var(--red-text);
  background: var(--red-light);
  padding: 2px 6px;
  border-radius: 4px;
}
.app-card-btn {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.app-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  padding: 2px 0 4px;
}
.phone-bottomnav {
  height: 54px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  flex-shrink: 0;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.nav-item svg {
  width: 18px;
  height: 18px;
  stroke: #ccc;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-item.active svg {
  stroke: var(--red);
}
.nav-item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

/* ── WHY SECTION ── */
.why-section {
  border-top: 1px solid var(--border);
  background: #fafafa;
  padding: 64px 48px;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.why-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.why-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 52px;
    align-items: flex-start;
    padding: 56px 48px;
  }
  .hero-visual {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }
  .hero {
    padding: 48px 24px;
    gap: 40px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .why-section {
    padding: 48px 24px;
  }
  .footer {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .phone-mockup {
    width: 200px;
    height: 408px;
  }
}

/* ── SCREENSHOT STRIP ── */
.screenshot-strip {
  overflow: hidden;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: #fff;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #fff 10%,
    #fff 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #fff 10%,
    #fff 90%,
    transparent 100%
  );
}

.screenshot-strip-track {
  display: flex;
  width: max-content;
  animation: strip-scroll 32s linear infinite;
}

.screenshot-strip-track:hover {
  animation-play-state: paused;
}

@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

.strip-phone {
  flex-shrink: 0;
  background: #fff;
  border-radius: 28px;
  padding: 8px;
  margin-right: 20px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 4px 12px rgba(0,0,0,0.07),
    0 16px 32px rgba(0,0,0,0.07);
}

.strip-phone-inner {
  width: 160px;
  height: 340px;
  border-radius: 21px;
  overflow: hidden;
  background: #f0f0f0;
}

.strip-phone-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
