/* ============================================================
   TellTours - Hero Section + Phone Mockup
   ============================================================ */

/* ── Hero wrapper ── */
.hero {
  position: relative;
  min-height: 100dvh;
  /* padding-block only - keep the .container horizontal padding (gutters).
     Using the `padding` shorthand here would zero padding-inline and make
     the hero content run edge-to-edge (and overflow) on mobile. */
  padding-block: 152px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-aura {
  position: absolute;
  top: 44%; left: 60%;
  width: 1200px; height: 1200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(52,161,96,0.18) 0%, rgba(52,161,96,0.05) 28%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Hero copy ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(52,161,96,0.08);
  border: 1px solid rgba(52,161,96,0.24);
  color: #A5D6B7;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(52,161,96,0.7);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,161,96,0.6); }
  50%       { box-shadow: 0 0 0 10px rgba(52,161,96,0); }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 530px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.trust-line {
  color: var(--ink-mid);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.trust-line li { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.trust-line li .ic { color: var(--green-light); }

/* ── Phone stage ── */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(52,161,96,0.34) 0%, rgba(52,161,96,0.07) 36%, transparent 68%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.phone {
  position: relative;
  width: 318px; height: 658px;
  background: linear-gradient(160deg, #2C2E33 0%, #1C1E22 50%, #0E1012 100%);
  border-radius: 52px;
  padding: 11px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.09),
    inset 0 0 0 1.5px rgba(255,255,255,0.04),
    0 50px 90px -22px rgba(0,0,0,0.75),
    0 32px 64px -16px rgba(52,161,96,0.25);
  animation: phone-float 5.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-14px) rotate(-1.5deg); }
}
/* Hardware buttons */
.phone-side {
  position: absolute; background: linear-gradient(90deg, #1f2328, #3c424b);
  border-radius: 3px 0 0 3px; z-index: 0;
}
.phone-side.action { width: 3px; height: 32px; top: 105px; left: -14px; }
.phone-side.vol1 { width: 3px; height: 50px; top: 160px; left: -14px; }
.phone-side.vol2 { width: 3px; height: 50px; top: 225px; left: -14px; }
.phone-side.power { width: 3px; height: 80px; top: 180px; right: -14px; left: auto; border-radius: 0 3px 3px 0; }
.phone-side.camera { width: 2px; height: 60px; top: 380px; right: -13px; left: auto; border-radius: 0 2px 2px 0; background: #2c3138; }

.phone-screen {
  width: 100%; height: 100%;
  background: var(--surface);
  border-radius: 42px;
  overflow: hidden;
  position: relative;
}
/* App screen image in the hero phone. */
.phone-shot {
  position: absolute; inset: 0; z-index: 45;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: inherit; display: block;
}

/* ── Dynamic Island ── */
.island { display: none; }

/* ── Status bar ── */
.status-bar {
  position: relative; z-index: 15;
  padding: 16px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.status-icons { display: flex; gap: 5px; align-items: center; }

/* ── App Explore screen surface ── */
.app-surface {
  position: absolute;
  inset: 46px 0 0;
  background: var(--surface);
  overflow: hidden;
}
.app-halo {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(52,161,96,0.28) 0%, rgba(52,161,96,0) 100%);
  pointer-events: none;
}
.app-content {
  position: relative; z-index: 1;
  padding: 14px 16px 0;
  height: 100%;
  overflow: hidden;
}

/* Top header row */
.app-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.app-logo { width: 28px; height: 36px; object-fit: contain; }
.app-eyebrow {
  color: var(--green-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.app-greeting {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.04;
  color: var(--ink);
  margin-top: 4px;
}
.app-greeting em { font-style: italic; }

/* Primary cards */
.app-primary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
}
.app-primary-card {
  height: 152px;
  border-radius: 20px;
  padding: 13px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.app-primary-card .glyph {
  width: 34px; height: 34px; border-radius: 11px;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center; color: #fff;
}
.app-primary-card .ttl {
  font-family: var(--serif); font-size: 18px; color: #fff; line-height: 1.05;
}
.app-primary-card .sub {
  font-size: 10px; color: rgba(255,255,255,0.86); line-height: 1.35;
}
.app-primary-card .cta {
  display: flex; align-items: center; gap: 4px;
  color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: 0.02em;
}
.live-badge {
  position: absolute; top: 10px; right: 10px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.32);
  padding: 3px 7px;
  border-radius: var(--r-pill);
}
.live-badge .ldot { width: 5px; height: 5px; border-radius: 50%; background: #5BE090; }
.live-badge span { font-size: 9px; color: #fff; font-weight: 800; letter-spacing: 0.06em; }

/* Divider */
.app-divider {
  display: flex; align-items: center; gap: 8px; margin: 14px 0 0;
}
.app-divider .line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.app-divider .txt {
  font-size: 8px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--ink-mid); text-transform: uppercase;
}

/* Chip row */
.app-chips {
  display: flex; gap: 6px; margin-top: 12px; overflow: hidden;
}
.app-chip {
  padding: 0 12px; height: 28px; border-radius: var(--r-pill);
  display: flex; align-items: center;
  font-size: 10px; font-weight: 700; color: var(--ink);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.app-chip.active {
  background: var(--grad-primary); border-color: transparent; color: #fff;
}

/* Section head */
.app-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 16px;
}
.app-section-head .t { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.app-section-head .l { font-size: 10px; font-weight: 800; color: var(--green-light); }

/* Tour card */
.app-tour-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 9px;
  margin-top: 9px;
}
.app-tour-thumb {
  width: 62px; height: 62px; border-radius: 13px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.app-tour-thumb .badge {
  position: absolute; right: 4px; bottom: 4px;
  width: 18px; height: 18px; border-radius: 6px;
  background: rgba(0,0,0,0.42);
  display: grid; place-items: center;
}
.app-tour-meta { display: flex; align-items: center; gap: 5px; }
.app-tour-tag { font-size: 8px; font-weight: 800; letter-spacing: 0.1em; color: var(--green-light); }
.app-tour-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(52,161,96,0.5); }
.app-tour-dist { font-size: 8.5px; font-weight: 700; color: var(--ink-mid); }
.app-tour-name { font-size: 13px; font-weight: 800; color: var(--ink); margin-top: 2px; }
.app-tour-sub { font-size: 10px; color: var(--ink-mid); margin-top: 1px; }
.app-tour-arrow {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-soft); display: grid; place-items: center;
  color: var(--green-light); flex-shrink: 0;
}

/* ── App bottom tab bar ── */
.app-tab-bar, .ss-nav {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex;
  padding: 7px 0 8px;
  background: rgba(11,14,17,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 10;
}
.app-tab, .ss-nav .tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--ink-dim);
  position: relative;
  padding-top: 4px;
}
.app-tab span, .ss-nav .tab span {
  font-size: 7px; font-weight: 700; letter-spacing: 0.02em;
}
.app-tab.active, .ss-nav .tab.active { color: var(--green-light); }
/* Active pill above icon */
.app-tab.active::before, .ss-nav .tab.active::before {
  content: "";
  position: absolute;
  top: -2px;
  width: 28px; height: 4px;
  border-radius: 2px;
  background: var(--green);
}

/* ── Capability strip ── */
.cap-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: 22px;
  background: rgba(255,255,255,0.012);
}
.cap-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px 24px;
}
.cap-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.cap-item svg { color: var(--green-light); flex-shrink: 0; }
.cap-item span { font-weight: 500; color: var(--ink-mid); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { padding-block: 124px 64px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phone { width: 290px; height: 600px; }
  .phone-glow { width: 360px; height: 360px; }
  .cap-row { justify-content: center; }
}
@media (max-width: 520px) {
  .hero-ctas .btn { flex: 1; justify-content: center; }
}
