/* === Syntropy Health — Shared Styles === */

:root {
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --green: #22C55E;
  --green-muted: rgba(34, 197, 94, 0.1);
  --purple: #8B5CF6;
  --teal: #06B6D4;
  --amber: #F59E0B;
  --coral: #EF4444;
  --dark: #0F172A;
  --dark-mid: #1E293B;
  --dark-card: #1a2236;
  --slate: #334155;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --surface: #F8FAFC;
  --surface-alt: #F1F5F9;
  --white: #FEFEFE;
  --border: rgba(59, 130, 246, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --glow-green: rgba(34, 197, 94, 0.15);
  --glow-blue: rgba(59, 130, 246, 0.15);
  --glow-purple: rgba(139, 92, 246, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F6F8FB;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* === MESH GRADIENT BACKGROUND === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 8% 15%, rgba(34, 197, 94, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 50% 70% at 88% 10%, rgba(59, 130, 246, 0.11) 0%, transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 85%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 40% 35% at 92% 75%, rgba(6, 182, 212, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse 35% 30% at 20% 60%, rgba(245, 158, 11, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #F4F7FC 0%, #EBF0F7 35%, #E8EDF5 65%, #F0F4FA 100%);
}

/* === DOT GRID PATTERN === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* === GRAIN OVERLAY (on a wrapper or via section pseudo-elements) === */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(246, 248, 251, 0.72);
  border-bottom: 1px solid rgba(59, 130, 246, 0.06);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #22C55E, #06B6D4, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--blue); }

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, #22C55E, #06B6D4, #3B82F6);
  background-size: 150% auto;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-1px);
  background-position: right center;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Aurora glow band across hero */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(34, 197, 94, 0.14) 0deg,
    rgba(59, 130, 246, 0.10) 72deg,
    rgba(139, 92, 246, 0.08) 144deg,
    rgba(6, 182, 212, 0.10) 216deg,
    rgba(34, 197, 94, 0.14) 360deg
  );
  filter: blur(80px);
  animation: aurora-rotate 30s linear infinite;
}

@keyframes aurora-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-bg .orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.2), rgba(6, 182, 212, 0.1) 60%, transparent 80%);
  top: -250px; right: -150px;
  animation: float 20s ease-in-out infinite;
}
.hero-bg .orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle at 60% 50%, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.08) 60%, transparent 80%);
  bottom: -200px; left: -150px;
  animation: float 15s ease-in-out infinite reverse;
}
.hero-bg .orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), rgba(34, 197, 94, 0.06) 50%, transparent 80%);
  top: 35%; left: 45%;
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -25px) scale(1.06); }
  50% { transform: translate(-15px, 30px) scale(0.97); }
  75% { transform: translate(-30px, -10px) scale(1.03); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--green-muted);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(34, 197, 94, 0.2); }
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 24px;
  font-weight: 700;
}
h1 em {
  font-style: normal;
  font-weight: 700;
}

/* === "YOUR" EMPHASIS — just bold === */
.kw-your {
  font-weight: 700;
}

