/* ==========================================================================
   OOM DUB EDITION — COMPLEMENTARY STYLES & DUB.CO THEME INTEGRATION
   Works seamlessly with dub_style2.css (Dub's production Tailwind stylesheet).
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=rowan@300,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600;700&display=swap');

:root {
  --font-satoshi: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-geist-mono: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;
}

.font-display {
  font-family: 'Satoshi', var(--font-satoshi), -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.font-mono {
  font-family: 'Geist Mono', var(--font-geist-mono), ui-monospace, monospace !important;
}

html {
  font-family: var(--font-inter), system-ui, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Tab & Filter button active states */
.dub-tab-btn.active {
  background-color: #FFFFFF !important;
  color: #1F2937 !important;
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
}

.v-filter-btn.active {
  background-color: #FFFFFF !important;
  color: #111827 !important;
  font-weight: 700 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

/* Custom range input styling */
input[type="range"] {
  accent-color: #000000;
}

/* Bridge width helper */
.dub-bridge-bar {
  max-width: min(840px, calc(100vw - 2rem));
}

/* ==========================================================================
   JOIN ACTION BUTTON — AMBIENT PULSE & GLOSSY SHEEN ANIMATION
   ========================================================================== */
.btn-join-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  animation: join-pulse 3.2s infinite ease-in-out;
}

.btn-join-animated::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: join-sheen 3.6s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes join-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.5), 0 2px 8px rgba(0, 82, 255, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 82, 255, 0), 0 4px 16px rgba(0, 82, 255, 0.35);
    transform: scale(1.02);
  }
}

@keyframes join-sheen {
  0% { left: -80%; opacity: 0; }
  15% { opacity: 1; }
  35% { left: 160%; opacity: 0; }
  100% { left: 160%; opacity: 0; }
}

.btn-join-animated:hover {
  transform: translateY(-1px) scale(1.04) !important;
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.2), 0 8px 22px rgba(0, 82, 255, 0.4) !important;
}

.btn-join-animated:active {
  transform: scale(0.96) !important;
}

/* ==========================================================================
   LEAD SECTION: MORE* TOOLTIP & ORANGE FRICTION COHESIVE CARD
   ========================================================================== */
.lead-more-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.lead-more-tooltip {
  pointer-events: none;
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 22rem;
  max-width: calc(100vw - 2rem);
  padding: 0.875rem 1rem;
  background-color: #0a0a0a;
  color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  text-align: left;
  border: 1px solid #262626;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
}

.lead-more-tooltip .tooltip-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #60a5fa; /* blue-400 */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.lead-more-tooltip .tooltip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #60a5fa;
  display: inline-block;
  flex-shrink: 0;
}

.lead-more-tooltip .tooltip-body {
  font-family: 'Satoshi', var(--font-satoshi), sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #e5e5e5;
  line-height: 1.45;
  display: block;
}

.lead-more-tooltip .tooltip-body strong {
  color: #93c5fd;
  font-weight: 700;
}

.lead-more-wrapper:hover .lead-more-tooltip,
.lead-more-wrapper:focus .lead-more-tooltip,
.lead-more-wrapper:focus-within .lead-more-tooltip,
.lead-more-wrapper[data-open="true"] .lead-more-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.lead-more-tooltip-arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid #0a0a0a;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 0;
}

/* Orange Friction Wrapper & Reveal Card */
#orangeFrictionWrapper {
  position: relative;
}

#orangeTrigger {
  transition: all 0.2s ease;
  border-radius: 1rem;
  border: 1px solid transparent;
}

#orangeTrigger:hover,
#orangeFrictionWrapper:hover #orangeTrigger,
#orangeFrictionWrapper[data-open="true"] #orangeTrigger {
  background-color: #fff7ed; /* orange-50 */
  border-color: #fed7aa; /* orange-200 */
}

#orangeRevealCard {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

#orangeChevron {
  transition: transform 0.3s ease;
}

#orangeFrictionWrapper[data-open="true"] #orangeChevron {
  transform: rotate(180deg);
}

#leadChevron {
  transition: transform 0.3s ease;
}

#leadDrawerWrapper[data-open="true"] #leadChevron,
#leadDrawerTrigger[data-open="true"] #leadChevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   3-COLUMN DOSSIER GRID: EXACT 28px VERTICAL GUIDE ALIGNMENT
   ========================================================================== */
