/* ===== TOP BAR / NAV ===== */
.top-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(197,164,78,0.2);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.top-bar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.top-bar-brand {
  display: flex; align-items: center;
  text-decoration: none; cursor: pointer;
}
.top-bar-wordmark {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  position: relative;
  padding: 20px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit;
}
.nav-item:hover, .nav-item.active { color: var(--gold); }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-item:hover::after, .nav-item.active::after { width: 60%; }
.nav-item-live { position: relative; }
.nav-live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin-right: 4px; vertical-align: middle;
  animation: navDotPulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(178,34,52,0.4);
}
@keyframes navDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(178,34,52,0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 12px rgba(178,34,52,0.6); }
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-mid);
  border: 1px solid rgba(197,164,78,0.15);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-dropdown-item:hover {
  color: var(--gold);
  background: rgba(197,164,78,0.05);
}
.nav-dropdown-item .sub-desc {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 32px; height: 32px;
  cursor: pointer; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold);
  position: absolute; left: 5px;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }

/* ===== LAUNCH BANNER ===== */
.launch-banner {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: bannerShimmer 4s ease-in-out infinite;
  padding: 10px 40px; text-align: center;
  border-bottom: 1px solid rgba(10,22,40,0.1);
}
@keyframes bannerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.launch-banner-text {
  font-size: 13px; font-weight: 700; color: var(--navy-deep);
  letter-spacing: 0.5px;
}
.launch-banner-text strong { font-weight: 900; }
.launch-banner-cta {
  display: inline-block; margin-left: 16px;
  padding: 4px 14px; border-radius: 4px;
  background: var(--navy-deep); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
}
.launch-banner-cta:hover { background: var(--navy); transform: translateY(-1px); }