/* === HEALTH & WELLNESS GRADIENT TEXT === */
.hw-gradient {
  background: linear-gradient(135deg, #22C55E 0%, #06B6D4 40%, #3B82F6 70%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: inherit;
}
h1 .hw-gradient {
  font-weight: 700;
}
/* Animated shimmer on the gradient text */
@keyframes hw-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
h1 .hw-gradient {
  background: linear-gradient(135deg, #22C55E 0%, #06B6D4 25%, #3B82F6 50%, #8B5CF6 75%, #22C55E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hw-shimmer 6s ease-in-out infinite;
}
/* Dark section override */
.deliverables .hw-gradient {
  background: linear-gradient(135deg, #4ADE80 0%, #22D3EE 40%, #60A5FA 70%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero eyebrow — positioning statement between tag and h1 */
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 540px;
}
.hero-eyebrow strong {
  color: var(--dark);
  font-weight: 700;
}

/* === KEYWORD EMPHASIS — animation-based, not color === */
.kw {
  font-weight: 700;
  color: var(--dark);
}

/* Animated keyword — subtle underline draws in from left on scroll */
.kw-draw {
  font-weight: 700;
  position: relative;
  display: inline;
}
.kw-draw::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.kw-draw.visible::after {
  width: 100%;
}

/* Animated keyword — fades up into place */
.kw-fade {
  font-weight: 700;
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.kw-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animated keyword — subtle weight pulse (400→700) */
.kw-pulse {
  font-weight: 700;
  animation: kw-weight-pulse 3s ease-in-out infinite;
}
@keyframes kw-weight-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Hero checklist keyword — just bold with subtle underline reveal */
.kw-item {
  font-weight: 600;
  position: relative;
}
.kw-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 1.5px;
  background: var(--slate);
  border-radius: 2px;
  transition: width 0.6s ease 0.3s;
}
.audit-checklist li:nth-child(1) .kw-item::after { transition-delay: 0.4s; }
.audit-checklist li:nth-child(2) .kw-item::after { transition-delay: 0.6s; }
.audit-checklist li:nth-child(3) .kw-item::after { transition-delay: 0.8s; }
.audit-checklist li:nth-child(4) .kw-item::after { transition-delay: 1.0s; }
.hero-card.visible .kw-item::after {
  width: 100%;
}

/* Dark section keyword overrides */
.deliverables .kw {
  color: var(--surface);
}
.deliverables .kw-draw::after {
  background: rgba(255, 255, 255, 0.5);
}
.deliverables .kw-item::after {
  background: rgba(255, 255, 255, 0.4);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  background: linear-gradient(135deg, #22C55E, #06B6D4, #3B82F6);
  background-size: 150% auto;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
}
.btn-primary .arrow {
  transition: transform 0.3s ease;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  padding: 16px 28px;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(59, 130, 246, 0.04);
}

/* === HERO INLINE PLATFORM STRIP === */
.hero-platforms {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-platforms-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.hero-platforms-logos {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-platform-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-platform-logo:hover {
  background: var(--white);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.hero-platform-logo img {
  height: 18px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.hero-platform-logo:hover img { opacity: 1; }
.hero-platform-logo span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.hero-platform-logo:hover span { color: var(--text-primary); }

@media (max-width: 768px) {
  .hero-platforms { justify-content: center; }
  .hero-platforms-logos { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-platforms { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-platform-logo { padding: 4px 10px; }
  .hero-platform-logo span { font-size: 0.72rem; }
  .hero-platform-logo img { height: 15px; }
}

/* === HERO CARD === */
.hero-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 4px 16px rgba(15, 23, 42, 0.04),
    0 20px 60px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #06B6D4, #3B82F6, #8B5CF6);
  background-size: 200% auto;
  animation: gradient-slide 4s linear infinite;
}
@keyframes gradient-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-card::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.08));
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-card:hover::after { opacity: 1; }

.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.audit-checklist {
  list-style: none;
  margin-bottom: 32px;
}
.audit-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--surface-alt);
  font-size: 0.95rem;
  color: var(--text-primary);
}
.audit-checklist li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--green-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 16px; height: 16px; }

.item-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.item-badge img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.shrine-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shrine-badge img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.card-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--surface-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-note .live-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* === PLATFORM STRIP === */
.platforms {
  padding: 36px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(59, 130, 246, 0.04);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.platforms-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.platforms-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.06);
  background: rgba(248, 250, 252, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform-item:hover {
  background: var(--white);
  border-color: rgba(59, 130, 246, 0.12);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.platform-item svg {
  width: 22px;
  height: 22px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.platform-item:hover svg { opacity: 1; }
.platform-item img {
  height: 22px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.platform-item:hover img { opacity: 1; }
.platform-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.platform-item:hover span { color: var(--text-primary); }

/* === SOCIAL PROOF === */
.proof {
  padding: 60px 40px;
  background: rgba(241, 245, 249, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(59, 130, 246, 0.04);
  border-bottom: 1px solid rgba(59, 130, 246, 0.04);
  position: relative;
}
.proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.03) 30%, rgba(59, 130, 246, 0.03) 70%, transparent);
  pointer-events: none;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
}
.proof-stat .number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #22C55E 0%, #06B6D4 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(59, 130, 246, 0.15);
}

/* === SHOPIFY APP INSTALL CTA === */
.shopify-app-cta {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(150, 191, 72, 0.06) 0%, transparent 70%),
    rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(150, 191, 72, 0.08);
  border-bottom: 1px solid rgba(150, 191, 72, 0.08);
}
.shopify-app-inner {
  max-width: 680px;
  margin: 0 auto;
}
.shopify-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5e8e3e;
  background: rgba(150, 191, 72, 0.12);
  border: 1px solid rgba(150, 191, 72, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.shopify-badge-icon {
  width: 16px;
  height: 16px;
}
.shopify-app-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.shopify-app-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.shopify-app-action {
  margin-bottom: 32px;
}
.btn-shopify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #96bf48, #5e8e3e);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(150, 191, 72, 0.3),
    0 0 0 1px rgba(150, 191, 72, 0.1);
}
.btn-shopify::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
.btn-shopify:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(150, 191, 72, 0.4),
    0 0 0 1px rgba(150, 191, 72, 0.2);
  background: linear-gradient(135deg, #7aa838, #4e7a32);
}
.btn-shopify .arrow {
  transition: transform 0.3s ease;
}
.btn-shopify:hover .arrow {
  transform: translateX(4px);
}
.shopify-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.shopify-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shopify-feature span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.shopify-app-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .shopify-app-cta { padding: 60px 20px; }
  .shopify-features { flex-direction: column; gap: 12px; align-items: flex-start; margin: 0 auto 24px; width: fit-content; }
  .btn-shopify { padding: 14px 28px; font-size: 0.92rem; }
}
@media (max-width: 480px) {
  .shopify-app-cta { padding: 48px 16px; }
  .btn-shopify { padding: 12px 24px; font-size: 0.85rem; }
}

/* === SHOPIFY HERO BUTTON (compact variant for hero-actions) === */
.btn-shopify-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #96bf48, #5e8e3e);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(150, 191, 72, 0.3),
    0 0 0 1px rgba(150, 191, 72, 0.1);
}
.btn-shopify-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
.btn-shopify-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(150, 191, 72, 0.4),
    0 0 0 1px rgba(150, 191, 72, 0.2);
  background: linear-gradient(135deg, #7aa838, #4e7a32);
}
.btn-shopify-hero .arrow {
  transition: transform 0.3s ease;
}
.btn-shopify-hero:hover .arrow {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .btn-shopify-hero { padding: 12px 24px; font-size: 0.88rem; }
}

/* === HOW IT WORKS === */
.process {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 60px;
  line-height: 1.15;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255,255,255,0.7);
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #06B6D4, #3B82F6, #8B5CF6);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step:hover::before { opacity: 1; }
.step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(34, 197, 94, 0.06),
    0 20px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: rgba(59, 130, 246, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 6px;
  display: inline-block;
}

.step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-tools {
  margin-top: 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tool-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--surface-alt);
  color: var(--text-muted);
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* === WHAT YOU GET === */
.deliverables {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0B1120 0%, #0F172A 40%, #111827 100%);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}

.deliverables::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}
.deliverables::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 60% 60%, rgba(34, 197, 94, 0.1) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

.deliverables-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.deliverables .section-tag { color: var(--green); }
.deliverables h2 { color: var(--surface); }

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.deliverable {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.deliverable::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.deliverable:hover::before { opacity: 1; }
.deliverable:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.deliverable-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.deliverable-icon svg {
  width: 26px;
  height: 26px;
}
.deliverable-icon.protocol-icon {
  background: rgba(34, 197, 94, 0.12);
  padding: 0;
  overflow: hidden;
}
.deliverable-icon.protocol-icon img {
  width: 48px;
  height: 48px;
}
.deliverable-icon.dashboard-icon {
  background: rgba(59, 130, 246, 0.12);
}
.deliverable-icon.shrine-icon {
  background: rgba(6, 182, 212, 0.12);
  padding: 0;
  overflow: hidden;
}
.deliverable-icon.shrine-icon img,
.deliverable-icon.product-icon img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.deliverable-icon.lounge-icon {
  background: rgba(59, 130, 246, 0.12);
  padding: 0;
  overflow: hidden;
}
.deliverable-icon.retention-icon {
  background: rgba(139, 92, 246, 0.12);
  padding: 0;
  overflow: hidden;
}
.deliverable-icon.retention-icon img {
  width: 48px;
  height: 48px;
}

.deliverable h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--surface);
  margin-bottom: 10px;
  font-weight: 600;
}

.deliverable p {
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.55);
  line-height: 1.65;
}