.dossier-icon-gutter {
  width: 1.25rem; /* 20px */
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.dossier-row {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px gap -> total text offset = 28px */
}

.dossier-aligned-content {
  margin-left: 1.75rem !important; /* exactly 28px (20px icon + 8px gap) */
}

.dossier-quote-container {
  margin-left: 1.75rem !important; /* exactly 28px */
  background-color: #FFF0D9 !important; /* Mild orange / warm peach background */
  border: 1px solid #FED7AA !important; /* Subtle orange border */
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   FOUR PILLARS & COHORT ONBOARDING INTERACTIVE STYLES
   ========================================================================== */
.pillar-tab-btn {
  background-color: #FFFFFF !important;
  border: 1.5px solid #E5E7EB !important;
  color: #4B5563 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pillar-tab-btn:hover {
  border-color: #CBD5E1 !important;
  background-color: #F8FAFC !important;
}

/* Active Selected Tab: Modern White Card with Vibrant Accent Border (NO BLACK!) */
.pillar-tab-btn.active {
  background-color: var(--pillar-active-bg, #FFFFFF) !important;
  border-color: var(--pillar-selection-color, #0052FF) !important;
  border-width: 2px !important;
  color: #0F172A !important;
  box-shadow: 0 4px 20px -2px rgba(0, 82, 255, 0.15), 0 2px 6px -1px rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-1.5px) !important;
}

.pillar-tab-btn.active .pillar-tab-num {
  color: var(--pillar-selection-color, #0052FF) !important;
  font-weight: 900 !important;
}

.pillar-tab-btn.active .pillar-tab-sub {
  color: #0F172A !important;
  font-weight: 700 !important;
}

.pillar-tab-btn:not(.active) .pillar-tab-num {
  color: #64748B !important;
}

.pillar-tab-btn:not(.active) .pillar-tab-sub {
  color: #64748B !important;
}

/* Mobile Pillar Accordion Styles */
.mobile-pillar-item {
  background-color: #FFFFFF !important;
  border: 1.5px solid #E5E7EB !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-pillar-item.active {
  background-color: var(--pillar-active-bg, #FFFFFF) !important;
  border-color: var(--pillar-selection-color, #0052FF) !important;
  border-width: 2px !important;
  box-shadow: 0 4px 20px -2px rgba(0, 82, 255, 0.12), 0 2px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.mobile-pillar-item.active .mobile-pillar-num {
  color: var(--pillar-selection-color, #0052FF) !important;
  font-weight: 900 !important;
}

.mobile-pillar-item:not(.active) .mobile-pillar-num {
  color: #64748B !important;
}

.mobile-pillar-item.active .mobile-pillar-chevron {
  transform: rotate(180deg) !important;
  color: var(--pillar-selection-color, #0052FF) !important;
}

.mobile-pillar-item:not(.active) .mobile-pillar-chevron {
  color: #94A3B8 !important;
}

.brand-pill {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  user-select: none;
}

.brand-pill:hover {
  border-color: rgba(255, 95, 31, 0.5) !important;
  color: #FFFFFF !important;
}

.brand-pill.selected {
  background-color: #FF5F1F !important;
  border-color: #FF5F1F !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(255, 95, 31, 0.4) !important;
}

/* ==========================================================================
   ANIMATED WHITE HERO BUTTON (Dub Classic Style with Subtle Shimmer & Breathe)
   ========================================================================== */
.dub-white-pill-btn {
  position: relative !important;
  overflow: hidden !important;
  background-color: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  color: #111827 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  animation: dub-btn-breathe 4s infinite ease-in-out !important;
}

.dub-white-pill-btn:hover {
  background-color: #F9FAFB !important;
  border-color: #D1D5DB !important;
  color: #000000 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(0, 82, 255, 0.10) !important;
  transform: translateY(-1px) !important;
}

.dub-white-pill-btn:active {
  transform: translateY(0px) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.dub-white-pill-btn::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -70% !important;
  width: 50% !important;
  height: 200% !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 82, 255, 0.16) 50%,
    transparent 100%
  ) !important;
  transform: rotate(25deg) !important;
  animation: dub-btn-shimmer 3.8s infinite ease-in-out !important;
  pointer-events: none !important;
}

.dub-white-pill-btn:not([data-open="true"]) svg {
  animation: dub-chevron-bounce 2s infinite ease-in-out !important;
}

.dub-white-pill-btn[data-open="true"] svg {
  transform: rotate(180deg) !important;
  animation: none !important;
}

/* ==========================================================================
   ANIMATED GREY HIGHLIGHT BUTTON (Lead & Four Pillars Sections)
   ========================================================================== */
.dub-grey-pill-btn {
  position: relative !important;
  overflow: hidden !important;
  background-color: #F1F3F5 !important; /* Premium modern grey */
  border: 1px solid #D1D5DB !important;
  color: #111827 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  animation: dub-btn-breathe 4s infinite ease-in-out !important;
}

.dub-grey-pill-btn:hover {
  background-color: #E5E7EB !important;
  border-color: #9CA3AF !important;
  color: #000000 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10), 0 0 0 3px rgba(0, 82, 255, 0.12) !important;
  transform: translateY(-1px) !important;
}

.dub-grey-pill-btn:active {
  transform: translateY(0px) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* Shimmer Light Beam Sweep across the grey surface */
.dub-grey-pill-btn::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -70% !important;
  width: 50% !important;
  height: 200% !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 100%
  ) !important;
  transform: rotate(25deg) !important;
  animation: dub-btn-shimmer 3.8s infinite ease-in-out !important;
  pointer-events: none !important;
}

@keyframes dub-btn-shimmer {
  0% {
    left: -70%;
  }
  30%, 100% {
    left: 170%;
  }
}

@keyframes dub-btn-breathe {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  50% {
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 2.5px rgba(0, 82, 255, 0.10);
  }
}

/* Subtle chevron bounce when closed to invite click */
.dub-grey-pill-btn:not([data-open="true"]) svg {
  animation: dub-chevron-bounce 2s infinite ease-in-out !important;
}

@keyframes dub-chevron-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2.5px);
  }
}

.dub-grey-pill-btn[data-open="true"] svg {
  transform: rotate(180deg) !important;
  animation: none !important;
}

/* ==========================================================================
   HERO SCROLL DOWN ARROW (Orange Chevron Bouncing Indicator)
   ========================================================================== */
#heroScrollDown,
#heroScrollDown svg {
  color: #FF5F1F !important;
  stroke: #FF5F1F !important;
}

.dub-arrow-bounce {
  animation: dub-arrow-bounce 2s infinite ease-in-out !important;
}

@keyframes dub-arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

#heroScrollDown:hover .dub-arrow-bounce {
  animation: none !important;
  transform: translateY(3px) scale(1.15) !important;
}

/* ==========================================================================
   SYNTHESIS CTA BUTTON — AMBIENT PULSE, SHEEN & ARROW NUDGE ANIMATION
   ========================================================================== */
.btn-explore-animated {
  position: relative;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-width: 380px !important;
  max-width: 100% !important;
  padding: 14px 38px !important;
  border-radius: 14px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  animation: explore-pulse 3.4s infinite ease-in-out;
}

@media (max-width: 640px) {
  .btn-explore-animated {
    min-width: unset !important;
    width: 100% !important;
    max-width: 340px !important;
    padding: 13px 24px !important;
  }
}

.btn-explore-animated::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: explore-sheen 3.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.btn-explore-animated svg {
  display: inline-block;
  animation: explore-arrow-down 2s infinite ease-in-out;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore-animated:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.2), 0 10px 25px rgba(0, 82, 255, 0.35) !important;
}

