/* ---------- hero ---------- */

.hero { padding: 84px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-copy h1 { margin: 18px 0 20px; }
.hero-copy .lede { font-size: 16.5px; max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--panel-line);
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats b { font-family: var(--display); font-size: 20px; color: var(--accent-amber); }
.hero-stats span { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-faint); }

/* ---------- interactive coverflow ---------- */

.deck-mock {
  position: relative;
  border-radius: 32px;
  background: radial-gradient(120% 140% at 50% 0%, #1c1a16 0%, #0a0908 72%);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.9), inset 0 4px 18px rgba(0,0,0,.7), 0 30px 60px rgba(0,0,0,.5);
  padding: 26px 0 30px;
  overflow: hidden;
  touch-action: pan-y;
}

.deck-mock-label {
  text-align: center;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 18px;
}

.flow-stage {
  position: relative;
  height: 250px;
  perspective: 900px;
  touch-action: none;
  cursor: grab;
  overflow: hidden;
}
.flow-stage:active { cursor: grabbing; }

.flow-card {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 250px;
  height: 148px;
  margin-left: -125px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 35%, rgba(255,255,255,.02) 100%);
  box-shadow: 0 18px 34px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.35);
  padding: 5px;
  transition: transform 0.34s cubic-bezier(.2,.8,.25,1), opacity 0.34s;
  will-change: transform, opacity;
  user-select: none;
}

.flow-card-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #221e19 0%, #0c0a08 75%);
  box-shadow: 0 4px 10px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.2);
}

.flow-card-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.flow-card-shell .art-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(20,17,14,.1) 0%, rgba(8,7,6,.72) 75%);
}

.flow-reels {
  position: absolute;
  left: 0; right: 0; bottom: 8px; top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 18px;
}
.flow-reels svg { width: 52px; height: 52px; }

.flow-label {
  position: absolute;
  left: 8px; right: 8px; top: 8px;
  height: 40px;
  border-radius: 2px;
  background: rgba(253,251,244,.95);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.3);
  padding: 5px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.flow-label b {
  font: 700 11.5px/1.15 var(--mono);
  color: #221e18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flow-label span {
  font: 600 7.5px/1.3 var(--mono);
  letter-spacing: 0.08em;
  color: rgba(34,30,24,.6);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flow-country {
  position: absolute;
  left: 9px; bottom: 8px;
  font: 700 6.5px/1 var(--mono);
  letter-spacing: 0.13em;
  color: var(--accent-amber);
}

.flow-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
}
.flow-dots i {
  width: 5px; height: 5px; border-radius: 3px;
  background: rgba(240,235,221,.25);
  transition: width .25s, background .25s;
  cursor: pointer;
}
.flow-dots i.active { width: 16px; background: var(--accent); }

.deck-mock-hint {
  text-align: center;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--cream-faint);
  margin-top: 16px;
}

/* ---------- feature grid ---------- */

.section { padding: 74px 0; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 10px; display: block; }
.section-head p { margin-top: 12px; font-size: 15.5px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--panel-line);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 30px 26px;
  transition: background 0.25s ease;
}
.feature-card:hover { background: var(--bg-soft); }

.feature-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(192, 98, 48, 0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-amber);
}
.feature-icon svg { width: 19px; height: 19px; }

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; margin: 0; }

/* ---------- screenshots showcase ---------- */

.shots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.phone-frame {
  position: relative;
  border-radius: 34px;
  background: #060605;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform 0.35s cubic-bezier(.2,.8,.25,1);
}
.phone-frame:hover { transform: translateY(-8px); }

.phone-frame img { border-radius: 24px; width: 100%; }

.phone-caption {
  text-align: center;
  margin-top: 16px;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ---------- download cta ---------- */

.cta-panel {
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, #1c1913 0%, #100f0d 70%);
  border: 1px solid var(--panel-line);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(192,98,48,.16), transparent 70%);
  pointer-events: none;
}
.cta-panel h2 { margin: 0 auto 14px; max-width: 22ch; }
.cta-panel p { max-width: 46ch; margin: 0 auto 30px; }

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(240,235,221,.22);
  background: rgba(240,235,221,.04);
  font: 700 11px/1.3 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  cursor: default;
}
.store-badge svg { width: 22px; height: 22px; flex: none; color: var(--cream-dim); }
.store-badge b { display: block; color: var(--cream); font-size: 12.5px; letter-spacing: 0.02em; }
.store-badge small { display: block; font-size: 9px; letter-spacing: 0.1em; margin-top: 2px; color: var(--accent-amber); }

@media (max-width: 880px) {
  .hero { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .shots-row { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; row-gap: 16px; }
}