/* === ECOSYSTEM SECTION === */
.ecosystem {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--dark) 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}
.ecosystem::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.ecosystem-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.ecosystem .section-tag {
  color: var(--teal);
}
.ecosystem h2 {
  color: var(--surface);
}
.ecosystem-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.55);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* Ecosystem card grid */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.eco-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.eco-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.eco-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.eco-card:hover .eco-card-accent {
  opacity: 1;
}

/* Card header */
.eco-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eco-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.5);
}

/* Logo items */
.eco-logos {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.eco-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eco-logo-ring {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.eco-card:hover .eco-logo-ring {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
.eco-logo-ring img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.eco-card:hover .eco-logo-ring img {
  opacity: 1;
}
.eco-logo-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.75);
}

/* Feature items (replaces logo items for real capabilities) */
.eco-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.eco-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.eco-card:hover .eco-feature-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}
.eco-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.eco-card:hover .eco-feature-icon {
  opacity: 1;
}
.eco-feature-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.75);
}

/* Card note */
.eco-note {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.35);
  line-height: 1.5;
  margin: 0;
}

/* Data flow visualization */
.eco-flow {
  position: relative;
  padding: 12px 0;
}
.eco-flow-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(34, 197, 94, 0.3),
    rgba(6, 182, 212, 0.3),
    rgba(59, 130, 246, 0.3),
    rgba(139, 92, 246, 0.3)
  );
  transform: translateY(-50%);
}
.eco-flow-nodes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.eco-node {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--node-color, var(--teal));
  background: var(--dark);
  border: 1px solid color-mix(in srgb, var(--node-color, var(--teal)) 25%, transparent);
  transition: all 0.3s ease;
}
.eco-node:hover {
  border-color: color-mix(in srgb, var(--node-color, var(--teal)) 50%, transparent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--node-color, var(--teal)) 15%, transparent);
}
.eco-node-arrow {
  color: rgba(248, 250, 252, 0.2);
  font-size: 0.85rem;
  padding: 0 8px;
}