/* ===== PHONE MOCKUP ===== */
.phone-frame {
  width: 280px; height: 580px; border-radius: 36px;
  background: var(--navy); padding: 10px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(197,164,78,0.15), inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 28px;
  background: #F7F8FA; overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 63px; transform: translateX(-50%);
  width: 126px; height: 26px; background: var(--navy);
  border-radius: 0 0 16px 16px; z-index: 5;
}
.phone-status-bar {
  padding: 34px 18px 10px; display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 600; color: #999;
}
.phone-avatar-row {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 18px 10px;
}
.phone-avatar-img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(197,164,78,0.3);
}
.phone-avatar-info {}
.phone-greeting { padding: 4px 18px 2px; font-size: 11px; color: #999; }
.phone-user-name {
  padding: 0 18px 14px; font-family: 'Instrument Serif', serif;
  font-size: 24px; color: var(--navy);
}
.phone-card {
  margin: 0 10px 8px; border-radius: 14px; padding: 14px;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}
.phone-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.phone-card-title { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #666; }
.phone-badge { font-size: 8px; font-weight: 700; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.5px; }
.phone-badge-green { background: rgba(122,145,126,0.12); color: #5A7D5E; }
.phone-badge-gold { background: rgba(197,164,78,0.1); color: var(--gold); }
.phone-vitals-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.phone-vital { text-align: center; padding: 8px 4px; background: #F7F8FA; border-radius: 8px; }
.phone-vital-val { font-family: 'Instrument Serif', serif; font-size: 16px; color: var(--navy); }
.phone-vital-label { font-size: 7px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-top: 1px; }
.phone-alert {
  margin: 0 10px 8px; border-radius: 12px; padding: 12px 14px;
  background: linear-gradient(135deg, rgba(197,164,78,0.06), rgba(197,164,78,0.12));
  border: 1px solid rgba(197,164,78,0.15);
  display: flex; gap: 10px; align-items: flex-start;
}
.phone-alert-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(197,164,78,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.phone-alert-title { font-size: 10px; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.phone-alert-desc { font-size: 9px; color: #666; line-height: 1.45; }
.phone-nav-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px 16px; display: flex; justify-content: space-around;
  background: #fff; border-top: 1px solid rgba(0,0,0,0.05);
  border-radius: 0 0 28px 28px;
}
.phone-nav-item { text-align: center; }
.phone-nav-icon { font-size: 14px; margin-bottom: 1px; }
.phone-nav-label { font-size: 7px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.phone-nav-item.pn-active .phone-nav-label { color: var(--navy); }
.phone-nav-item:not(.pn-active) .phone-nav-icon { opacity: 0.3; }

.hero-phone-wrap {
  position: relative;
  opacity: 0; animation: phoneSlideUp 1s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
@keyframes phoneSlideUp {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.phone-float-card {
  position: absolute; background: rgba(17,34,64,0.85);
  backdrop-filter: blur(16px); border-radius: 12px; padding: 12px 16px;
  border: 1px solid rgba(197,164,78,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  opacity: 0; z-index: 10;
}
.phone-float-card-1 {
  top: 8%; right: -60px;
  animation: floatCardIn 0.7s ease 1.4s forwards, gentleBob 4s ease-in-out 2.1s infinite;
}
.phone-float-card-2 {
  bottom: 22%; left: -65px;
  animation: floatCardIn 0.7s ease 1.7s forwards, gentleBob 4.5s ease-in-out 2.4s infinite reverse;
}
@keyframes floatCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.pfc-label { font-size: 8px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.pfc-val { font-family: 'Instrument Serif', serif; font-size: 16px; color: var(--gold); }
.pfc-val .pfc-check { color: #5CDBAB; }

.hero-free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  font-size: 12px; font-weight: 700; color: #4ADE80;
  letter-spacing: 0.5px; margin-bottom: 20px;
}
.hero-free-badge .hfb-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ADE80;
  animation: navDotPulse 1.8s ease-in-out infinite;
}

.phone-float-card-3 {
  bottom: 48%; right: -70px;
  animation: floatCardIn 0.7s ease 2.0s forwards, gentleBob 5s ease-in-out 2.7s infinite;
}
.pfc-aegis-tag {
  font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold); background: rgba(197,164,78,0.1);
  padding: 3px 8px; border-radius: 4px; margin-bottom: 4px; display: inline-block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 114px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(17,34,64,0.8), var(--navy-deep) 70%);
}
.hero-stars {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(197,164,78,0.4);
  border-radius: 50%;
}
.star:nth-child(1) { top: 12%; left: 8%; width: 3px; height: 3px; }
.star:nth-child(2) { top: 25%; left: 72%; }
.star:nth-child(3) { top: 45%; left: 15%; width: 3px; height: 3px; }
.star:nth-child(4) { top: 60%; left: 85%; }
.star:nth-child(5) { top: 80%; left: 35%; }
.star:nth-child(6) { top: 15%; left: 55%; width: 3px; height: 3px; }
.star:nth-child(7) { top: 70%; left: 60%; }
.star:nth-child(8) { top: 35%; left: 92%; width: 3px; height: 3px; }
.star:nth-child(9) { top: 88%; left: 78%; }
.star:nth-child(10) { top: 50%; left: 45%; }
.star:nth-child(11) { top: 8%; left: 30%; }
.star:nth-child(12) { top: 92%; left: 12%; width: 3px; height: 3px; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-text .hero-overline {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-text h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 24px;
}
.hero-text h1 em { font-style: italic; color: var(--gold); }
.hero-text .hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-text .hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-promise {
  display: flex; gap: 40px; margin-top: 36px;
}
.promise-item { text-align: center; }
.promise-num {
  font-family: 'Instrument Serif', serif;
  font-size: 32px; color: var(--gold); line-height: 1;
}
.promise-label {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 6px;
}

/* Hero visual - Data Value Card */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-tag {
  display: inline-block; padding: 6px 16px;
  border: 1px solid rgba(197,164,78,0.3); border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.data-value-card {
  background: rgba(17,34,64,0.6);
  border: 1px solid rgba(197,164,78,0.12);
  border-radius: 16px;
  padding: 0;
  max-width: 480px;
  width: 100%;
  backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0; animation: floatIn 0.8s ease 0.4s forwards;
}
.dvc-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(197,164,78,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.dvc-header-left { display: flex; align-items: center; gap: 12px; }
.dvc-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-size: 16px; color: var(--navy-deep); font-weight: 700;
  border: 2px solid rgba(197,164,78,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.dvc-name { font-size: 14px; color: var(--white); font-weight: 600; }
.dvc-subtitle { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }
.dvc-lock {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(45,106,79,0.9); background: rgba(45,106,79,0.1);
  padding: 4px 10px; border-radius: 12px;
}

/* Data sources */
.dvc-sources {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(197,164,78,0.08);
}
.dvc-sources-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 12px;
}
.dvc-source-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.dvc-source-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; color: rgba(255,255,255,0.55);
  opacity: 0; animation: chipIn 0.4s ease forwards;
}
.dvc-source-chip:nth-child(1) { animation-delay: 0.8s; }
.dvc-source-chip:nth-child(2) { animation-delay: 1.0s; }
.dvc-source-chip:nth-child(3) { animation-delay: 1.2s; }
.dvc-source-chip:nth-child(4) { animation-delay: 1.4s; }
.dvc-source-chip:nth-child(5) { animation-delay: 1.6s; }
@keyframes chipIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.dvc-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
}

/* Engine bar */
.dvc-engine {
  padding: 14px 28px;
  background: rgba(197,164,78,0.04);
  display: flex; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.dvc-engine-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(197,164,78,0.06), transparent);
  animation: pulseSweep 3s ease-in-out infinite;
}
.dvc-engine-label {
  position: relative; z-index: 1;
  font-family: 'Instrument Serif', serif;
  font-size: 14px; color: var(--gold);
}
.dvc-engine-status {
  position: relative; z-index: 1;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(197,164,78,0.5);
}
.dvc-engine-live {
  position: relative; z-index: 1;
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(197,164,78,0.6);
}
.dvc-engine-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); animation: navDotPulse 1.8s ease-in-out infinite;
}

/* Value outputs */
.dvc-value {
  padding: 24px 28px;
}
.dvc-value-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; opacity: 0.6;
}
.dvc-value-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}
.dvc-value-item {
  text-align: center; padding: 16px 8px;
  background: rgba(6,14,26,0.5);
  border: 1px solid rgba(197,164,78,0.06);
  border-radius: 10px;
  opacity: 0; animation: valueIn 0.5s ease forwards;
}
.dvc-value-item:nth-child(1) { animation-delay: 1.8s; }
.dvc-value-item:nth-child(2) { animation-delay: 2.0s; }
.dvc-value-item:nth-child(3) { animation-delay: 2.2s; }
@keyframes valueIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.dvc-value-num {
  font-family: 'Instrument Serif', serif;
  font-size: 24px; line-height: 1; margin-bottom: 4px;
}
.dvc-value-num.money { color: #5CDBAB; }
.dvc-value-num.time { color: #66B5E0; }
.dvc-value-num.rewards { color: var(--gold-bright); }
.dvc-value-sub {
  font-size: 9px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Trust bar */
.trust-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(197,164,78,0.06);
  border-bottom: 1px solid rgba(197,164,78,0.1);
  padding: 16px 40px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.trust-badge svg { flex-shrink: 0; }
.trust-badge strong { color: rgba(255,255,255,0.55); font-weight: 600; }
.trust-bar-divider {
  width: 1px; height: 16px; background: rgba(255,255,255,0.08);
}
@keyframes floatIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ESTIMATOR ===== */
.est-container { max-width: 900px; margin: 0 auto; }
.est-step { display: none; }
.est-step.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.est-question {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; color: var(--navy); text-align: center; margin-bottom: 8px;
}
.est-hint { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 32px; }
.est-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px; max-width: 700px; margin: 0 auto;
}
.est-opt {
  padding: 24px 16px; border: 1px solid rgba(0,0,0,0.06); border-radius: 8px;
  text-align: center; cursor: pointer; transition: all 0.3s ease; background: var(--cream);
}
.est-opt:hover { border-color: rgba(197,164,78,0.3); box-shadow: 0 8px 32px rgba(197,164,78,0.08); transform: translateY(-4px); }
.est-opt.selected { border-color: var(--gold); box-shadow: 0 8px 32px rgba(197,164,78,0.15); background: rgba(197,164,78,0.04); }
.est-opt-icon { height: 36px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.est-opt-icon img { height: 28px; width: auto; object-fit: contain; }
.est-opt-icon svg { width: 28px; height: 28px; }
.est-opt-label { font-family: 'Instrument Serif', serif; font-size: 16px; color: var(--navy); }
.est-opt-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.est-dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.15); background: transparent; transition: all 0.3s ease; }
.est-dot.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 8px; }
.est-dot.done { background: #4ADE80; border-color: #4ADE80; }
.est-results { display: none; animation: fadeUp 0.6s ease; }
.est-results.active { display: block; }
.results-header { font-family: 'Instrument Serif', serif; font-size: 28px; color: var(--navy); text-align: center; margin-bottom: 32px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.result-card { text-align: center; padding: 32px 24px; border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; transition: all 0.3s ease; }
.result-card:hover { border-color: rgba(197,164,78,0.3); box-shadow: 0 8px 32px rgba(197,164,78,0.08); transform: translateY(-4px); }
.result-number { font-family: 'Instrument Serif', serif; font-size: 42px; line-height: 1; margin-bottom: 8px; }
.result-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dark); margin-bottom: 8px; }
.result-detail { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.result-card.money .result-number { color: #2D6A4F; }
.result-card.time .result-number { color: #457B9D; }
.result-card.outcomes .result-number { color: var(--gold); }
.results-sources { text-align: center; padding: 20px 24px; border-radius: 8px; background: rgba(197,164,78,0.04); border: 1px solid rgba(197,164,78,0.1); }
.results-sources p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.results-sources strong { color: var(--text-dark); }
.est-restart { display: block; margin: 20px auto 0; padding: 8px 20px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; background: transparent; color: var(--text-muted); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s ease; }
.est-restart:hover { border-color: var(--gold); color: var(--gold); }
.est-back {
  text-align: center; margin-top: 12px;
  font-size: 12px; color: var(--text-muted); cursor: pointer;
  transition: color 0.2s ease;
}
.est-back:hover { color: var(--gold); }

/* ===== PIPELINE (light section) ===== */
.pipeline { margin-top: 16px; }
.pipe-label-muted {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
  opacity: 0.6;
}
.pipe-label-gold {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.pipe-sources { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.pipe-src {
  display: grid; grid-template-columns: 40px 130px 1fr;
  align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 6px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.04);
  opacity: 0; transform: translateX(-16px);
  animation: srcIn 0.4s ease forwards;
}
.pipe-src[data-d="0"] { animation-delay: 0.1s; }
.pipe-src[data-d="1"] { animation-delay: 0.2s; }
.pipe-src[data-d="2"] { animation-delay: 0.3s; }
.pipe-src[data-d="3"] { animation-delay: 0.4s; }
.pipe-src[data-d="4"] { animation-delay: 0.5s; }
@keyframes srcIn { to { opacity: 0.6; transform: translateX(0); } }
.pipe-src-num {
  font-family: 'Instrument Serif', serif;
  font-size: 14px; color: rgba(197,164,78,0.4);
}
.pipe-src-name {
  font-family: 'Instrument Serif', serif;
  font-size: 15px; color: var(--text-dark);
}
.pipe-src-detail { font-size: 12px; color: var(--text-muted); }

/* InPursuit Engine Bar (light theme) */
.pipe-engine {
  margin: 20px 0;
  border-radius: 8px;
  background: var(--navy-deep);
  overflow: hidden; position: relative;
}
.pipe-engine-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(197,164,78,0.08) 50%, transparent 100%);
  animation: pulseSweep 2.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulseSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.pipe-engine-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; position: relative; z-index: 2;
}
.pipe-engine-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(197,164,78,0.1); border: 1px solid rgba(197,164,78,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.pipe-engine-icon img { width: 100%; height: 100%; object-fit: cover; }
.pipe-engine-text { flex: 1; }
.pipe-engine-name {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; color: var(--gold);
}
.pipe-engine-sub {
  font-size: 11px; letter-spacing: 1px;
  color: rgba(197,164,78,0.5); margin-left: 8px;
}
.pipe-engine-counter {
  text-align: center; padding: 8px 16px; border-radius: 6px;
  background: rgba(197,164,78,0.06);
  border: 1px solid rgba(197,164,78,0.1);
}
.pipe-counter-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 22px; color: var(--gold); line-height: 1;
}
.pipe-counter-label {
  display: block;
  font-size: 8px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(197,164,78,0.4);
}
.pipe-engine-bar { height: 3px; background: rgba(197,164,78,0.08); }
.pipe-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.3s ease;
}

/* ===== MULTI-VIEW PHONE ===== */
.pipe-proactive { margin-top: 8px; }

/* View tabs */
.view-tabs {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 28px;
}
.view-tab {
  padding: 10px 22px; border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06); background: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  color: var(--text-muted); cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.view-tab:hover { border-color: rgba(197,164,78,0.35); color: var(--navy); }
.view-tab.active {
  background: var(--navy-deep); color: var(--gold);
  border-color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(10,22,40,0.3);
}

/* ===== REALISTIC iPHONE FRAME ===== */
.phone-mock {
  width: 375px; max-width: 100%; margin: 0 auto;
  border-radius: 48px;
  background: #000;
  border: 4px solid #2a2a2e;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 100px -20px rgba(0,0,0,0.5),
    0 0 60px -10px rgba(197,164,78,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.view-panel { display: none; }
.view-panel.active { display: block; }

/* Dynamic Island */
.phone-notch {
  width: 126px; height: 36px; margin: 0 auto;
  background: #000; border-radius: 0 0 20px 20px;
  position: relative; z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.phone-notch::before {
  content: ''; position: absolute;
  left: 63px; top: 50%; transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, #1a1a2e 30%, #0d0d15 70%);
  box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
}

/* Status bar */
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 28px 6px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}
.phone-status-icons {
  display: flex; align-items: center; gap: 5px;
}
.phone-status-icons svg { width: 16px; height: 16px; }

/* Feed area */
.phone-feed {
  max-height: 500px; overflow-y: auto; padding: 4px 14px 8px;
  scrollbar-width: thin; scrollbar-color: rgba(197,164,78,0.15) transparent;
}
.phone-feed::-webkit-scrollbar { width: 2px; }
.phone-feed::-webkit-scrollbar-thumb { background: rgba(197,164,78,0.15); border-radius: 2px; }

/* Home indicator bar */
.phone-home-bar {
  width: 134px; height: 5px; margin: 6px auto 8px;
  border-radius: 5px; background: rgba(255,255,255,0.2);
}

/* IP icon in notifications */
.ip-icon {
  width: 20px; height: 20px; border-radius: 5px;
  object-fit: cover;
}

/* Notification screen header */
.phone-screen-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.25); padding: 6px 0 2px;
  letter-spacing: 0.3px;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}

/* ---- iOS-STYLE NOTIFICATION CARDS ---- */
.notif-card {
  margin-bottom: 8px; padding: 12px 14px;
  border-radius: 20px;
  background: rgba(40, 44, 52, 0.75);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(10px);
}
.notif-card.animate { animation: notifIn 0.35s ease forwards; }
@keyframes notifIn { to { opacity: 1; transform: translateY(0); } }
.notif-card:hover { background: rgba(50, 55, 65, 0.85); }
.notif-app {
  display: flex; align-items: center; gap: 6px; margin-bottom: 5px;
}
.notif-app-name {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); flex: 1;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}
.notif-time { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 400; }
.notif-title {
  font-size: 14px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 3px;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}
.notif-body {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.45; margin-bottom: 10px;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.notif-actions { display: flex; gap: 6px; }
.notif-btn {
  padding: 7px 16px; border-radius: 14px;
  background: rgba(120, 200, 250, 0.15); color: #7DD3FC;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 0.5px solid rgba(120,200,250,0.1);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  transition: background 0.2s ease;
}
.notif-btn:hover { background: rgba(120,200,250,0.25); }
.notif-btn-ghost {
  padding: 7px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35);
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.04);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.notif-reward {
  background: rgba(197,164,78,0.08);
  border-color: rgba(197,164,78,0.15);
}
.notif-reward:hover { background: rgba(197,164,78,0.14); }

/* ---- APP DASHBOARD UI ---- */
.app-dashboard {
  max-height: 520px; overflow-y: auto; padding: 0 16px 8px;
  background: linear-gradient(180deg, #0a1628 0%, #0f1b2e 30%, #0a1628 100%);
  scrollbar-width: thin; scrollbar-color: rgba(197,164,78,0.15) transparent;
}
.app-dashboard::-webkit-scrollbar { width: 2px; }
.app-dashboard::-webkit-scrollbar-thumb { background: rgba(197,164,78,0.15); border-radius: 2px; }

.app-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0 14px;
}
.app-header-left {
  display: flex; align-items: center; gap: 10px;
}
.app-logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.app-greeting {
  font-size: 13px; color: rgba(255,255,255,0.4);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.app-username {
  font-size: 22px; font-weight: 700; color: #fff;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  letter-spacing: -0.3px;
}
.app-avatar-photo {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(197,164,78,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.app-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 12px;
  opacity: 0; transform: translateY(12px);
}
.app-stat-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 6px 10px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}
.app-stat-icon { font-size: 16px; margin-bottom: 4px; }
.app-stat-value {
  font-size: 20px; font-weight: 700; line-height: 1.1;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}
.app-stat-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.3); margin-top: 2px;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.app-stat-pill.save-money .app-stat-value { color: #4ADE80; }
.app-stat-pill.save-time .app-stat-value { color: #7DD3FC; }
.app-stat-pill.rewards .app-stat-value { color: var(--gold); }

.app-action-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px; margin-bottom: 12px;
  background: rgba(74,222,128,0.06);
  border: 0.5px solid rgba(74,222,128,0.12);
  opacity: 0; transform: translateY(12px);
}
.app-action-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
  animation: pulse 2s ease-in-out infinite;
}
.app-action-text {
  font-size: 12px; color: rgba(255,255,255,0.55); flex: 1;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.app-action-text strong { color: #4ADE80; }
.app-action-arrow { color: rgba(255,255,255,0.25); font-size: 20px; font-weight: 300; }

/* App Cards */
.app-card {
  padding: 14px; border-radius: 18px; margin-bottom: 10px;
  background: rgba(40, 44, 52, 0.6);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(12px);
}
.app-card:hover { background: rgba(50, 55, 65, 0.7); }
.app-card-reward {
  background: rgba(197,164,78,0.06);
  border-color: rgba(197,164,78,0.12);
}
.app-card-reward:hover { background: rgba(197,164,78,0.10); }

.app-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.app-card-tag {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; letter-spacing: 0.3px;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.tag-money { background: rgba(74,222,128,0.12); color: #4ADE80; }
.tag-outcome { background: rgba(125,211,252,0.12); color: #7DD3FC; }
.tag-reward { background: rgba(197,164,78,0.15); color: var(--gold); }
.app-card-time {
  font-size: 11px; color: rgba(255,255,255,0.2);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.app-card-title {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  line-height: 1.3;
}
.app-card-body {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5;
  margin-bottom: 10px;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.app-card-body strong { color: rgba(255,255,255,0.8); }

.app-card-actions { display: flex; gap: 6px; }
.app-btn-primary {
  padding: 7px 16px; border-radius: 14px;
  background: rgba(120,200,250,0.12); color: #7DD3FC;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 0.5px solid rgba(120,200,250,0.08);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  transition: background 0.2s ease;
}
.app-btn-primary:hover { background: rgba(120,200,250,0.22); }
.app-btn-ghost {
  padding: 7px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3);
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.03);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.app-btn-gold {
  padding: 8px 20px; border-radius: 14px;
  background: rgba(197,164,78,0.15); color: var(--gold);
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: 0.5px solid rgba(197,164,78,0.15);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  transition: background 0.2s ease; width: 100%; text-align: center;
}
.app-btn-gold:hover { background: rgba(197,164,78,0.25); }

/* Offer list inside reward card */
.app-offer-list {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px;
}
.app-offer-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.04);
}
.app-offer-brand {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8);
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}
.app-offer-deal {
  font-size: 12px; color: var(--gold); font-weight: 600;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}

/* Bottom Navigation */
.app-bottom-nav {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 6px 8px 2px; background: rgba(15, 20, 30, 0.95);
  border-top: 0.5px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}
.app-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 4px 0; cursor: pointer;
  color: rgba(255,255,255,0.25);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  transition: color 0.2s ease;
}
.app-nav-item span { font-size: 9px; font-weight: 500; }
.app-nav-item.active { color: var(--gold); }
.app-nav-item:hover { color: rgba(255,255,255,0.5); }
.app-nav-item.active:hover { color: var(--gold); }

/* ---- iOS LOCK SCREEN ---- */
.lock-screen {
  padding: 30px 20px 16px; text-align: center;
  min-height: 540px;
  background: linear-gradient(165deg, #0a1628 0%, #0f2545 40%, #0a1628 100%);
  position: relative; overflow: hidden;
}
.lock-screen::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 300px 200px at 70% 25%, rgba(197,164,78,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 200px 300px at 20% 80%, rgba(69,123,157,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.lock-time {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 76px; color: var(--white); line-height: 1;
  font-weight: 700; letter-spacing: 2px;
  margin-top: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.lock-date {
  font-size: 17px; color: rgba(255,255,255,0.6);
  margin-bottom: 36px; letter-spacing: 0px;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-weight: 400;
}
.lock-notifs { text-align: left; position: relative; z-index: 1; }
.lock-notif {
  padding: 12px 14px; margin-bottom: 6px;
  border-radius: 16px;
  background: rgba(40, 44, 52, 0.65);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateY(8px);
}
.lock-notif.animate { animation: notifIn 0.35s ease forwards; }
.lock-notif-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 3px;
}
.lock-notif-header span {
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.lock-notif-text {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.45;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.lock-notif-text strong { color: #fff; }

/* ---- iOS WIDGET SCREEN ---- */
.widget-screen {
  padding: 14px; min-height: 480px;
  background: linear-gradient(180deg, #0f1b2e 0%, #0a1628 100%);
  position: relative;
}
.widget-screen::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 250px 150px at 30% 30%, rgba(74,222,128,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 200px 250px at 80% 70%, rgba(197,164,78,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.widget-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.18);
  text-align: center; margin-bottom: 10px;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  position: relative; z-index: 1;
}
.widget-card {
  padding: 16px; border-radius: 22px;
  background: rgba(40, 44, 52, 0.6);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.widget-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.widget-title {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 15px; color: #fff; flex: 1; font-weight: 600;
}
.widget-streak {
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.widget-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 14px;
}
.widget-stat {
  text-align: center; padding: 8px 4px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.widget-stat-num {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 22px; line-height: 1; font-weight: 700;
}
.widget-stat-label {
  font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.widget-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(74,222,128,0.06);
  border: 0.5px solid rgba(74,222,128,0.12);
}
.widget-alert-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(74,222,128,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
.widget-alert-text {
  font-size: 12px; color: rgba(255,255,255,0.55); flex: 1;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.widget-alert-text strong { color: #4ADE80; }
.widget-alert-arrow { color: rgba(255,255,255,0.3); font-size: 16px; }
.widget-card-small { }
.widget-mini-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.widget-mini-header span {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 600;
}
.widget-mini-items { display: flex; flex-direction: column; gap: 8px; }
.widget-mini-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}
.wmi-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ===== PERSONAS (cream section like pillars-section) ===== */
.persona-section { background: var(--cream); padding-top: 40px; }

.persona-selector {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-top: 40px; margin-bottom: 40px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
/* Persona buttons styled like pillar-cards */
.persona-btn {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06); border-radius: 8px;
  padding: 16px 10px; min-width: 0;
  text-align: center; cursor: pointer;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.persona-btn::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.persona-btn:hover::before, .persona-btn.active::before { transform: scaleX(1); }
.persona-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.persona-btn.active {
  border-color: rgba(197,164,78,0.3);
  box-shadow: 0 8px 32px rgba(197,164,78,0.1);
}
.persona-btn-name {
  font-family: 'Instrument Serif', serif;
  font-size: 16px; color: var(--navy); margin-bottom: 2px;
}
.persona-btn-desc { font-size: 10px; color: var(--text-muted); }
.persona-reward {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px; padding: 5px 10px; border-radius: 16px;
  background: rgba(197,164,78,0.1); font-size: 11px;
  font-weight: 700; color: var(--gold); letter-spacing: 0.2px;
  border: 1px solid rgba(197,164,78,0.2);
}
.persona-reward svg {
  filter: drop-shadow(0 0 4px rgba(197,164,78,0.7));
  flex-shrink: 0;
}
.persona-pursuit {
  display: block; font-style: italic;
  color: var(--navy); margin-top: 6px; opacity: 1;
  font-family: 'Instrument Serif', serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.2px;
}
.persona-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 10px;
  display: block;
  border: 2px solid rgba(197,164,78,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.persona-btn:hover .persona-avatar,
.persona-btn.active .persona-avatar {
  border-color: rgba(197,164,78,0.5);
  box-shadow: 0 4px 16px rgba(197,164,78,0.15);
}

.day-panel { display: none; }
.day-panel.active { display: block; }

/* Persona Journey Timeline */

/* Persona intro card */
.persona-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 48px; padding: 40px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06); border-radius: 8px;
}
.persona-story h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.persona-story-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 4px;
}
.persona-story-avatar {
  width: 140px; height: 140px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
  border: 3px solid rgba(197,164,78,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.persona-story p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.persona-context { display: flex; flex-direction: column; gap: 10px; }
.ctx-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px;
  background: var(--cream); font-size: 13px; color: var(--text-dark);
}
.ctx-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(197,164,78,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ctx-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.ctx-apps { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 14px; }
.ctx-app {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 4px 8px 4px 5px;
  border-radius: 4px;
  background: rgba(197,164,78,0.06);
  border: 1px solid rgba(197,164,78,0.1);
  color: var(--text-muted);
}
.ctx-app img {
  width: 14px; height: 14px; border-radius: 2px;
  object-fit: contain; background: white; padding: 1px;
}

/* ===== HORIZONTAL TIMELINE ===== */
.h-timeline { margin-top: 8px; }
.h-time-track {
  display: flex; align-items: stretch; gap: 0;
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; overflow-x: auto; margin-bottom: 24px;
  position: relative; -webkit-overflow-scrolling: touch;
}
.h-time-track::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, rgba(197,164,78,0.05), rgba(197,164,78,0.15), rgba(197,164,78,0.05));
  pointer-events: none;
}
.h-time-pill {
  flex: 1; min-width: 100px; display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 16px 8px; cursor: pointer;
  border: none; background: transparent; font-family: inherit;
  transition: all 0.3s ease; position: relative;
  border-right: 1px solid rgba(0,0,0,0.04);
}
.h-time-pill:last-child { border-right: none; }
.h-time-pill::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); z-index: 1;
  transform: scaleX(0); transition: transform 0.3s ease;
}
.h-time-pill:hover { background: rgba(197,164,78,0.03); }
.h-time-pill.active { background: rgba(197,164,78,0.06); }
.h-time-pill.active::after { transform: scaleX(1); }
.pill-time {
  font-size: 13px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.3px; white-space: nowrap;
}
.h-time-pill.active .pill-time { color: var(--gold); }
.pill-label {
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
}
.pill-label.save { color: #2D6A4F; }
.pill-label.time { color: #457B9D; }
.pill-label.outcome { color: var(--gold); }
.pill-label.reward { color: #8B5CF6; }
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%; margin-top: 2px;
  transition: all 0.3s;
}
.pill-dot.save { background: #2D6A4F; }
.pill-dot.time { background: #457B9D; }
.pill-dot.outcome { background: var(--gold); }
.pill-dot.reward { background: #8B5CF6; }
.h-time-pill.active .pill-dot { transform: scale(1.8); }
.h-detail-area { position: relative; min-height: 180px; }
.h-moment {
  display: none; animation: hMomentIn 0.35s ease;
}
.h-moment.active { display: block; }
@keyframes hMomentIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.moment-time {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px;
}
.moment-time.save { color: #2D6A4F; }
.moment-time.time { color: #457B9D; }
.moment-time.outcome { color: var(--gold); }
.moment-time.reward { color: #8B5CF6; }

/* Moment cards styled like pillar-cards */
.moment-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06); border-radius: 8px;
  padding: 28px 32px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.moment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.moment-card:hover::before { transform: scaleX(1); }
.moment-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.moment-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 12px;
}
.moment-title {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; color: var(--navy); line-height: 1.3;
}
.moment-tag {
  flex-shrink: 0; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px; white-space: nowrap;
  border: 1px solid;
}
.tag-save { color: #2D6A4F; border-color: rgba(45,106,79,0.2); background: rgba(45,106,79,0.04); }
.tag-time { color: #457B9D; border-color: rgba(69,123,157,0.2); background: rgba(69,123,157,0.04); }
.tag-outcome { color: var(--gold); border-color: rgba(197,164,78,0.2); background: rgba(197,164,78,0.04); }
.tag-reward { color: #8B5CF6; border-color: rgba(139,92,246,0.2); background: rgba(139,92,246,0.04); }

/* Source badges */
.moment-sources { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.src-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px 3px 4px; border-radius: 4px;
  text-transform: uppercase;
  background: rgba(197,164,78,0.04);
  border: 1px solid rgba(197,164,78,0.08);
  color: var(--text-muted);
}
.src-badge img {
  width: 12px; height: 12px; border-radius: 2px;
  object-fit: contain; background: white; padding: 1px;
}
.moment-body {
  font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px;
}
.moment-body strong { color: var(--text-dark); }
.moment-value {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Instrument Serif', serif; font-size: 16px;
  padding: 8px 16px; border-radius: 4px;
}
.value-save { background: rgba(45,106,79,0.04); color: #2D6A4F; border: 1px solid rgba(45,106,79,0.1); }
.value-time { background: rgba(69,123,157,0.04); color: #457B9D; border: 1px solid rgba(69,123,157,0.1); }
.value-outcome { background: rgba(197,164,78,0.04); color: var(--gold); border: 1px solid rgba(197,164,78,0.1); }
.value-reward { background: rgba(139,92,246,0.04); color: #8B5CF6; border: 1px solid rgba(139,92,246,0.1); }

/* ===== FEATURES SECTION ===== */
.features-section { background: var(--cream); padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .overline { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.features-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.features-header h2 em { font-style: italic; color: var(--gold); }
.features-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 36px 28px; transition: all 0.3s ease; }
.feature-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-family: 'Instrument Serif', serif; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== JOURNEY SECTION ===== */
.journey-section { background: var(--navy); overflow: hidden; position: relative; }
.journey-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(197,164,78,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 80%, rgba(69,123,157,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.journey-inner { position: relative; z-index: 1; }
.journey-persona-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 40px; flex-wrap: wrap;
}
.journey-persona-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease;
}
.journey-persona-tab img {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(197,164,78,0.2); transition: border-color 0.3s ease;
}
.journey-persona-tab:hover { border-color: rgba(197,164,78,0.3); color: rgba(255,255,255,0.7); }
.journey-persona-tab.active { background: rgba(197,164,78,0.1); border-color: var(--gold); color: var(--gold); }
.journey-persona-tab.active img { border-color: var(--gold); }
.journey-time-row {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 0; margin: 32px auto 0; position: relative; max-width: 700px;
}
.journey-time-line {
  position: absolute; top: 20px; left: 40px; right: 40px;
  height: 2px; background: rgba(197,164,78,0.1); z-index: 0;
}
.journey-time-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright, var(--gold)));
  transition: width 0.6s ease; border-radius: 2px;
}
.journey-time-btn {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; padding: 8px 4px; transition: all 0.3s ease;
}
.journey-time-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid rgba(197,164,78,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; margin-bottom: 8px;
}
.journey-time-dot span {
  font-family: 'Instrument Serif', serif;
  font-size: 11px; color: rgba(197,164,78,0.4); transition: color 0.3s ease;
}
.journey-time-btn:hover .journey-time-dot { border-color: rgba(197,164,78,0.5); }
.journey-time-btn.active .journey-time-dot {
  border-color: var(--gold); background: rgba(197,164,78,0.15);
  box-shadow: 0 0 20px rgba(197,164,78,0.2); transform: scale(1.15);
}
.journey-time-btn.active .journey-time-dot span { color: var(--gold); }
.journey-time-btn.passed .journey-time-dot { border-color: var(--gold); background: rgba(197,164,78,0.1); }
.journey-time-btn.passed .journey-time-dot span { color: var(--gold); }
.journey-time-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.2); transition: color 0.3s ease;
}
.journey-time-btn.active .journey-time-label,
.journey-time-btn.passed .journey-time-label { color: rgba(197,164,78,0.6); }
.journey-content { margin-top: 36px; }
.journey-panel { display: none; animation: fadeUp 0.4s ease; }
.journey-panel.active { display: block; }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.journey-card {
  background: rgba(17,34,64,0.6);
  border: 1px solid rgba(197,164,78,0.08);
  border-radius: 8px; padding: 28px;
  backdrop-filter: blur(10px); transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.journey-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.journey-card:hover::before { transform: scaleX(1); }
.journey-card:hover { border-color: rgba(197,164,78,0.2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.journey-card h4 { font-family: 'Instrument Serif', serif; font-size: 20px; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.journey-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.journey-item strong { color: rgba(255,255,255,0.85); }
.ji { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 2px; }
.ji-save { background: rgba(74,222,128,0.12); color: #4ADE80; }
.ji-time { background: rgba(125,211,252,0.12); color: #7DD3FC; }
.ji-outcome { background: rgba(197,164,78,0.12); color: var(--gold); }
.ji-reward { background: rgba(232,212,139,0.12); color: var(--gold); }
.journey-stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.journey-stat-card {
  text-align: center; padding: 20px 12px;
  background: rgba(17,34,64,0.6);
  border: 1px solid rgba(197,164,78,0.08); border-radius: 8px;
}
.journey-stat-num { font-family: 'Instrument Serif', serif; font-size: 32px; line-height: 1; }
.journey-stat-num.green { color: #4ADE80; }
.journey-stat-num.blue { color: #7DD3FC; }
.journey-stat-num.gold { color: var(--gold); }
.journey-stat-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 6px; }
.journey-retention {
  margin-top: 48px; text-align: center; padding: 32px;
  background: rgba(197,164,78,0.04);
  border: 1px solid rgba(197,164,78,0.1); border-radius: 8px;
}
.retention-bar { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.retention-item { display: flex; flex-direction: column; align-items: center; padding: 16px 28px; border-radius: 8px; }
.retention-item.bad { background: rgba(178,34,52,0.08); border: 1px solid rgba(178,34,52,0.15); }
.retention-item.good { background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.15); }
.retention-pct { font-family: 'Instrument Serif', serif; font-size: 42px; line-height: 1; }
.retention-item.bad .retention-pct { color: var(--red); }
.retention-item.good .retention-pct { color: #4ADE80; }
.retention-lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
.retention-item.bad .retention-lbl { color: rgba(178,34,52,0.6); }
.retention-item.good .retention-lbl { color: rgba(74,222,128,0.5); }
.retention-vs { font-family: 'Instrument Serif', serif; font-size: 20px; color: rgba(255,255,255,0.15); }

/* ===== PRICING SECTION ===== */
.pricing-section { background: var(--off-white); padding: 100px 40px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .overline { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.pricing-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.pricing-header h2 em { font-style: italic; color: var(--gold); }
.pricing-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 280px)); gap: 16px; margin-bottom: 48px; justify-content: center; }
.price-card { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 28px 20px; display: flex; flex-direction: column; transition: all 0.3s ease; position: relative; overflow: hidden; }
.price-card:hover { box-shadow: 0 8px 30px rgba(10,22,40,0.08); transform: translateY(-2px); }
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 8px 30px rgba(197,164,78,0.12); }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: 0; left: 0; right: 0; background: var(--gold); color: var(--navy-deep); text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 0; }
.price-card.featured { padding-top: 52px; }
.card-tier { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.card-price .amount { font-family: 'Instrument Serif', serif; font-size: 2.4rem; font-weight: 400; color: var(--text-dark); }
.card-price .period { font-size: 0.85rem; color: var(--text-muted); }
.card-annual { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 16px; min-height: 18px; }
.card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 20px; }
.card-features { list-style: none; padding: 0; margin: 0 0 24px 0; flex: 1; }
.card-features li { font-size: 0.84rem; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; align-items: flex-start; gap: 8px; }
.card-features li:last-child { border-bottom: none; }
.card-features .check { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; }
.card-btn { display: block; width: 100%; padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-family: inherit; }
.card-btn.outline { background: transparent; border: 1px solid rgba(0,0,0,0.12); color: var(--text-dark); }
.card-btn.outline:hover { border-color: var(--gold); color: var(--gold); }
.card-btn.primary { background: var(--gold); color: var(--navy-deep); }
.card-btn.primary:hover { background: var(--gold-light); }
.card-btn.amber { background: var(--gold-bright); color: var(--navy-deep); }
.card-btn.amber:hover { background: var(--gold); }
.price-card.tier-top { background: linear-gradient(145deg, #0D1926, #162844); border-color: rgba(197,164,78,0.35); }
.price-card.tier-top::before { content: 'Full Ecosystem'; position: absolute; top: 0; left: 0; right: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--navy-deep); text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 0; }
.price-card.tier-top { padding-top: 52px; }
.tier-top .card-tier { color: var(--gold); }
.tier-top .card-price .amount { color: var(--gold-bright); }
.tier-top .card-desc { color: rgba(255,255,255,0.55); }
.tier-top .card-features li { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.06); }
.tier-top .card-annual { color: var(--gold-light); }
.price-card.tier-family { border-color: rgba(197,164,78,0.2); }
.price-card.tier-family::before { content: 'Whole Family'; position: absolute; top: 0; left: 0; right: 0; background: var(--navy); color: var(--gold); text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 0; }
.price-card.tier-family { padding-top: 52px; }

/* ===== COVERAGE / HSA ===== */
.coverage-section { background: var(--white); padding: 80px 40px; border-top: 1px solid rgba(0,0,0,0.06); }
.coverage-inner { max-width: 1200px; margin: 0 auto; }
.coverage-header { text-align: center; margin-bottom: 48px; }
.coverage-header .overline { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.coverage-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text-dark); line-height: 1.2; margin-bottom: 12px; }
.coverage-header h2 em { font-style: italic; color: var(--gold); }
.coverage-header p { font-size: 1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.coverage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 320px)); gap: 20px; margin-bottom: 48px; justify-content: center; }
.coverage-card { text-align: center; padding: 32px 20px; background: var(--cream); border: 1px solid rgba(0,0,0,0.04); border-radius: 14px; transition: box-shadow 0.3s; }
.coverage-card:hover { box-shadow: 0 4px 20px rgba(10,22,40,0.06); }
.coverage-icon { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; background: rgba(197,164,78,0.08); }
.coverage-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.coverage-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }
.coverage-card .badge { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.badge-gold { background: rgba(197,164,78,0.1); color: var(--gold); }
.badge-dark { background: rgba(10,22,40,0.08); color: var(--navy-mid); }
.roi-box { max-width: 800px; margin: 0 auto; background: linear-gradient(145deg, var(--navy), var(--navy-mid)); border-radius: 20px; padding: 44px 40px; border: 1px solid rgba(197,164,78,0.15); position: relative; overflow: hidden; }
.roi-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }
.roi-header { text-align: center; margin-bottom: 32px; }
.roi-header h3 { font-family: 'Instrument Serif', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
.roi-header p { font-size: 0.92rem; color: rgba(255,255,255,0.45); }
.roi-math { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.roi-costs, .roi-savings { padding: 24px; border-radius: 12px; text-align: center; }
.roi-costs { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.roi-savings { background: rgba(197,164,78,0.06); border: 1px solid rgba(197,164,78,0.15); }
.roi-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.roi-savings .roi-label { color: var(--gold); }
.roi-amount { font-family: 'Instrument Serif', serif; font-size: 1.8rem; color: var(--white); }
.roi-savings .roi-amount { color: var(--gold-bright); }
.roi-detail { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 6px; }
.roi-savings .roi-detail { color: rgba(197,164,78,0.5); }
.roi-equals { font-family: 'Instrument Serif', serif; font-size: 2rem; color: var(--gold); text-align: center; }
.roi-bottom { text-align: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.roi-bottom .headline { font-family: 'Instrument Serif', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: 4px; }
.roi-bottom .sub { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ===== DATA OATH TEASER ===== */

/* TETRA GATEKEEPER */
.gatekeeper-section { background: var(--navy-deep); padding: 100px 40px; position: relative; overflow: hidden; }
.gatekeeper-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(239,68,68,0.04) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(197,164,78,0.04) 0%, transparent 50%); }
.gk-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.gk-header { text-align: center; margin-bottom: 56px; }
.gk-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(28px,3.5vw,44px); color: #fff; line-height: 1.2; margin-bottom: 16px; }
.gk-header h2 em { color: var(--gold); font-style: italic; }
.gk-header p { color: rgba(255,255,255,0.55); max-width: 720px; margin: 0 auto; line-height: 1.7; font-size: 16px; }
.gk-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start; margin-bottom: 56px; }
.gk-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 36px; }
.gk-card.gk-them { border-color: rgba(239,68,68,0.2); }
.gk-card.gk-us { border-color: rgba(197,164,78,0.25); background: rgba(197,164,78,0.03); }
.gk-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; font-weight: 600; }
.gk-them .gk-card-label { color: #EF4444; }
.gk-us .gk-card-label { color: var(--gold); }
.gk-card h3 { font-family: 'Instrument Serif', serif; font-size: 24px; color: #fff; margin-bottom: 12px; }
.gk-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.gk-flow { display: flex; flex-direction: column; gap: 10px; }
.gk-flow-step { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); }
.gk-them .gk-flow-step { border-color: rgba(239,68,68,0.08); }
.gk-us .gk-flow-step { border-color: rgba(197,164,78,0.08); }
.gk-flow-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.gk-them .gk-flow-icon { background: rgba(239,68,68,0.1); color: #EF4444; }
.gk-us .gk-flow-icon { background: rgba(197,164,78,0.1); color: var(--gold); }
.gk-vs { display: flex; align-items: center; justify-content: center; }
.gk-vs span { font-family: 'Instrument Serif', serif; font-size: 28px; color: rgba(255,255,255,0.15); writing-mode: vertical-lr; }
.gk-shield-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.gk-shield-item { text-align: center; max-width: 200px; }
.gk-shield-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(197,164,78,0.08); border: 1px solid rgba(197,164,78,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.gk-shield-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.gk-shield-item h4 { font-size: 14px; color: #fff; margin-bottom: 4px; }
.gk-shield-item p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* INPURSUIT NETWORK */
.network-section { background: #fff; padding: 100px 40px; }
.net-inner { max-width: 1100px; margin: 0 auto; }
.net-header { text-align: center; margin-bottom: 56px; }
.net-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(28px,3.5vw,44px); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.net-header h2 em { color: var(--gold); font-style: italic; }
.net-header p { color: var(--text-muted); max-width: 720px; margin: 0 auto; line-height: 1.7; }
.net-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.net-stat { text-align: center; }
.net-stat-num { font-family: 'Instrument Serif', serif; font-size: 48px; color: var(--navy); line-height: 1.1; display: block; }
.net-stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

/* Exchange Diagram */
.exchange-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 56px;
  padding: 40px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.exd-column-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px; text-align: center;
}
.exd-source-stack { display: flex; flex-direction: column; gap: 8px; }
.exd-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px; font-weight: 500; color: var(--navy);
  transition: all 0.3s ease;
  animation: chipFadeIn 0.6s ease-out backwards;
}
.exd-source-stack .exd-chip:nth-child(1) { animation-delay: 0.1s; }
.exd-source-stack .exd-chip:nth-child(2) { animation-delay: 0.2s; }
.exd-source-stack .exd-chip:nth-child(3) { animation-delay: 0.3s; }
.exd-source-stack .exd-chip:nth-child(4) { animation-delay: 0.4s; }
.exd-source-stack .exd-chip:nth-child(5) { animation-delay: 0.5s; }
@keyframes chipFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.exd-chip:hover { border-color: rgba(197,164,78,0.3); transform: translateX(4px); }
.exd-chip svg { flex-shrink: 0; color: var(--text-muted); }
.exd-chip-value { border-color: rgba(197,164,78,0.12); background: rgba(197,164,78,0.02); }
.exd-chip-value:hover { transform: translateX(-4px); }

.exd-feature-stack { display: flex; flex-direction: column; gap: 6px; }
.exd-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  animation: featurePop 0.5s cubic-bezier(0.34,1.56,0.64,1) backwards;
  cursor: default;
}
.exd-feature:hover {
  transform: translateX(-4px) scale(1.02);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(197,164,78,0.2);
}
@keyframes featurePop {
  from { opacity: 0; transform: translateX(20px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.exd-feat-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.exd-feat-text { text-align: left; }
.exd-feat-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.exd-feat-text span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.exd-ai-protect {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; padding: 10px 14px; border-radius: 10px;
  background: rgba(178,34,52,0.04); border: 1px solid rgba(178,34,52,0.1);
  font-size: 11px; font-weight: 600; color: var(--red);
  letter-spacing: 0.3px;
}

/* ===== TETRAex DIAGRAM ===== */
.tex-diagram {
  max-width: 1100px; margin: 48px auto 0;
}

/* --- ORBITAL LAYOUT --- */
.tex-orbital-ai-row { margin-bottom: 48px; padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); }
.tex-orbital-ai-label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; text-align: center; }
.tex-orbital-ai-chips { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.tex-orbital-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); font-size: 11px; color: rgba(255,255,255,0.55); transition: all 0.2s; cursor: pointer; }
.tex-orbital-chip:hover { border-color: rgba(197,164,78,0.35); color: rgba(255,255,255,0.85); }
.tex-orbital-chip.active { border-color: rgba(197,164,78,0.4); background: rgba(197,164,78,0.06); color: var(--gold-light); }
.tex-orbital-chip-logo { width: 20px; height: 20px; border-radius: 5px; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.tex-orbital-chip-logo img { width: 100%; height: 100%; object-fit: contain; }
.tex-orbital-ai-sub { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 8px; font-style: italic; text-align: center; }
.tex-orbital-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.tex-orbital-col-label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.tex-orbital-nodes { display: flex; flex-direction: column; gap: 8px; }
.tex-orbital-node { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); cursor: default; transition: all 0.3s ease; }
.tex-orbital-node:hover { background: rgba(197,164,78,0.06); border-color: rgba(197,164,78,0.2); transform: translateX(4px); }
.tex-orbital-node-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.5; flex-shrink: 0; animation: orbNodePulse 3s ease-in-out infinite; }
.tex-orbital-node:nth-child(1) .tex-orbital-node-dot { animation-delay: 0s; }
.tex-orbital-node:nth-child(2) .tex-orbital-node-dot { animation-delay: 0.5s; }
.tex-orbital-node:nth-child(3) .tex-orbital-node-dot { animation-delay: 1s; }
.tex-orbital-node:nth-child(4) .tex-orbital-node-dot { animation-delay: 1.5s; }
.tex-orbital-node:nth-child(5) .tex-orbital-node-dot { animation-delay: 2s; }
.tex-orbital-node:nth-child(6) .tex-orbital-node-dot { animation-delay: 2.5s; }
@keyframes orbNodePulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.4); } }
.tex-orbital-node-text { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.tex-orbital-node-line { margin-left: auto; height: 1px; width: 40px; background: linear-gradient(to right, transparent, rgba(197,164,78,0.3)); }
.tex-orbital-center { display: flex; justify-content: center; }
.tex-orbital-engine { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.tex-orbital-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(197,164,78,0.15); animation: orbRingRotate 20s linear infinite; }
.tex-orbital-ring-1 { width: 100%; height: 100%; animation-duration: 20s; }
.tex-orbital-ring-2 { width: 80%; height: 80%; animation-duration: 15s; animation-direction: reverse; border-color: rgba(197,164,78,0.08); }
.tex-orbital-ring-3 { width: 60%; height: 60%; animation-duration: 10s; border-style: dashed; border-color: rgba(197,164,78,0.06); }
@keyframes orbRingRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.tex-orbital-dot-1 { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(197,164,78,0.6); top: -4px; left: 50%; transform-origin: 50% 144px; animation: orbRingRotate 20s linear infinite; }
.tex-orbital-dot-2 { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(197,164,78,0.5); top: -2.5px; left: 50%; transform-origin: 50% 113px; animation: orbRingRotate 15s linear infinite reverse; }
.tex-orbital-core { position: relative; z-index: 2; width: 168px; height: 168px; border-radius: 50%; background: linear-gradient(145deg, #112240, #0A1628); border: 1px solid rgba(197,164,78,0.35); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 12px; box-shadow: 0 0 60px rgba(197,164,78,0.15), inset 0 0 40px rgba(197,164,78,0.05); }
.tex-orbital-avatar { width: 72px; height: 72px; border-radius: 50%; background: rgba(197,164,78,0.08); border: 2px solid rgba(197,164,78,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 6px; overflow: hidden; }
.tex-orbital-name { font-family: 'Instrument Serif', serif; font-size: 18px; color: #fff; line-height: 1; margin-bottom: 3px; }
.tex-orbital-meta { font-size: 9px; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.tex-orbital-status { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 20px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #4ade80; }
.tex-orbital-status-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; animation: orbStatusPulse 2s ease-in-out infinite; }
@keyframes orbStatusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.tex-orbital-values { display: flex; flex-direction: column; gap: 8px; }
.tex-orbital-val { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s ease; cursor: default; }
.tex-orbital-val:hover { background: rgba(197,164,78,0.06); border-color: rgba(197,164,78,0.2); transform: translateX(-4px); }
.tex-orbital-val-line { height: 1px; width: 40px; background: linear-gradient(to left, transparent, rgba(197,164,78,0.3)); flex-shrink: 0; }
.tex-orbital-val-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(197,164,78,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tex-orbital-val-text strong { display: block; font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 600; }
.tex-orbital-val-text span { display: block; font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* --- AI ROW (top) --- */
.tex-ai-row {
  text-align: center; margin-bottom: 0; position: relative;
  padding: 28px 20px 24px; border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(197,164,78,0.03) 1px, transparent 1px),
    linear-gradient(rgba(197,164,78,0.03) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 50%, rgba(197,164,78,0.04) 0%, transparent 70%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
  border: 1px solid rgba(197,164,78,0.06);
}
.tex-ai-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.tex-ai-chips {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.tex-ai-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 10px;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  font-size: 12px; font-weight: 500; color: var(--text-dark);
  transition: all 0.3s ease; cursor: pointer;
}
.tex-ai-chip:hover { border-color: rgba(197,164,78,0.3); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.tex-ai-active { border-color: rgba(197,164,78,0.3); background: rgba(197,164,78,0.04); }
.tex-ai-open { border-style: dashed; opacity: 0.65; }
.tex-ai-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  color: #fff; font-size: 11px; font-weight: 800;
  overflow: hidden; flex-shrink: 0;
}
.tex-ai-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tex-ai-sub { font-size: 11px; color: var(--text-muted); margin-top: 10px; font-style: italic; }

/* --- BOTTOM FLOW ROW --- */
.tex-flow-row {
  display: grid; grid-template-columns: 1fr 48px minmax(320px, 380px) 48px 1fr;
  align-items: center; gap: 0; margin-top: 20px;
}
.tex-col-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}

/* Venn diagram */
.tex-venn {
  display: flex; align-items: stretch; position: relative;
}
.tex-venn-left, .tex-venn-right {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(145deg, #0F2038, #1A3050, #112240);
  border: 1px solid rgba(197,164,78,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 28px 20px; text-align: center;
  flex: 1; min-width: 0;
  z-index: 1;
}
.tex-venn-left { border-radius: 20px 0 0 20px; border-right: none; padding-right: 28px; }
.tex-venn-right { border-radius: 0 20px 20px 0; border-left: none; padding-left: 28px; }
.tex-venn-inner { position: relative; z-index: 2; }

.tex-venn-overlap {
  width: 56px; flex-shrink: 0; position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #0F2038, #162D48, #0F2038);
}
.tex-venn-overlap-glow {
  position: absolute; inset: -8px;
  background: radial-gradient(ellipse at center, rgba(197,164,78,0.12) 0%, transparent 70%);
  animation: vennGlow 2.5s ease-in-out infinite;
}
@keyframes vennGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.tex-venn-overlap-inner {
  text-align: center; position: relative; z-index: 2;
}
.tex-venn-overlap-inner span {
  display: block; font-size: 8px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); margin-top: 4px; line-height: 1.3;
}

.tex-aegis-brand {
  font-family: 'Instrument Serif', serif; font-size: 22px;
  color: var(--gold); line-height: 1.1;
}
.tex-aegis-brand em { font-style: italic; }

.tex-engine-sweep, .tex-aegis-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(197,164,78,0.08) 50%, transparent 70%);
  animation: engSweep 4s ease-in-out infinite;
}
.tex-aegis-sweep { animation-delay: 2s; }
.tex-data-stack { display: flex; flex-direction: column; gap: 5px; }
.tex-data-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 14px; border-radius: 10px; min-height: 44px; box-sizing: border-box;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  font-size: 12px; font-weight: 500; color: var(--text-dark);
  transition: all 0.3s ease;
  animation: chipSlideIn 0.4s ease backwards;
}
.tex-data-chip:nth-child(1) { animation-delay: 0.1s; }
.tex-data-chip:nth-child(2) { animation-delay: 0.15s; }
.tex-data-chip:nth-child(3) { animation-delay: 0.2s; }
.tex-data-chip:nth-child(4) { animation-delay: 0.25s; }
.tex-data-chip:nth-child(5) { animation-delay: 0.3s; }
.tex-data-chip:nth-child(6) { animation-delay: 0.35s; }
@keyframes chipSlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.tex-data-chip:hover { border-color: rgba(197,164,78,0.3); transform: translateX(3px); }
.tex-data-chip svg { flex-shrink: 0; color: var(--text-muted); }

/* Horizontal arrows */
.tex-harrow {
  display: flex; align-items: center; justify-content: center;
  align-self: center;
}
.tex-harrow-line {
  width: 100%; height: 2px; position: relative;
  background: linear-gradient(to right, rgba(197,164,78,0.08), rgba(197,164,78,0.35), rgba(197,164,78,0.08));
}
.tex-harrow-line::after {
  content: '\2192'; position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%); font-size: 13px; color: var(--gold); opacity: 0.45;
}
.tex-harrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); position: absolute; top: 50%;
  transform: translateY(-50%);
  animation: hDotFlow 2.2s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(197,164,78,0.4);
}
.tex-harrow-dot:nth-child(2) { width: 4px; height: 4px; box-shadow: 0 0 3px rgba(197,164,78,0.3); }
.tex-harrow-dot:nth-child(3) { width: 3px; height: 3px; box-shadow: 0 0 2px rgba(197,164,78,0.2); }
@keyframes hDotFlow {
  0% { left: 0; opacity: 0; }
  8% { opacity: 0.9; }
  92% { opacity: 0.9; }
  100% { left: 100%; opacity: 0; }
}

/* TETRAex engine */
.tex-engine-col { display: flex; align-items: center; justify-content: center; }
.tex-engine-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(197,164,78,0.08) 50%, transparent 70%);
  animation: engSweep 4s ease-in-out infinite;
}
@keyframes engSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.tex-rx-brand {
  font-family: 'Instrument Serif', serif; font-size: 22px;
  color: var(--gold); line-height: 1.1;
}
.tex-rx-mark {
  color: var(--gold); font-style: italic; font-size: 22px;
}
.tex-engine-sub {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px; font-weight: 600;
}
.tex-engine-tag {
  font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.5;
}
.tex-engine-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.tex-badge {
  font-size: 7px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(197,164,78,0.2); color: var(--gold); background: rgba(197,164,78,0.06);
}

/* Value stack */
.tex-value-stack { display: flex; flex-direction: column; gap: 5px; }
.tex-val {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; min-height: 44px; box-sizing: border-box;
  background: #fff; border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  animation: valPopIn 0.4s cubic-bezier(0.34,1.56,0.64,1) backwards;
  flex-direction: row-reverse;
}
.tex-val:nth-child(1) { animation-delay: 0.2s; }
.tex-val:nth-child(2) { animation-delay: 0.28s; }
.tex-val:nth-child(3) { animation-delay: 0.36s; }
.tex-val:nth-child(4) { animation-delay: 0.44s; }
.tex-val:nth-child(5) { animation-delay: 0.52s; }
.tex-val:nth-child(6) { animation-delay: 0.6s; }
@keyframes valPopIn {
  from { opacity: 0; transform: translateX(12px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.tex-val:hover { transform: translateX(3px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); border-color: rgba(197,164,78,0.15); }
.tex-val svg { flex-shrink: 0; }
.tex-val div { text-align: right; }
.tex-val strong { display: block; font-size: 11px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.tex-val span { display: block; font-size: 9px; color: var(--text-muted); line-height: 1.3; }

/* --- MOBILE --- */
@media (max-width: 900px) {
  .tex-flow-row { grid-template-columns: 1fr; gap: 0; justify-items: center; }
  .tex-col { max-width: 340px; width: 100%; }
  .tex-harrow { height: 32px; width: 2px; }
  .tex-harrow-line { width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(197,164,78,0.3), transparent); }
  .tex-harrow-line::after { content: '\2193'; right: auto; top: auto; bottom: -8px; left: 50%; transform: translateX(-50%); }
  .tex-harrow-dot { left: 50%; top: 0; transform: translateX(-50%); animation: vDotFlow 2.2s ease-in-out infinite; }
  @keyframes vDotFlow { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
  .tex-ai-chips { gap: 6px; }
  .tex-ai-chip { padding: 6px 10px; font-size: 11px; }
  .tex-venn { flex-direction: column; max-width: 260px; margin: 0 auto; }
  .tex-venn-left { border-radius: 20px 20px 0 0; border-right: 1px solid rgba(197,164,78,0.15); border-bottom: none; padding: 24px 20px; }
  .tex-venn-right { border-radius: 0 0 20px 20px; border-left: 1px solid rgba(197,164,78,0.15); border-top: none; padding: 24px 20px; }
  .tex-venn-overlap { width: 100%; height: 44px; }
  .tex-venn-overlap-inner { display: flex; align-items: center; gap: 8px; }
  .tex-venn-overlap-inner span { margin-top: 0; }
  .tex-col-label { text-align: center !important; }
  .tex-val { flex-direction: row; }
  .tex-val div { text-align: left; }
  .journey-persona-tabs { gap: 6px; }
  .journey-persona-tab { padding: 8px 12px; font-size: 12px; }
  .journey-persona-tab img { width: 24px; height: 24px; }
  .journey-time-dot { width: 32px; height: 32px; }
  .journey-grid { grid-template-columns: 1fr; }
}

/* Center engine block */
.exd-center { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.exd-flow-arrows { display: flex; align-items: center; justify-content: center; height: 32px; }
.exd-arrow-in, .exd-arrow-out {
  width: 60px; height: 2px; background: rgba(197,164,78,0.2); position: relative;
}
.exd-arrow-in::after {
  content: ''; position: absolute; right: -1px; top: -4px;
  border: 5px solid transparent; border-left: 6px solid var(--gold); opacity: 0.5;
}
.exd-arrow-out::after {
  content: ''; position: absolute; right: -1px; top: -4px;
  border: 5px solid transparent; border-left: 6px solid var(--gold); opacity: 0.5;
}
.exd-arrow-in::before, .exd-arrow-out::before {
  content: ''; position: absolute; top: -2px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.8;
  animation: flowDot 1.5s ease-in-out infinite;
}
.exd-arrow-out::before { animation-delay: 0.75s; }
@keyframes flowDot {
  0% { left: 0; opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { left: calc(100% - 6px); opacity: 0; }
}
.exd-engine-block {
  position: relative;
  background: linear-gradient(145deg, #0F2038, #1A3050, #112240);
  border: 1px solid rgba(197,164,78,0.25);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  overflow: hidden;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(10,22,40,0.4), inset 0 1px 0 rgba(197,164,78,0.08);
}
.exd-engine-sweep-bg {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(197,164,78,0.12), transparent);
  animation: pulseSweep 3s ease-in-out infinite;
}
.exd-engine-content { position: relative; z-index: 2; }
.exd-engine-shield { margin-bottom: 12px; }
.exd-engine-title {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; color: var(--gold); line-height: 1.2; margin-bottom: 8px;
}
.exd-engine-sub {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 14px; font-weight: 600;
}
.exd-engine-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.exd-badge {
  padding: 4px 10px; border-radius: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(197,164,78,0.6);
  background: rgba(197,164,78,0.06);
  border: 1px solid rgba(197,164,78,0.1);
}

.net-coverage { background: var(--navy); border-radius: 20px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.net-cov-item { text-align: center; padding: 20px; }
.net-cov-item h4 { font-family: 'Instrument Serif', serif; font-size: 28px; color: var(--gold); margin-bottom: 6px; }
.net-cov-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* DATA SHARING CONTROLS */
.sharing-section { background: var(--navy-deep); padding: 100px 40px; position: relative; }
.sharing-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(197,164,78,0.04) 0%, transparent 50%); }
.share-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.share-header { text-align: center; margin-bottom: 56px; }
.share-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(28px,3.5vw,44px); color: #fff; line-height: 1.2; margin-bottom: 16px; }
.share-header h2 em { color: var(--gold); font-style: italic; }
.share-header p { color: rgba(255,255,255,0.55); max-width: 720px; margin: 0 auto; line-height: 1.7; }
.share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.share-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 32px; }
.share-card h3 { font-family: 'Instrument Serif', serif; font-size: 22px; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.share-card h3 span { font-size: 20px; }
.share-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.share-flow-list { display: flex; flex-direction: column; gap: 8px; }
.share-flow-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); }
.sfi-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.sfi-icon.sfi-yes { background: rgba(34,197,94,0.1); color: #22C55E; }
.sfi-icon.sfi-no { background: rgba(239,68,68,0.1); color: #EF4444; }
.sfi-icon.sfi-you { background: rgba(197,164,78,0.1); color: var(--gold); }
.share-flow-item .sfi-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.share-flow-item .sfi-text strong { color: rgba(255,255,255,0.85); }
.share-ntk { background: rgba(197,164,78,0.04); border: 1px solid rgba(197,164,78,0.15); border-radius: 20px; padding: 36px; text-align: center; }
.share-ntk h3 { font-family: 'Instrument Serif', serif; font-size: 26px; color: #fff; margin-bottom: 12px; }
.share-ntk p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; max-width: 720px; margin: 0 auto; }
.ntk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.ntk-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 20px; text-align: left; }
.ntk-who { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.ntk-sees { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.ntk-sees .ntk-yes { color: #22C55E; }
.ntk-sees .ntk-no { color: #EF4444; }

/* FAQ SECTION */
.faq-section { background: #fff; padding: 100px 40px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-family: 'Instrument Serif', serif; font-size: clamp(28px,3.5vw,40px); color: var(--navy); }
.faq-item { border-bottom: 1px solid #E5E5EA; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; width: 100%; background: none; border: none; text-align: left; font-family: inherit; }
.faq-q h3 { font-size: 17px; color: var(--navy); font-weight: 600; flex: 1; padding-right: 16px; }
.faq-q .faq-arrow { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: transform 0.3s; font-size: 18px; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 24px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* EARLY ACCESS */
.early-section { background: var(--navy); padding: 100px 40px; position: relative; overflow: hidden; }
.early-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(197,164,78,0.06) 0%, transparent 50%); }
.early-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.early-inner h2 { font-family: 'Instrument Serif', serif; font-size: clamp(32px,4vw,48px); color: #fff; margin-bottom: 16px; }
.early-inner h2 em { color: var(--gold); font-style: italic; }
.early-inner p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.early-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto 24px; }
.early-input { flex: 1; padding: 16px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: #fff; font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.3s; }
.early-input:focus { border-color: var(--gold); }
.early-input::placeholder { color: rgba(255,255,255,0.3); }
.early-btn { padding: 16px 32px; border-radius: 12px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 15px; border: none; cursor: pointer; font-family: inherit; transition: all 0.3s; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 130px; }
.early-btn:hover:not(:disabled) { background: #D4B85A; transform: translateY(-1px); }
.early-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.early-spinner { display: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(12,22,44,0.25); border-top-color: var(--navy); animation: early-spin 0.7s linear infinite; flex-shrink: 0; }
.early-btn.loading .early-spinner { display: block; }
.early-btn.loading #earlyBtnText { display: none; }
@keyframes early-spin { to { transform: rotate(360deg); } }
.early-msg { max-width: 500px; margin: 0 auto 16px; font-size: 13px; min-height: 20px; text-align: center; display: none; padding: 10px 16px; border-radius: 8px; line-height: 1.5; }
.early-msg.show { display: block; }
.early-msg--error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #FCA5A5; }
.early-msg--info { background: rgba(99,179,237,0.08); border: 1px solid rgba(99,179,237,0.2); color: #90CDF4; }
.early-msg--success { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2); color: #86EFAC; }
.early-success-state { display: none; max-width: 420px; margin: 0 auto 24px; text-align: center; animation: early-fade-in 0.5s ease; }
.early-success-state.show { display: block; }
@keyframes early-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.early-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #4ADE80; }
.early-success-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.early-success-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.early-note { font-size: 13px; color: rgba(255,255,255,0.35); }
.early-trust { display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.early-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.5); }
.early-trust-item .chk { color: var(--gold); }

@media(max-width:1024px) {
  .gk-compare { grid-template-columns: 1fr; }
  .gk-vs { display: none; }
  .exchange-diagram { grid-template-columns: 1fr; gap: 24px; }
  .exd-center { padding: 16px 0; }
  .exd-flow-arrows { transform: rotate(90deg); }
  .exd-chip:hover { transform: none; }
  .exd-chip-value:hover { transform: none; }
  .share-grid { grid-template-columns: 1fr; }
  .ntk-grid { grid-template-columns: 1fr; }
  .net-coverage { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .gk-shield-row { gap: 20px; }
  .net-stats { gap: 24px; }
  .net-stat-num { font-size: 36px; }
  .net-partners { grid-template-columns: 1fr; }
  .exchange-diagram { padding: 24px 16px; }
  .early-form { flex-direction: column; }
  .early-btn { width: 100%; }
}



/* ===== SEND TO INPURSUIT ===== */
.curate-section { background: var(--cream); position: relative; }
.curate-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 48px; align-items: start;
}
.curate-demo {
  background: var(--navy-deep); border-radius: 16px;
  padding: 28px; position: relative; overflow: hidden;
  border: 1px solid rgba(197,164,78,0.1);
  box-shadow: 0 24px 80px rgba(10,22,40,0.3);
}
.curate-demo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197,164,78,0.05), transparent 60%);
  pointer-events: none;
}
.curate-demo-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.curate-demo-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.curate-demo-icon img { width: 100%; height: 100%; object-fit: cover; }
.curate-demo-source { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.curate-demo-sub { font-size: 10px; color: rgba(255,255,255,0.25); }
.curate-send-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep); font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer;
  position: relative; z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(197,164,78,0.2);
  border: none; width: 100%; font-family: 'Instrument Sans', sans-serif;
}
.curate-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197,164,78,0.35);
}
.curate-confirm {
  position: relative; z-index: 1; text-align: center;
  margin-top: 10px; padding: 10px;
  border-radius: 8px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.15);
  font-size: 12px; color: #4ADE80; font-weight: 600;
  opacity: 0; transition: opacity 0.5s ease;
}
.curate-confirm.show { opacity: 1; }
.curate-sources-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.curate-source-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 8px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.curate-source-row:hover { border-color: rgba(197,164,78,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.curate-source-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.curate-source-icon img { width: 100%; height: 100%; object-fit: cover; }
.curate-source-info h4 { font-family: 'Instrument Serif', serif; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.curate-source-info p { font-size: 11px; color: var(--text-muted); }
.curate-tag {
  margin-left: auto; font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
  background: rgba(197,164,78,0.08); color: var(--gold);
  border: 1px solid rgba(197,164,78,0.12); white-space: nowrap;
}
@media (max-width: 1024px) {
  .curate-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* TETRA AEGIS REVEAL */
.aegis-reveal {
  margin-top: 64px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.aegis-question {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 32px; border-radius: 16px;
  background: rgba(178,34,52,0.04); border: 1px solid rgba(178,34,52,0.12);
  margin-bottom: 40px;
}
.aegis-q-icon { flex-shrink: 0; margin-top: 2px; }
.aegis-q-text h3 {
  font-family: 'Instrument Serif', serif; font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-dark); line-height: 1.3;
}
.aegis-q-text h3 em { font-style: italic; color: var(--red); }

.aegis-answer {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: 24px; padding: 48px 40px;
  border: 1px solid rgba(197,164,78,0.15);
  position: relative; overflow: hidden;
}
.aegis-answer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(197,164,78,0.06) 0%, transparent 50%);
}
.aegis-shield-wrap {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px; position: relative; z-index: 2;
}
.aegis-shield {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(197,164,78,0.08); border: 2px solid rgba(197,164,78,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  animation: aegisPulse 3s ease-in-out infinite;
}
@keyframes aegisPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(197,164,78,0.1); }
  50% { box-shadow: 0 0 40px rgba(197,164,78,0.25); }
}
.aegis-overline {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 6px;
}
.aegis-brand h2 {
  font-family: 'Instrument Serif', serif; font-size: 36px;
  color: var(--white); line-height: 1.1;
}
.aegis-brand h2 em { font-style: italic; color: var(--gold); }
.aegis-brand p {
  font-size: 15px; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.5;
}

.aegis-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 2;
}
.aegis-flow-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px 18px; text-align: center; min-width: 130px;
  transition: all 0.3s ease;
}
.aegis-flow-step:hover { border-color: rgba(197,164,78,0.2); transform: translateY(-2px); }
.afs-icon { margin-bottom: 8px; color: rgba(255,255,255,0.5); }
.aegis-flow-step strong { display: block; font-size: 12px; color: var(--white); margin-bottom: 3px; }
.aegis-flow-step span { font-size: 10px; color: rgba(255,255,255,0.35); line-height: 1.4; display: block; }
.afs-aegis {
  background: rgba(197,164,78,0.08); border-color: rgba(197,164,78,0.25);
  box-shadow: 0 0 20px rgba(197,164,78,0.08);
}
.afs-aegis strong { color: var(--gold); }
.aegis-flow-arrow { font-size: 18px; color: rgba(197,164,78,0.3); font-weight: 300; }

.aegis-commitments {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  position: relative; z-index: 2;
}
.aegis-commit {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
}

@media (max-width: 768px) {
  .aegis-question { flex-direction: column; padding: 20px; }
  .aegis-answer { padding: 32px 20px; }
  .aegis-shield-wrap { flex-direction: column; text-align: center; }
  .aegis-flow { flex-direction: column; }
  .aegis-flow-arrow { transform: rotate(90deg); }
  .aegis-commitments { grid-template-columns: 1fr; }
}

@media(max-width:768px) {
  .bd-grid { grid-template-columns: 1fr; }
  .bd-stats { gap: 24px; }
  .bd-num { font-size: 24px; }
  .ret-num { font-size: 32px; }
  .retention-compare { gap: 16px; }
  .ret-box { padding: 16px 24px; }
}

.oath-section { background: var(--navy-deep); padding: 80px 40px; text-align: center; position: relative; }
.oath-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(197,164,78,0.03) 0%, transparent 60%); }
.oath-inner-block { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.oath-shield { width: 64px; height: 64px; margin: 0 auto 24px; background: rgba(197,164,78,0.08); border: 1px solid rgba(197,164,78,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.oath-shield svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.oath-inner-block h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 16px; }
.oath-inner-block h2 em { font-style: italic; color: var(--gold); }
.oath-inner-block p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; }
.oath-promises { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.oath-promise { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.oath-promise .chk { color: var(--gold); font-size: 14px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy); text-align: center;
  padding: 100px 40px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(197,164,78,0.06) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white); line-height: 1.3; margin-bottom: 20px;
}
.cta-content h2 em { font-style: italic; color: var(--gold); }
.cta-content p {
  font-size: 16px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 36px;
}

/* ===== FOOTER (page-specific overrides) ===== */
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-nav {
  display: flex; gap: 24px; margin-top: 24px;
  width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto;
  padding-top: 24px; border-top: 1px solid rgba(197,164,78,0.08);
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin-top: 20px; }
  .data-value-card { max-width: 100%; }
  .trust-bar-inner { gap: 20px; }
  .data-value-card { max-width: 100%; }
  .dvc-header { padding: 18px 20px 16px; }
  .dvc-sources { padding: 16px 20px; }
  .dvc-value { padding: 18px 20px; }
  .dvc-value-num { font-size: 20px; }
  .trust-bar { padding: 12px 20px; }
  .trust-bar-inner { gap: 12px; }
  .trust-bar-divider { display: none; }
  .trust-badge { font-size: 10px; }
  .results-grid { grid-template-columns: 1fr; }
  .persona-intro { grid-template-columns: 1fr; }
  .phone-mock { max-width: 100%; border-radius: 24px; }
  .phone-notch { width: 126px; height: 22px; }
  .view-tabs { flex-wrap: wrap; }
  .results-grid { grid-template-columns: 1fr; }
  .pipe-src { grid-template-columns: 40px 1fr; }
  .pipe-src-detail { display: none; }
  .pipe-engine-inner { flex-wrap: wrap; }
  .pipe-engine-sub { display: block; margin-left: 0; margin-top: 2px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 280px)); }
  .coverage-grid { grid-template-columns: repeat(2, minmax(0, 320px)); }
}
@media (max-width: 768px) {
  .top-bar-inner { padding: 0 20px; }
  .top-bar-nav { display: none; }
  .nav-toggle { display: block; }
  .top-bar-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(197,164,78,0.2);
    padding: 16px 0;
  }
  .top-bar-nav.open .nav-item { padding: 14px 24px; }
  .top-bar-nav.open .nav-dropdown-menu {
    position: static; transform: none;
    opacity: 1; visibility: visible;
    background: rgba(0,0,0,0.2); box-shadow: none;
    border: none; border-radius: 0; padding-left: 20px;
  }
  .hero-inner { padding: 60px 20px; }
  .hero-promise { gap: 24px; }
  .persona-selector { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .persona-btn { padding: 16px 14px; }
  .persona-avatar { width: 56px; height: 56px; margin-bottom: 8px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: minmax(0, 400px); }
  .pricing-section { padding: 60px 20px; }
  .coverage-grid { grid-template-columns: minmax(0, 400px); }
  .coverage-section { padding: 60px 20px; }
  .roi-math { grid-template-columns: 1fr; }
  .roi-equals { transform: rotate(90deg); }
  .oath-promises { flex-direction: column; align-items: center; }
  .h-time-track { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .h-time-pill { min-width: 85px; padding: 12px 6px; }
  .pill-time { font-size: 11px; }
  .pill-label { font-size: 8px; }
}