/* ═══════════════════════════════════════════════════════════════
   FEATURES PAGE — matcher dashboard
   ═══════════════════════════════════════════════════════════════ */

.ft-hero {
  padding: 56px 0 40px;
  background: var(--bg);
  text-align: center;
}
.ft-hero-inner { max-width: 760px; margin: 0 auto; }
.ft-hero-title {
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 10px 0 22px;
  color: var(--ink);
}
.ft-hero-title .accent { color: var(--green); }
.ft-hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}

.ft-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
.ft-section:last-of-type { border-bottom: none; }
.ft-alt { background: var(--paper); }
.ft-feature { background: var(--ink); color: var(--paper); border-bottom-color: var(--navy-700); }
.ft-feature .ft-tag { background: var(--green); color: var(--paper); border-color: var(--green); }
.ft-feature .ft-title { color: var(--paper); }
.ft-feature .ft-text > p { color: var(--navy-300); }
.ft-feature .ft-bullets li {
  color: var(--navy-200);
  border-color: var(--navy-700);
}
.ft-feature .ft-bullets li::before { color: var(--green); }

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.ft-grid-rev { grid-template-columns: 1.1fr 1fr; }
.ft-grid-rev .ft-text { order: 2; }
.ft-grid-rev .ft-visual { order: 1; }

.ft-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.tag-feature {
  background: var(--green) !important;
  color: var(--paper) !important;
  border-color: var(--green) !important;
}
.ft-title {
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.ft-text > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.ft-bullets {
  list-style: none;
  margin-bottom: 24px;
}
.ft-bullets li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  border-bottom: 1px dashed var(--rule);
}
.ft-bullets li:last-child { border-bottom: none; }
.ft-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 9px;
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
}

.ft-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-xl);
  background: var(--paper);
}
.ft-visual img { width: 100%; display: block; }

.ft-visual-tilt {
  transform: rotate(-1deg);
  transition: transform .4s;
}
.ft-visual-tilt:hover { transform: rotate(0deg); }
.ft-shot-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.15);
}
.ft-shot-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

/* Phone mockup */
.ft-visual-phone {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  background: var(--ink);
  border-radius: 36px;
  padding: 14px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: #1a1a1a;
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 22px;
  padding: 28px 14px 14px;
  height: 480px;
  overflow: hidden;
}
.phone-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.phone-route {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.phone-route:last-child { border-bottom: none; }
.phone-route-num {
  width: 28px; height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.phone-route-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.phone-route-addr {
  font-size: 11px;
  color: var(--text-mute);
  margin: 2px 0 6px;
  line-height: 1.3;
}
.phone-route-tags {
  display: flex;
  gap: 6px;
  font-size: 10.5px;
  color: var(--green);
  font-weight: 600;
}
.phone-route-tags span {
  padding: 2px 6px;
  background: var(--green-100);
  border-radius: 6px;
}
.phone-route-status {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.phone-route-status.pending {
  background: var(--rule);
  border: 2px solid var(--text-mute);
}
.phone-route-status.done {
  background: var(--green);
  position: relative;
}
.phone-route-status.done::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

/* Mini grid */
.ft-grid-section {
  padding: var(--gap-xxl) 0;
  background: var(--bg);
}
.ft-gs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.ft-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ft-mini {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 24px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.ft-mini:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ft-mini-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
}
.ft-mini h3 {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.ft-mini p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .ft-grid, .ft-grid-rev { grid-template-columns: 1fr; gap: 36px; }
  .ft-grid-rev .ft-text, .ft-grid-rev .ft-visual { order: initial; }
  .ft-mini-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ft-section { padding: 48px 0; }
  .ft-mini-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 240px; }
  .phone-screen { height: 420px; }
}