/* Legacy compat — keep .integration-chip for dtc/fsd pages */
.integration-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface-alt);
  border-radius: 100px;
  border: 1px solid rgba(59, 130, 246, 0.06);
  transition: all 0.3s ease;
}
.integration-chip:hover {
  border-color: rgba(59, 130, 246, 0.15);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.integration-chip img {
  width: 18px;
  height: 18px;
}
.integration-chip span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* === BOOKING SECTION === */
.booking {
  padding: 100px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.booking h2 { margin-bottom: 16px; }

.booking-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* INTAKE FORM */
.intake-form {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 4px 16px rgba(15, 23, 42, 0.03),
    0 16px 64px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.intake-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #06B6D4, #3B82F6, #8B5CF6);
  background-size: 200% auto;
  animation: gradient-slide 4s linear infinite;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08), 0 2px 8px rgba(59, 130, 246, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(100, 116, 139, 0.6);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Challenge options (shared between radio and checkbox modes) */
.bottleneck-options,
.multiselect-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bottleneck-option,
.multiselect-option {
  position: relative;
}
.bottleneck-option input[type="radio"],
.bottleneck-option input[type="checkbox"],
.multiselect-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bottleneck-option label,
.multiselect-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1.5px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: rgba(248, 250, 252, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: normal;
  font-size: 0.85rem;
  letter-spacing: normal;
  color: var(--text-primary);
  position: relative;
}
.bottleneck-option label .b-icon,
.multiselect-option label .b-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 116, 139, 0.08);
  border-radius: 10px;
}
.bottleneck-option label .b-icon svg,
.multiselect-option label .b-icon svg {
  width: 28px;
  height: 28px;
}
.bottleneck-option label .b-icon img,
.multiselect-option label .b-icon img {
  width: 28px;
  height: 28px;
}
.bottleneck-option label .b-label,
.multiselect-option label .b-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}
.bottleneck-option label .b-desc,
.multiselect-option label .b-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}
.bottleneck-option input:checked + label,
.multiselect-option input:checked + label {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08), 0 4px 12px rgba(59, 130, 246, 0.06);
}

/* Checkmark badge for multi-select */
.multiselect-option input:checked + label::after {
  content: '\2713';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* === SECTOR OPTIONS (Home page) === */
.sector-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sector-option {
  position: relative;
}
.sector-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.sector-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  border: 2px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sector-option label:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.06), 0 12px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.7);
}
.sector-option label .s-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 116, 139, 0.08);
  border-radius: 14px;
}
.sector-option label .s-icon img {
  width: 48px;
  height: 48px;
}
.sector-option label .s-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}
.sector-option label .s-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}
.sector-option label .sector-brands {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(100, 116, 139, 0.08);
}
.sector-option label .sector-brands img {
  height: 16px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.sector-option label:hover .sector-brands img {
  filter: grayscale(0%);
  opacity: 0.7;
}
.sector-option input:checked + label {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.03);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12), 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* === CATEGORY OPTIONS (DTC/FSD pages) === */
.category-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.category-option {
  position: relative;
}
.category-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.category-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border: 1.5px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: rgba(248, 250, 252, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: normal;
  font-size: 0.85rem;
  position: relative;
}
.category-option label .c-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 116, 139, 0.08);
  border-radius: 8px;
}
.category-option label .c-icon img {
  width: 28px;
  height: 28px;
}
.category-option label .c-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}
.category-option input:checked + label {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.04);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.category-option input:checked + label::after {
  content: '\2713';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* === SECTOR HERO (lean DTC/FSD pages) === */
.sector-hero {
  padding: 120px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sector-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sector-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.sector-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* === HOME PAGE OVERRIDES === */
.page-home .hero {
  min-height: auto;
  padding: 120px 40px 40px;
}
.page-home .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0;
  max-width: 700px;
}
.page-home .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.page-home .hero-tag {
  margin-left: auto;
  margin-right: auto;
}
.page-home .intake-form {
  max-width: 720px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #22C55E, #06B6D4, #3B82F6);
  background-size: 150% auto;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
.submit-btn:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* === MEETING EMBED CONTAINER === */
.meeting-container {
  display: none;
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.08);
}
.meeting-container--active {
  display: block;
  animation: fadeSlideUp 0.5s ease forwards;
}
.meeting-container .meetings-iframe-container {
  min-height: 660px;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .meeting-container { margin: 24px 0 0; border-radius: var(--radius); }
  .meeting-container .meetings-iframe-container { min-height: 580px; }
}

/* === FOUNDER === */
.founder {
  padding: 60px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.founder-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === FOOTER === */
footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(59, 130, 246, 0.04);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
footer .footer-logo img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
footer .footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
footer a:hover { text-decoration: underline; }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

/* === PLATFORM PREVIEW === */
.preview {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0F172A 0%, #0B1120 50%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}
.preview::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background:
    radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite;
}
.preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.preview .section-tag { color: var(--teal); }
.preview h2 { color: var(--surface); margin-bottom: 16px; }
.preview-subtitle {
  font-size: 1rem;
  color: rgba(248, 250, 252, 0.5);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}

.preview-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.preview-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.panel-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.panel-header img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.panel-header .panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.panel-label-consumer { color: var(--teal); }
.panel-label-partner { color: var(--blue); }
.panel-body {
  padding: 24px;
}

/* === DUALITY LABELS (User vs Partner) === */
.preview-duality-labels {
  display: flex;
  justify-content: space-around;
  margin-bottom: 12px;
  gap: 24px;
}
.duality-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.duality-label-user {
  color: var(--teal);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
}
.duality-label-partner {
  color: var(--blue);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* === PANEL DIVIDER === */
.preview-panels {
  grid-template-columns: 1fr auto 1fr;
}
.panel-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
}
.divider-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.2) 30%, rgba(139, 92, 246, 0.2) 70%, transparent 100%);
  border-radius: 2px;
}
.divider-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

