:root {
  --bblue:#0ea5e9;
  --slate:#475569;
  --light:#f8fafc;
  --card:#ffffff;
  --border:#e5e7eb;
}
.hero {
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:42px;
  align-items:center;
}
.eyebrow {
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:13px;
  color:#2764d8;
  font-weight:800;
}
.hero p {
  color:#dbeafe;
  font-size:20px;
  max-width:680px;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
.icon {
  width:38px;
  height:38px;
  border-radius:13px;
  background:linear-gradient(135deg, var(--teal), var(--blue));
  color:white;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  font-weight:900;
}
.swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  color: #14b8a6;
  font-weight: 800;
  text-align: center;
}

.swipe-arrow {
  font-size: 34px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(20,184,166,.75));
  animation: swipeGlow 1.4s ease-in-out infinite alternate;
}

.swipe-hand {
  font-size: 30px;
  animation: swipeMove 1.4s ease-in-out infinite alternate;
}

.swipe-text {
  color: #475569;
  font-size: 14px;
}

@keyframes swipeMove {
  from {
    transform: translateX(-10px);
    opacity: .65;
  }
  to {
    transform: translateX(10px);
    opacity: 1;
  }
}

@keyframes swipeGlow {
  from {
    opacity: .45;
    transform: scale(.92);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (min-width: 981px) {
  .swipe-hint {
    display: none;
  }
}


.btn {
  display:inline-block;
  padding:14px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.22);
}
.btn-primary { background:var(--bblue); color:white; border-color:var(--bblue); }
.btn-tertiary { background:var(--navy); color:white; border-color:var(--navy); }
.btn-secondary { color:white; background:rgba(255,255,255,.08); }
.hero-panel {
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  border-radius:28px;
  padding:24px;
  backdrop-filter: blur(10px);
}
.hero-panel h2 { margin:0 0 16px; color:white; font-size:22px; }
.signal-list { display:grid; gap:12px; }
.signal {
  background:rgba(255,255,255,.1);
  border-radius:18px;
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.section-title { text-align:center; max-width:830px; margin:0 auto 42px; }
.section-title h2 { font-size:clamp(32px,4vw,48px); margin:0 0 12px; line-height:1.05; }
.section-title p { font-size:18px; color:var(--slate); margin:0; }
.path-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}
.path-card {
  background:white;
  border:1px solid var(--border);
  border-radius:28px;
  padding:34px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.path-card h3 { font-size:30px; margin:10px 0; }
.path-card p { color:var(--slate); }
.card-actions { margin-top:22px; display:flex; gap:12px; flex-wrap:wrap; }
.card-link {
  display:inline-block;
  padding:11px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  background:#ecfeff;
  color:#0f766e;
}
.how-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.process-card {
  background:white;
  border-radius:24px;
  padding:26px;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.process-card::before {
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,var(--teal),var(--green));
}
.process-card h3 { margin:12px 0 8px; font-size:22px; }
.process-card p { color:var(--slate); }
.engine {
  background:#0f172a;
  color:white;
}
.engine .section-title p { color:#cbd5e1; }
.engine-layout {
  display:grid;
  grid-template-columns:1fr 1.1fr 1fr;
  gap:22px;
  align-items:center;
}
.persona-stack, .deliverable-stack { display:grid; gap:14px; }
.pill {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px 16px;
}
.pill strong { display:block; color:white; }
.pill span { color:#cbd5e1; font-size:14px; }
.engine-core {
  background:linear-gradient(135deg, rgba(20,184,166,.28), rgba(14,165,233,.18));
  border:1px solid rgba(255,255,255,.18);
  border-radius:32px;
  padding:30px;
  text-align:center;
  box-shadow:0 22px 60px rgba(0,0,0,.22);
}
.engine-core h3 { font-size:34px; margin:8px 0; }
.engine-core p { color:#dbeafe; }
.core-badges { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top:20px; }
.badge { padding:8px 12px; border-radius:999px; background:rgba(255,255,255,.14); font-weight:800; font-size:13px; }
.pricing-ladder {
  display:flex;
  align-items:stretch;
  gap:0;
  background:white;
  border:1px solid var(--border);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(15,23,42,.09);
}
.ladder-tier {
  position:relative;
  flex:1 1 0;
  min-height:360px;
  padding:28px 22px 24px;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  overflow:hidden;
}
.ladder-tier::after {
  content:"";
  position:absolute;
  top:0;
  right:-34px;
  width:68px;
  height:100%;
  background:inherit;
  clip-path:polygon(0 0, 100% 50%, 0 100%);
  z-index:2;
}
.ladder-tier:last-child::after { display:none; }
.ladder-tier > * { position:relative; z-index:3; }
.tier-1 { background:linear-gradient(160deg,#0f766e,#14b8a6); }
.tier-2 { background:linear-gradient(160deg,#0369a1,#0ea5e9); }
.tier-3 { background:linear-gradient(160deg,#5b21b6,#8b5cf6); }
.tier-4 { background:linear-gradient(160deg,#92400e,#f59e0b); }
.tier-5 { background:linear-gradient(160deg,#991b1b,#ef4444); }
.ladder-tier.featured {
  transform:scale(1.04);
  z-index:5;
  box-shadow:0 24px 60px rgba(245,158,11,.25);
  border-radius:28px;
}
.ladder-label {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  opacity:.85;
}
.ladder-price {
  font-size:34px;
  font-weight:900;
  margin:12px 0 2px;
  line-height:1;
}
.ladder-price small { font-size:14px; opacity:.85; font-weight:800; }
.ladder-tier h3 { font-size:23px; margin:14px 0 10px; line-height:1.08; }
.ladder-tier p { color:rgba(255,255,255,.86); margin:0 0 12px; }
.ladder-tier ul { margin:12px 0 0; padding-left:18px; color:rgba(255,255,255,.9); }
.ladder-tier li { margin:8px 0; }
.ladder-tag {
  margin-top:auto;
  display:inline-block;
  align-self:flex-start;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);
  color:white;
  font-size:12px;
  font-weight:900;
}
.ladder-note {
  margin-top:20px;
  text-align:center;
  color:var(--slate);
  font-weight:700;
}
.enterprise-band { background:#eef6ff; }
.partnership-band { background:#eef6ff; }
.deliverables {
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.deliverable {
  background:white;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
}
.deliverable h3 { margin:12px 0 8px; }
.deliverable p { color:var(--slate); }
.flywheel-reset {
  background:white;
  border-radius:36px;
  padding:42px;
  border:1px solid var(--border);
  box-shadow:0 22px 60px rgba(15,23,42,.08);
}
.flywheel-list {
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:14px;
}
.flywheel-step {
  border-radius:20px;
  padding:18px;
  background:#f8fafc;
  border:1px solid var(--border);
  text-align:center;
}
.flywheel-step strong { display:block; margin-top:8px; }
.trust-line {
  text-align:center;
  margin-top:24px;
  color:var(--slate);
  font-weight:700;
}
.final-cta {
  background:linear-gradient(135deg, #0f172a, #064e3b);
  color:white;
  text-align:center;
  padding:78px 22px;
}
.final-cta h2 { font-size:clamp(34px,5vw,56px); margin:0 0 12px; }
.final-cta p { color:#dbeafe; font-size:18px; }
.footer { background:#020617; color:#94a3b8; padding:28px 22px; text-align:center; font-size:14px; }

.mobile-details {
  display: none;
}

@media (max-width: 980px) {
  .hero, .engine-layout, .path-grid { grid-template-columns:1fr; }
  .pricing-ladder { overflow-x:auto; align-items:stretch; scroll-snap-type:x mandatory; }
  .ladder-tier { min-width:250px; scroll-snap-align:start; }
  .ladder-tier.featured { transform:none; }
  .deliverables, .how-grid, .flywheel-list { grid-template-columns:repeat(2, minmax(0,1fr)); }
}
  .pricing-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .deliverables, .how-grid, .flywheel-list { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .price-card.featured { transform:none; }
}
@media (max-width: 640px) {
  .pricing-grid, .deliverables, .how-grid, .flywheel-list { grid-template-columns:1fr; }
    .partnership-band .deliverables {
    grid-template-columns: 1fr !important;
  }
}