.btn-explore-animated:hover svg {
  animation: none !important;
  transform: translateY(3px) !important;
}

.btn-explore-animated:active {
  transform: scale(0.98) !important;
}

@keyframes explore-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.45), 0 3px 10px rgba(0, 82, 255, 0.22);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(0, 82, 255, 0), 0 5px 18px rgba(0, 82, 255, 0.32);
  }
}

@keyframes explore-sheen {
  0% { left: -80%; opacity: 0; }
  15% { opacity: 1; }
  35% { left: 160%; opacity: 0; }
  100% { left: 160%; opacity: 0; }
}

@keyframes explore-arrow-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* ==========================================================================
   VAULT 3-SLIDE ENHANCEMENTS
   ========================================================================== */
.stage-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  user-select: none;
}

@media (max-width: 640px) {
  .stage-chevron {
    display: none !important;
  }
}

.spec-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .spec-preview-grid {
    grid-template-columns: 4.5fr 4.5fr 3fr;
  }
}

.shared-link-container,
.shared-link-flex-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 840px) {
  .shared-link-container,
  .shared-link-flex-wrapper {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 2.5rem !important;
  }
  .shared-link-left-col,
  .shared-link-col-left {
    flex: 1 1 50% !important;
    max-width: 54% !important;
    min-width: 0 !important;
  }
  .shared-link-right-col,
  .shared-link-col-right {
    flex: 0 0 490px !important;
    max-width: 520px !important;
    min-width: 0 !important;
    margin-left: auto !important;
  }
}

@media (min-width: 1120px) {
  .shared-link-container,
  .shared-link-flex-wrapper {
    gap: 3.5rem !important;
  }
  .shared-link-right-col,
  .shared-link-col-right {
    flex: 0 0 520px !important;
  }
}