/* === PANEL SECTION LABELS === */
.panel-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* === PANEL OUTCOME BADGE === */
.panel-outcome {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.12);
  color: var(--green);
}
.panel-outcome-partner {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  color: var(--blue);
}

/* === SAFETY ALERTS (Consumer) === */
.safety-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  line-height: 1.5;
}
.safety-alert svg { flex-shrink: 0; margin-top: 2px; }
.safety-alert-clear {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.1);
  color: var(--text-secondary);
}

/* === SAFETY FEED (Partner) === */
.safety-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.safety-item {
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  line-height: 1.5;
}
.safety-item-warning {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.12);
}
.safety-item-clear {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.08);
}
.safety-item-info {
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.08);
}
.safety-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.safety-severity {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}
.safety-severity-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #B45309;
}
.safety-severity-clear {
  background: rgba(34, 197, 94, 0.12);
  color: #15803D;
}
.safety-severity-info {
  background: rgba(59, 130, 246, 0.12);
  color: #1D4ED8;
}
.safety-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.safety-item-body {
  color: var(--text-secondary);
}
.safety-item-impact {
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.05);
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.safety-item-impact svg { flex-shrink: 0; }

/* === FSD SAFETY PREVIEW === */
.fsd-safety-preview {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 70%),
    rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245, 158, 11, 0.08);
  border-bottom: 1px solid rgba(245, 158, 11, 0.08);
}
.fsd-safety-inner {
  max-width: 800px;
  margin: 0 auto;
}
.fsd-safety-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.fsd-graph-callout {
  margin-top: 28px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.12);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.fsd-graph-callout svg { flex-shrink: 0; margin-top: 3px; }
@media (max-width: 768px) {
  .fsd-safety-preview { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .fsd-safety-preview { padding: 48px 16px; }
}

/* === PANEL SIDE ACCENTS === */
.panel-user-side {
  border-color: rgba(6, 182, 212, 0.12);
}
.panel-user-side .panel-header {
  border-bottom-color: rgba(6, 182, 212, 0.1);
  background: rgba(6, 182, 212, 0.03);
}
.panel-partner-side {
  border-color: rgba(59, 130, 246, 0.12);
}
.panel-partner-side .panel-header {
  border-bottom-color: rgba(59, 130, 246, 0.1);
  background: rgba(59, 130, 246, 0.03);
}

.checkin-week {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.day-cell {
  flex: 1;
  aspect-ratio: 1;
  max-width: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s ease;
}
.day-cell:hover { transform: scale(1.08); }
.day-cell .day-letter {
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.7;
}
.day-cell .day-status {
  font-size: 0.85rem;
}
.day-taken {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
}
.day-skipped {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.day-missed {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.day-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
}

.checkin-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.68rem;
  color: rgba(248, 250, 252, 0.5);
}
.checkin-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}
.legend-dot.g { background: #10B981; }
.legend-dot.a { background: #F59E0B; }
.legend-dot.r { background: #EF4444; }

.streak-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.streak-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.6);
}
.streak-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #10B981;
}
.pdc-bar-bg {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.pdc-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), #10B981);
  transition: width 1.5s ease;
}
.pdc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(248, 250, 252, 0.35);
}

.satisfaction-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 10px;
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.65);
  font-style: italic;
  line-height: 1.5;
}
.satisfaction-note strong {
  color: #10B981;
  font-style: normal;
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.pm-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.pm-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pm-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.4);
  margin-top: 2px;
  font-weight: 600;
}

.proto-list {
  margin-bottom: 18px;
}
.proto-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
}
.proto-row:last-child { border-bottom: none; }
.proto-name {
  color: var(--surface);
  font-weight: 600;
}
.proto-pdc {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.75rem;
}
.pdc-high { color: #10B981; }
.pdc-mid { color: #F59E0B; }

.feedback-stream {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}
.fb-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fb-item:last-child { border-bottom: none; }
.fb-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.fb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.fb-dot.green { background: #10B981; }
.fb-dot.amber { background: #F59E0B; }
.fb-protocol {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--teal);
}
.fb-time {
  font-size: 0.62rem;
  color: rgba(248, 250, 252, 0.3);
}
.fb-note {
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.5);
  font-style: italic;
  line-height: 1.5;
}
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.68rem;
  background: rgba(139, 92, 246, 0.1);
  color: #A5B4FC;
  border: 1px solid rgba(139, 92, 246, 0.15);
  margin-top: 14px;
}

/* === JOURNEY PIPELINE === */
.journey-pipeline {
  position: relative;
  margin-top: 40px;
  padding: 8px 0;
}
.journey-line {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--green),
    var(--teal),
    var(--blue),
    var(--purple),
    var(--coral)
  );
  opacity: 0.3;
  border-radius: 2px;
}
.journey-nodes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  min-width: 80px;
}
.journey-node .journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--j-color, var(--teal));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 0 16px color-mix(in srgb, var(--j-color, var(--teal)) 30%, transparent);
  transition: all 0.3s ease;
}
.journey-node:hover .journey-num {
  transform: scale(1.15);
  box-shadow: 0 0 24px color-mix(in srgb, var(--j-color, var(--teal)) 50%, transparent);
}
.journey-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 2px;
}
.journey-desc {
  font-size: 0.65rem;
  color: rgba(248, 250, 252, 0.4);
  margin-top: 2px;
}
.journey-connector {
  display: flex;
  align-items: center;
  padding-top: 2px;
  flex-shrink: 0;
}
.journey-connector svg {
  width: 24px;
  height: 12px;
  color: rgba(248, 250, 252, 0.15);
}

/* === HOME PAGE OVERRIDES === */
.page-home .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 700px;
}
.page-home h1 { text-align: center; }
.page-home .hero-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* === HERO BACKGROUND VISUAL (atmospheric product imagery) === */
.hero-bg-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.10;
  filter: saturate(0.6) contrast(1.1) blur(0.5px);
  mix-blend-mode: luminosity;
  mask-image:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 50%, transparent 80%);
  -webkit-mask-image:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 50%, transparent 80%);
}

/* === DARK SECTION BACKGROUND VISUAL (deliverables / preview) === */
.section-bg-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.section-bg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.04;
  filter: saturate(0.3) brightness(0.6);
  mix-blend-mode: screen;
  mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 20%, rgba(0,0,0,0.08) 80%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 20%, rgba(0,0,0,0.08) 80%, transparent 100%);
}