.zero-hero-orange {
  color: #C55A11 !important;
}

.shared-link-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.65rem;
}

.vault-row td {
  vertical-align: top !important;
}

.status-banner {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: #000000;
}

/* Fixed Spec Vault canvas height across tabs — prevents layout jump and keeps blank space below filtered rows */
.vault-table-container {
  min-height: 480px;
  transition: min-height 0.2s ease;
}

.vault-row {
  border-bottom: 1px solid #F3F4F6;
}

/* Horizontal scroll without scrollbars for filter tracks */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* WORKFLOW IN THE VAULT: 3-COLUMN PLACEHOLDER GRID */
.wf-3col-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .wf-3col-top {
    display: grid;
    grid-template-columns: 1.15fr 1.35fr 0.9fr;
    align-items: start;
    gap: 2rem;
  }
}

.wf-3col-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .wf-3col-bottom {
    display: grid;
    grid-template-columns: 1.15fr 1.35fr 0.9fr;
    align-items: start;
    gap: 2rem;
  }
}

.wf-dashed-line {
  width: 100%;
  border: none;
  border-top: 2.5px dashed #171717;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .wf-dashed-line {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}

/* WORKFLOW CARD PADDING REDUCTION (Compact all-round padding) */
.stage-item-card {
  padding: 14px 18px !important;
}
@media (min-width: 640px) {
  .stage-item-card {
    padding: 16px 24px !important;
  }
}

/* WORKFLOW COMPACT CARD LAYOUT (Single Row with Vertical Dashed Line matching Mockup) */
.wf-compact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .wf-compact-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.wf-card-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 0%;
  min-width: 0;
}
@media (min-width: 640px) {
  .wf-card-left {
    display: grid;
    grid-template-columns: 1.35fr 1.35fr 0.8fr;
    align-items: center;
    gap: 1.25rem;
  }
}

.wf-card-vdivider {
  width: 100%;
  border: none;
  border-top: 2px dashed #171717;
  margin: 0.5rem 0;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .wf-card-vdivider {
    width: 0;
    border-top: none;
    border-left: 2px dashed #171717;
    margin: 0.25rem 0.5rem;
    align-self: stretch;
  }
}

.wf-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .wf-card-right {
    width: 220px;
    max-width: 220px;
  }
}
@media (min-width: 1200px) {
  .wf-card-right {
    width: 240px;
    max-width: 240px;
  }
}

.wf-stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.wf-stage-num-1 {
  background-color: #9333ea;
  color: #ffffff;
}
.wf-stage-num-2 {
  background-color: #059669;
  color: #ffffff;
}
.wf-stage-num-3 {
  background-color: #2563eb;
  color: #ffffff;
}
.wf-stage-num-4 {
  background-color: #ea580c;
  color: #ffffff;
}

/* WORKFLOW VAULT FRAME PADDING REDUCTION (3 locations marked in feedback) */
.wf-header-bar {
  padding-bottom: 0px !important;
}