/* === ANIMATED GRADIENT BORDER ACCENT === */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-card::before {
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #3B82F6, #8B5CF6, #06B6D4, #22C55E);
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}
.intake-form::before {
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #3B82F6, #8B5CF6, #06B6D4, #22C55E);
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

/* === RESPONSIVE === */
/* === TABLET (max 900px) === */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-link { display: none; }

  .hero { padding: 100px 20px 60px; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 40px; }

  .hero-actions {
    justify-content: center;
  }

  .hero-card { padding: 28px 24px; }
  .hero-bg-visual { opacity: 0.6; }
  .section-bg-visual img { opacity: 0.03; }

  .platforms { padding: 24px 20px; }
  .platforms-list { gap: 20px; }

  .proof { padding: 40px 20px; }
  .proof-inner { gap: 24px; }
  .proof-divider { display: none; }
  .proof-stat .number { font-size: 1.6rem; }

  .sector-hero { padding: 100px 20px 40px; }

  .process { padding: 60px 20px; }
  .steps { grid-template-columns: 1fr; }

  .preview { padding: 60px 20px; }
  .preview-panels { grid-template-columns: 1fr; }
  .panel-divider { flex-direction: row; padding: 0 20px; }
  .divider-line { height: 2px; width: auto; flex: 1; background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%); }
  .preview-duality-labels { flex-direction: column; align-items: center; gap: 8px; }
  .partner-metrics { grid-template-columns: repeat(2, 1fr); }
  .journey-pipeline { margin-top: 28px; }
  .journey-connector { display: none; }
  .journey-nodes { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .journey-node { min-width: 28%; }
  .journey-line { display: none; }

  .deliverables { padding: 60px 20px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverable { padding: 28px 24px; }

  .ecosystem { padding: 60px 20px; }
  .ecosystem-grid { grid-template-columns: 1fr; gap: 16px; }
  .eco-flow-nodes { flex-wrap: wrap; gap: 4px; }
  .eco-node-arrow { padding: 0 4px; }

  .booking { padding: 60px 20px; }
  .intake-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .bottleneck-options,
  .multiselect-options { grid-template-columns: repeat(2, 1fr); }
  .category-options { grid-template-columns: repeat(2, 1fr); }
  .sector-options { grid-template-columns: 1fr; }

  .founder { padding: 48px 20px; }
  footer { padding: 32px 20px; }

  .page-home .hero { padding: 100px 20px 20px; }
}

/* === MOBILE (max 600px) === */
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-cta {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .hero { padding: 88px 16px 48px; min-height: auto; }
  .hero-content { gap: 32px; text-align: center; }
  .hero-tag { margin: 0 auto 16px; font-size: 0.7rem; }
  .hero-eyebrow { font-size: 0.9rem; margin: 0 auto 12px; text-align: center; }
  .hero-sub { font-size: 0.95rem; text-align: center; margin: 0 auto 32px; }

  h1 { font-size: 1.6rem; line-height: 1.2; margin-bottom: 16px; }
  h2 { font-size: 1.35rem; line-height: 1.2; margin-bottom: 32px; }

  /* Buttons — full width, centered text */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-card { padding: 24px 18px; }
  .card-label { font-size: 0.68rem; margin-bottom: 14px; }
  .audit-checklist li {
    gap: 10px;
    padding: 12px 0;
    font-size: 0.88rem;
  }
  .check-icon { width: 24px; height: 24px; border-radius: 6px; }
  .check-icon svg { width: 14px; height: 14px; }
  .item-badge img { width: 16px; height: 16px; }
  .card-note { font-size: 0.7rem; padding: 10px 12px; }

  /* Platform strip */
  .platforms { padding: 20px 16px; }
  .platforms-list { gap: 14px; }
  .platform-item span { font-size: 0.78rem; }
  .platform-item img { height: 18px; }

  /* Social proof */
  .proof { padding: 32px 16px; }
  .proof-inner {
    flex-direction: column;
    gap: 20px;
  }
  .proof-stat .number { font-size: 1.5rem; }
  .proof-stat .label { font-size: 0.72rem; }

  /* How it works */
  .process { padding: 48px 16px; text-align: center; }
  .section-tag { font-size: 0.68rem; }
  .step { padding: 28px 20px; }
  .step h3 { font-size: 1.05rem; }
  .step p { font-size: 0.85rem; }
  .step-number { font-size: 0.65rem; padding: 5px 10px; }

  /* Preview */
  .preview { padding: 48px 16px; }
  .preview-subtitle { font-size: 0.9rem; }
  .panel-body { padding: 16px; }
  .partner-metrics { gap: 10px; }
  .pm-card { padding: 12px; }
  .pm-value { font-size: 1rem; }
  .pm-label { font-size: 0.62rem; }
  .journey-pipeline { margin-top: 24px; }
  .journey-nodes { gap: 8px; }
  .journey-node { min-width: 42%; }
  .journey-node .journey-num { width: 24px; height: 24px; font-size: 0.6rem; }
  .journey-title { font-size: 0.72rem; }
  .journey-desc { font-size: 0.6rem; }

  /* Deliverables */
  .deliverables { padding: 48px 16px; }
  .deliverable { padding: 24px 18px; }
  .deliverable h4 { font-size: 0.95rem; }
  .deliverable p { font-size: 0.82rem; }
  .deliverable-icon { width: 40px; height: 40px; border-radius: 10px; }
  .deliverable-icon svg { width: 22px; height: 22px; }
  .deliverable-icon.protocol-icon img,
  .deliverable-icon.shrine-icon img,
  .deliverable-icon.product-icon img,
  .deliverable-icon.retention-icon img { width: 40px; height: 40px; }

  /* Ecosystem */
  .ecosystem { padding: 48px 16px; }
  .ecosystem-subtitle { font-size: 0.92rem; margin-bottom: 32px; }
  .eco-card { padding: 20px 18px; }
  .eco-logos { gap: 12px; }
  .eco-logo-ring { width: 34px; height: 34px; border-radius: 10px; }
  .eco-logo-ring img { width: 18px; height: 18px; }
  .eco-logo-item span { font-size: 0.78rem; }
  .eco-features { gap: 10px; }
  .eco-feature-item { padding: 6px 10px; }
  .eco-feature-icon { width: 20px; height: 20px; }
  .eco-feature-item span { font-size: 0.78rem; }
  .eco-note { font-size: 0.75rem; }
  .eco-node { padding: 5px 12px; font-size: 0.65rem; }
  .eco-node-arrow { font-size: 0.72rem; padding: 0 4px; }

  /* Partnership CTA */
  .preview-inner img[alt="You x Syntropy"] { max-width: 160px !important; }

  /* Booking form */
  .booking { padding: 48px 16px; }
  .booking-subtitle { font-size: 0.92rem; margin-bottom: 32px; }
  .intake-form { padding: 24px 16px; }
  .form-group label { font-size: 0.78rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 0.9rem; }
  .bottleneck-options,
  .multiselect-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .multiselect-option label,
  .bottleneck-option label { padding: 14px 10px; gap: 6px; }
  .multiselect-option label .b-label,
  .bottleneck-option label .b-label { font-size: 0.75rem; }
  .multiselect-option label .b-desc,
  .bottleneck-option label .b-desc { font-size: 0.65rem; }
  .multiselect-option label .b-icon,
  .bottleneck-option label .b-icon { width: 30px; height: 30px; }
  .multiselect-option label .b-icon img,
  .bottleneck-option label .b-icon img { width: 22px; height: 22px; }
  .sector-options { gap: 12px; }
  .sector-option label { padding: 24px 16px; gap: 10px; }
  .sector-option label .s-icon { width: 48px; height: 48px; }
  .sector-option label .s-icon img { width: 40px; height: 40px; }
  .sector-option label .s-label { font-size: 0.95rem; }
  .sector-option label .s-desc { font-size: 0.75rem; }
  .sector-option label .sector-brands img { height: 14px; }
  .category-options { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-option label { padding: 10px 6px; gap: 4px; }
  .category-option label .c-icon { width: 26px; height: 26px; }
  .category-option label .c-icon img { width: 22px; height: 22px; }
  .category-option label .c-label { font-size: 0.68rem; }

  .submit-btn {
    font-size: 0.92rem;
    padding: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-footer { font-size: 0.72rem; flex-wrap: wrap; }

  /* Founder */
  .founder { padding: 36px 16px; }
  .founder-quote { font-size: 0.92rem; line-height: 1.7; }
  .founder-name { font-size: 0.92rem; }
  .founder-title { font-size: 0.75rem; }

  /* Footer */
  footer { padding: 24px 16px; }
  footer .footer-logo span { font-size: 0.82rem; }
  footer p { font-size: 0.75rem; }

  /* Page-home overrides */
  .page-home .hero { padding: 88px 16px 16px; }
  .page-home .hero-content { text-align: center; }
  .page-home .hero-eyebrow { text-align: center; }

  /* Inline CTA in sections */
  .preview-inner .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* === VERY SMALL MOBILE (max 380px) === */
@media (max-width: 380px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.2rem; }
  .hero { padding: 80px 12px 40px; }
  .hero-card { padding: 20px 14px; }
  .audit-checklist li { font-size: 0.82rem; gap: 8px; }
  .intake-form { padding: 20px 12px; }
  .bottleneck-options,
  .multiselect-options { grid-template-columns: 1fr; }
  .sector-option label { padding: 20px 12px; }
  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: 0.85rem; }
  .platforms-list { gap: 8px; }
  .platform-item { padding: 6px 10px; }
  .platform-item span { font-size: 0.72rem; }
  .platform-item img { height: 16px; }
  .eco-logos { flex-direction: column; gap: 10px; }
  .eco-features { gap: 8px; }
  .eco-feature-item { padding: 6px 8px; gap: 8px; }
  .eco-feature-icon { width: 18px; height: 18px; }
  .eco-feature-item span { font-size: 0.75rem; }
  .eco-flow-nodes { flex-wrap: wrap; }
  .eco-node { font-size: 0.6rem; padding: 4px 10px; }
}

/* === SECTION TRANSITIONS (glow dividers between light/dark sections) === */
.deliverables::before,
.preview::before {
  pointer-events: none;
}

/* Gradient glow line between sections */
.process + .deliverables::before,
.ecosystem + .preview {
  position: relative;
}

/* Light-to-dark transition glow */
.deliverables {
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

/* Subtle inner glow on dark sections */
.deliverables .deliverables-inner::before,
.preview .preview-inner::before {
  content: '';
  position: absolute;
  top: -2px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2) 30%, rgba(34, 197, 94, 0.15) 70%, transparent);
  pointer-events: none;
}

/* Hover glow on submit button */
.submit-btn {
  position: relative;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.3));
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.submit-btn:hover::before {
  opacity: 1;
}

/* Integration chips glass effect */
.integration-chip {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Founder section subtle bg */
.founder {
  position: relative;
}
.founder::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