.wf-header-divider {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.stage-panel > .stage-item-card + .stage-item-card {
  margin-top: 10px !important;
}

.wf-panel-container {
  padding-bottom: 12px !important;
}

/* ==========================================================================
   DUB.CO BRAND TICKER & 3D FLIP COMPONENT
   ========================================================================== */
.brand-slot {
  position: relative;
  width: 100%;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.brand-flip-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.brand-flip-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

/* Brand Text Item: Normalized to site standards, bold, larger, dark color */
.brand-text-item {
  font-family: 'Satoshi', var(--font-satoshi), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 800 !important;
  font-size: 1rem !important; /* 16px */
  line-height: 1.25 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #171717 !important;
  white-space: nowrap !important;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}

@media (min-width: 640px) {
  .brand-text-item {
    font-size: 1.125rem !important; /* 18px */
  }
}

.brand-flip-item:hover .brand-text-item {
  color: #000000 !important;
  transform: scale(1.05);
}

/* Brand Logo Image: Explicit height, dark fill, no pale filters */
.brand-logo-container {
  height: 2.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.brand-logo-img {
  height: 1.75rem !important; /* 28px */
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  transition: transform 0.2s ease;
}

@media (min-width: 640px) {
  .brand-logo-img {
    height: 2rem !important; /* 32px */
  }
}

.brand-flip-item:hover .brand-logo-container {
  transform: scale(1.06);
}

/* Brand Ticker Eyebrow Header: Blue, Geist / Satoshi Semibold matching "THE SHARED LnK" */
.brand-ticker-eyebrow {
  color: #0052FF !important;
  font-family: 'Geist', 'Satoshi', var(--font-satoshi), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important; /* 12px mobile */
  line-height: 1.4 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

@media (min-width: 640px) {
  .brand-ticker-eyebrow {
    font-size: 0.8125rem !important; /* 13px desktop */
  }
}

/* Calculator Justified Text */
.calc-text-justify {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* ==========================================================================
   PIONEER MEMBERSHIP MODAL & POPUP DIALOGS (SOBER LIGHT DESIGN)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  animation: modalFadeIn 0.2s ease-out;
}

.modal-overlay.open {
  display: flex !important;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 94vh;
  overflow-y: auto;
  padding: 18px 20px;
  position: relative;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-satoshi), var(--font-inter), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (min-width: 640px) {
  .modal-container {
    padding: 22px 30px;
  }
}

@keyframes modalSlideUp {
  from {
    transform: translateY(16px) scale(0.98);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.15s;
}

.modal-close-btn:hover {
  color: #0F172A;
  background: #F1F5F9;
}

.step-pill-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-satoshi), var(--font-inter), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  color: #0052FF;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.25);
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: calc(100% - 48px);
  margin-right: 48px;
  line-height: 1.35;
}

.modal-field {
  margin-bottom: 9px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.modal-field label {
  font-size: 12px;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.modal-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 640px) {
  .modal-field-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.modal-field input,
.modal-field select {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 9px;
  padding: 7px 11px;
  color: #0F172A;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  width: 100%;
}

.modal-field input:focus,
.modal-field select:focus {
  border-color: #0052FF;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.12);
}

.modal-field select option {
  background: #FFFFFF;
  color: #0F172A;
}

.role-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.role-choice-btn {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 9px;
  padding: 7px;
  text-align: center;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s;
  user-select: none;
}

.role-choice-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.role-choice-btn.selected {
  background: #0052FF;
  border-color: #0052FF;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.25);
}

/* Brand Category Cards in Modal */
.brand-category-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.brand-category-title {
  font-size: 11.5px;
  color: #64748B;
  margin-bottom: 8px;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  text-transform: uppercase;
  font-weight: 600;
}

.brand-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.brand-pill-item {
  font-size: 12px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 9999px;
  padding: 4px 12px;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.brand-pill-item:hover {
  color: #0F172A;
  border-color: #94A3B8;
}

.brand-pill-item.selected {
  background: #0052FF;
  border-color: #0052FF;
  color: #FFFFFF;
  font-weight: 600;
}

/* Dynamic Calc Banner Box in Modal */
.calc-banner-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cb-val {
  font-family: var(--font-display, 'Geist', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: #0052FF;
}

/* Modal Action Buttons */
.btn-modal-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0052FF;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid #0052FF;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
  transition: all 0.2s ease;
  width: 100%;
}

.btn-modal-primary:hover {
  background: #0040CC;
  border-color: #0040CC;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.35);
}

.btn-modal-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0F172A;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #CBD5E1;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.btn-modal-secondary:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  transform: translateY(-1px);
}

/* Step 3 Success Action Buttons */
.modal-success-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .modal-success-btn-grid {
    grid-template-columns: 1fr !important;
  }
}

.btn-success-action {
  font-family: var(--font-inter), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-success-wa {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid #20BD5A;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  width: 100%;
}
.btn-success-wa:hover {
  background: #20BD5A !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-success-secondary {
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.btn-success-secondary:hover {
  background: #F8FAFC !important;
  border-color: #94A3B8 !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   COHORT SECTION & FOOTER ENHANCEMENTS
   ========================================================================== */
.font-black {
  font-weight: 900 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.footer-brand-logo {
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.footer-brand-logo:hover {
  transform: scale(1.06);
}

.footer-logo-meghmitra {
  height: 54px;
  width: auto;
}

.footer-logo-oom {
  height: 54px;
  width: auto;
}

.footer-logo-lnk {
  height: 48px;
  width: auto;
}

@media (min-width: 640px) {
  .footer-logo-meghmitra {
    height: 72px;
  }
  .footer-logo-oom {
    height: 72px;
  }
  .footer-logo-lnk {
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .footer-logo-meghmitra {
    height: 84px;
  }
  .footer-logo-oom {
    height: 84px;
  }
  .footer-logo-lnk {
    height: 74px;
  }
}


/* Toast Notification System */
#dubToast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  z-index: 999999;
  transform: translate(-50%, 100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 14px 28px;
  border-radius: 8px;
  background: #FF5C00;
  color: #000000;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 10px 30px -5px rgba(255, 92, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}
