/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
  /* HSL Tailored Color Palette */
  --deep-navy: #0B0F1A;
  --warm-cream: #F5F0E8;
  --saffron: #FF9933;
  --saffron-hover: #E88A2A;
  --saffron-light: rgba(255, 153, 51, 0.15);
  --saffron-verylight: rgba(255, 153, 51, 0.08);
  --saffron-ultralight: rgba(255, 153, 51, 0.06);
  --india-green: #138808;
  --india-green-light: rgba(19, 136, 8, 0.15);
  --muted-gold: #C9A96E;
  --gold-light: rgba(201, 169, 110, 0.15);
  --soft-charcoal: #1E2330;
  --faded-cream: #E8E0D4;
  --faded-cream-light: rgba(245, 240, 232, 0.7);
  --faded-cream-superlight: rgba(245, 240, 232, 0.4);
  --faded-charcoal: rgba(11, 15, 26, 0.6);
  --border-light: rgba(245, 240, 232, 0.12);
  --border-dark: rgba(11, 15, 26, 0.10);
  --evasion-red: #EF4444;
  --evasion-red-light: rgba(239, 68, 68, 0.15);
  
  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Dimensions */
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
}

/* ----------------------------------------------------
   BASE STYLES
   ---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--deep-navy);
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-navy);
  color: var(--warm-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

::selection {
  background-color: var(--saffron);
  color: var(--deep-navy);
}

/* ----------------------------------------------------
   REUSABLE UTILITIES
   ---------------------------------------------------- */
.content-max-width {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.bg-warm-cream {
  background-color: var(--warm-cream);
}

.bg-deep-navy {
  background-color: var(--deep-navy);
}

.bg-soft-charcoal {
  background-color: var(--soft-charcoal);
}

.text-deep-navy {
  color: var(--deep-navy);
}

.text-warm-cream {
  color: var(--warm-cream);
}

.text-saffron {
  color: var(--saffron);
}

.text-green {
  color: var(--india-green);
}

.text-evasion-red {
  color: var(--evasion-red);
}

.text-muted-gold {
  color: var(--muted-gold);
}

.text-faded-cream {
  color: var(--faded-cream-light);
}

.text-faded-charcoal {
  color: var(--faded-charcoal);
}

.text-muted {
  color: var(--faded-cream-superlight);
}

.font-mono {
  font-family: var(--font-mono);
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.no-underline {
  text-decoration: none;
}

.block {
  display: block;
}

.italic {
  font-style: italic;
}

/* Spacers */
.mb-badge { margin-bottom: 8px; }
.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 24px; }
.mb-card-heading { margin-bottom: 24px; }
.mb-subheading { margin-bottom: 16px; }
.mb-large { margin-bottom: 48px; }
.mt-large { margin-top: 64px; }

.space-y-paragraph p + p {
  margin-top: 24px;
}

.space-y-bullet li + li {
  margin-top: 12px;
}

.space-y-bullet-sm li + li {
  margin-top: 8px;
}

/* Typography Scale */
.text-display {
  font-weight: 700;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.text-h2 {
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.text-body {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.65;
}

.text-body-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subtitle-saffron {
  color: var(--saffron);
  margin-top: 12px;
}

/* Responsive Grids */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

@media (max-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.gap-medium { gap: 24px; }
.gap-large { gap: 64px; }

.align-center {
  align-items: center;
}

/* ----------------------------------------------------
   NAVIGATION BAR
   ---------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(245, 240, 232, 0.08);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--warm-cream);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 153, 51, 0);
  }
}

.nav-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--saffron);
  animation: pulse-glow 2s ease-in-out infinite;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

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

.nav-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--faded-cream-light);
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--saffron);
}

/* Mobile navigation drawer */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 1.5px;
  background-color: var(--warm-cream);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    height: 0;
    opacity: 0;
    background-color: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
    border-bottom: 0 solid var(--border-light);
  }
  
  .nav-links.open {
    height: 320px;
    opacity: 1;
    border-bottom-width: 1px;
  }
  
  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  
  /* Animate Toggle Button */
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--deep-navy);
}

#grain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px clamp(24px, 5vw, 80px) 40px;
}

.gov-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gov-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--saffron);
}

.hero-center {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-divider {
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: rgba(245, 240, 232, 0.4);
  margin-top: 24px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: var(--faded-cream-light);
  max-width: 480px;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.stats-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  padding-right: 24px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.125rem, 1.8vw, 1.75rem);
  font-weight: 500;
  color: var(--warm-cream);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faded-cream-superlight);
}

.stat-divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: var(--border-light);
  margin-right: 24px;
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
  .stat-item {
    width: 50%;
    margin-bottom: 16px;
    padding-right: 16px;
  }
  .stats-grid {
    width: 100%;
  }
}

.scroll-explore {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--faded-cream-superlight);
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-arrow {
  animation: bounce-down 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .scroll-explore {
    display: none;
  }
}

/* ----------------------------------------------------
   EXECUTIVE SUMMARY
   ---------------------------------------------------- */
.section-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--saffron);
}

.baseline-box {
  margin-top: 32px;
  padding: 24px;
  border-left-width: 3px;
  border-left-style: solid;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 153, 51, 0.06);
  color: var(--deep-navy);
}

.border-saffron {
  border-left-color: var(--saffron);
}

.quote-card {
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.quote-cite {
  margin-top: 24px;
  color: var(--faded-cream-superlight);
  font-style: normal;
}

/* ----------------------------------------------------
   MECHANISM SECTION
   ---------------------------------------------------- */
.kinetic-container {
  margin-bottom: 64px;
  overflow: hidden;
}

.kinetic-title {
  min-height: 1.2em;
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: var(--warm-cream);
  letter-spacing: -0.02em;
}

.mechanism-card {
  border-radius: var(--radius-lg);
  background-color: var(--soft-charcoal);
  border: 1px solid var(--border-light);
  padding: 32px;
  height: 100%;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.bg-saffron-light {
  background-color: var(--saffron-light);
}

.bg-gold-light {
  background-color: var(--gold-light);
}

.bg-saffron-verylight {
  background-color: var(--saffron-verylight);
}

.mechanism-list {
  list-style: none;
}

.mechanism-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.8);
}

.mechanism-list li + li {
  margin-top: 16px;
}

.mechanism-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.list-saffron li::before {
  background-color: var(--saffron);
}

.list-gold li::before {
  background-color: var(--muted-gold);
}

.card-gradient-border {
  position: relative;
  border-color: transparent;
  background-clip: padding-box;
}

.card-gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--saffron), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.scenarios-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.scenario-row:last-child {
  border-bottom: none;
}

.row-highlight {
  border-bottom-color: var(--saffron);
}

.scenario-rate {
  font-size: 0.95rem;
}

.scenario-val {
  color: var(--warm-cream);
  font-size: 0.95rem;
}

/* ----------------------------------------------------
   DATA TABLES & CONTAINERS
   ---------------------------------------------------- */
.table-container {
  background-color: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.table-scroll-container {
  position: relative;
  overflow-x: auto;
  width: 100%;
}

/* Webkit scrollbar stylings for table overflow */
.table-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.table-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.table-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(11, 15, 26, 0.15);
  border-radius: 3px;
}

.bg-deep-navy .table-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(245, 240, 232, 0.15);
}

.data-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.data-table th, .data-table td {
  padding: 18px 24px;
}

.data-table th {
  background-color: var(--soft-charcoal);
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
}

.data-table td {
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-bottom: 1px solid rgba(11, 15, 26, 0.06);
  color: var(--deep-navy);
}

.data-table tbody tr:nth-child(even) {
  background-color: rgba(11, 15, 26, 0.02);
}

.text-muted-td {
  color: var(--faded-charcoal);
  font-size: 0.8125rem;
}

/* Highlighted Table elements */
.table-row-highlight {
  background-color: transparent !important;
}

.border-top-saffron {
  border-top: 2px solid var(--saffron);
}

.bg-saffron-verylight {
  background-color: rgba(255, 153, 51, 0.04) !important;
}

.bg-saffron-verylight td {
  color: var(--deep-navy) !important;
}

/* Dark-themed versions of tables (Global export / Families summary) */
.dark-themed-table td {
  color: var(--warm-cream);
  border-bottom-color: rgba(245, 240, 232, 0.06);
}

.dark-themed-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.dark-themed-table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.04);
}

.dark-themed-table .text-muted-td {
  color: var(--faded-cream-superlight);
}

.dark-themed-table .table-row-highlight {
  background-color: rgba(255, 153, 51, 0.06) !important;
}

/* Left borders inside table rows */
.border-left-saffron-light {
  border-left: 2px solid var(--saffron);
}

.border-left-saffron-heavy {
  border-left: 3px solid var(--saffron);
}

.border-left-saffron-highlight {
  border-left: 3px solid var(--saffron);
}

.baseline-note {
  font-size: 0.75rem;
  margin-left: 8px;
}

/* ----------------------------------------------------
   FAMILIES INTERACTIVE CAROUSEL
   ---------------------------------------------------- */
.slider-section-height {
  min-height: 100vh;
}

.families-carousel-container {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
}

.carousel-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

/* Animate out slide styling */
.carousel-slide.slide-out-left {
  opacity: 0;
  transform: translateX(-60px);
}

.carousel-slide.slide-out-right {
  opacity: 0;
  transform: translateX(60px);
}

.height-full {
  height: 100%;
}

.slide-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 26, 0.98) 0%, rgba(11, 15, 26, 0.7) 40%, rgba(11, 15, 26, 0.1) 100%);
  pointer-events: none;
}

.mobile-title-overlay {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 240, 232, 0.12);
  padding: 16px;
  border-radius: var(--radius-md);
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.mobile-title-overlay .text-h3 {
  color: var(--warm-cream);
  font-size: 1.2rem;
  margin-bottom: 4px;
  text-shadow: none;
}

.mobile-title-overlay .family-badge {
  background-color: var(--saffron);
  color: var(--deep-navy);
  font-weight: 700;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
}

.desktop-title-block {
  margin-bottom: 24px;
}

.family-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--saffron-light);
  color: var(--saffron);
}

.bullets-red, .bullets-green {
  list-style: none;
}

.bullets-red li, .bullets-green li {
  position: relative;
  padding-left: 16px;
  color: var(--faded-cream-light);
}

.bullets-red li::before, .bullets-green li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.bullets-red li::before {
  background-color: var(--evasion-red);
}

.bullets-green li::before {
  background-color: var(--india-green);
}

.saving-banner {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: rgba(255, 153, 51, 0.08) !important;
  border: 1px solid rgba(255, 153, 51, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.saving-banner:hover {
  background: rgba(255, 153, 51, 0.12) !important;
  border-color: rgba(255, 153, 51, 0.35);
  box-shadow: 0 8px 30px rgba(255, 153, 51, 0.08);
  transform: translateY(-2px);
}

.bg-saffron-ultralight {
  background-color: var(--saffron-ultralight);
}

@media (max-width: 768px) {
  .desktop-title-block {
    display: none;
  }
  .mobile-title-overlay {
    display: block;
  }
  .slide-image-wrapper {
    min-height: 280px;
  }
}

/* Slide Navigation */
.carousel-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 10;
}

.nav-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.4);
  color: var(--warm-cream);
  background-color: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.nav-arrow-btn:hover {
  border-color: var(--saffron);
  background-color: var(--saffron-light);
}

.nav-arrow-btn:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
}

.dot-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(245, 240, 232, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.indicator-dot:hover {
  background-color: rgba(245, 240, 232, 0.5);
}

.indicator-dot:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
}

.indicator-dot.active {
  width: 32px;
  background-color: var(--saffron);
  border-radius: 5px;
}

/* Families click grid interaction */
.table-row-clickable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.table-row-clickable.active {
  background-color: rgba(255, 153, 51, 0.08) !important;
  border-left: 3px solid var(--saffron);
}

/* ----------------------------------------------------
   FOUR STRUCTURAL ADVANTAGES
   ---------------------------------------------------- */
.advantage-card {
  position: relative;
  border-radius: var(--radius-lg);
  background-color: var(--soft-charcoal);
  padding: 32px;
  overflow: hidden;
  height: 100%;
}

.adv-number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 1;
  color: rgba(255, 153, 51, 0.08);
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 10;
}

.adv-table-container {
  display: flex;
  flex-direction: column;
}

.adv-table-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.adv-table-row.border-light {
  border-bottom: 1px solid var(--border-light);
}

.adv-table-row span:nth-child(2) {
  text-align: right;
}

.adv-stats-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 4px;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adv-highlight {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  margin-top: 16px;
}

/* ----------------------------------------------------
   TECHNOLOGY CARDS
   ---------------------------------------------------- */
.tech-card {
  border-radius: var(--radius-lg);
  background-color: var(--soft-charcoal);
  border: 1px solid var(--border-light);
  padding: 32px;
  height: 100%;
}

.tech-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tech-cost-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.border-top-light {
  border-top: 1px solid var(--border-light);
}

.pt-small {
  padding-top: 16px;
}

.tech-detection-list {
  display: flex;
  flex-direction: column;
}

.detection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.detection-row.border-light {
  border-bottom: 1px solid var(--border-light);
}

.tech-phases-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase-item {
  display: flex;
  gap: 16px;
}

.phase-timeline {
  flex-shrink: 0;
  width: 80px;
  font-size: 0.75rem;
}

.phase-desc {
  font-size: 0.875rem;
}

/* ----------------------------------------------------
   GLOBAL EXPORT LAYERS
   ---------------------------------------------------- */
.export-quote {
  margin-top: 64px;
}

.leading-quote {
  line-height: 1.7;
}

/* ----------------------------------------------------
   SEVEN PHASES TIMELINE
   ---------------------------------------------------- */
.timeline-wrapper {
  position: relative;
  width: 100%;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(255, 153, 51, 0.3);
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
}

.timeline-items-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item-card {
  position: relative;
  display: flex;
  gap: 32px;
  width: 100%;
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-item-card {
    gap: 16px;
  }
}

.timeline-circle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  color: var(--saffron);
  background-color: var(--warm-cream);
  font-size: 1.125rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .timeline-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.timeline-content-body {
  flex-grow: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  background-color: #FFFFFF;
  padding: 32px;
}

@media (max-width: 768px) {
  .timeline-content-body {
    padding: 24px;
  }
}

.phase-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.timeline-badge {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.phase-impact-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.impact-col {
  flex-grow: 1;
  max-width: 75%;
}

.impact-yield {
  margin-left: auto;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .impact-col {
    max-width: 100%;
  }
  .impact-yield {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}

/* ----------------------------------------------------
   OBJECTIONS ACCORDION
   ---------------------------------------------------- */
.accordion-container {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--warm-cream);
  text-align: left;
}

.accordion-header h3 {
  padding-right: 24px;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--saffron);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.accordion-item.open .accordion-content {
  opacity: 1;
}

.accordion-content-inner {
  padding-bottom: 24px;
}

/* ----------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------- */
.contact-section {
  background: linear-gradient(to bottom, var(--deep-navy), #121829);
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--saffron);
  color: var(--deep-navy);
  border: none;
}

.btn-primary:hover {
  background-color: var(--saffron-hover);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--warm-cream);
  border: 1px solid rgba(245, 240, 232, 0.4);
}

.btn-secondary:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.text-faded-cream-light {
  color: rgba(245, 240, 232, 0.5);
}

.text-faded-cream-superlight {
  color: rgba(245, 240, 232, 0.3);
}

/* ----------------------------------------------------
   WEBSITE FOOTER
   ---------------------------------------------------- */
.footer-wrapper {
  background-color: var(--deep-navy);
  border-top: 1px solid var(--border-light);
  padding: 48px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-left {
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

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

.footer-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--faded-cream-superlight);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--warm-cream);
}

.footer-right {
  max-width: 240px;
}

.footer-right p {
  color: rgba(245, 240, 232, 0.25);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ----------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Custom delays for grids and child grids */
.grid-2-col .scroll-reveal:nth-child(2),
.grid-3-col .scroll-reveal:nth-child(2) {
  transition-delay: 150ms;
}

.grid-3-col .scroll-reveal:nth-child(3) {
  transition-delay: 300ms;
}

/* Custom dynamic letter reveals for mechanism/technology labels */
.char-span {
  display: inline-block;
  will-change: transform;
  transition: transform 0.5s ease-out;
}

/* ----------------------------------------------------
   INTERACTIVE NPCI FLOWCHART STYLES
   ---------------------------------------------------- */
.flowchart-container {
  width: 100%;
  margin-top: 24px;
}

.flowchart-canvas-wrapper {
  background: rgba(30, 35, 48, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px clamp(16px, 4vw, 48px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.flowchart-svg {
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* Connecting Line Animations */
.flow-line-pulse {
  stroke-dasharray: 20 180;
  stroke-dashoffset: 200;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.line-pulse-gold {
  animation-name: flow-gold;
}

.line-pulse-green {
  animation-name: flow-green;
  animation-duration: 3s;
}

.line-pulse-saffron {
  animation-name: flow-saffron;
  animation-duration: 3.5s;
}

@keyframes flow-gold {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes flow-green {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes flow-saffron {
  to {
    stroke-dashoffset: 0;
  }
}

/* Node Scaling Hover Effects */
.flow-node {
  transition: transform 0.3s ease;
  cursor: pointer;
  transform-origin: center;
}

.flow-node:hover {
  transform: scale(1.05);
}

.node-sender { transform-origin: 80px 175px; }
.node-npci { transform-origin: 400px 175px; }
.node-receiver { transform-origin: 720px 90px; }
.node-treasury { transform-origin: 720px 260px; }

/* Pulsing dot in NPCI Splitter */
@keyframes central-pulse {
  0% { r: 3px; opacity: 0.8; }
  50% { r: 7px; opacity: 0.3; }
  100% { r: 3px; opacity: 0.8; }
}

.pulse-dot {
  animation: central-pulse 2s ease-in-out infinite;
}

/* ----------------------------------------------------
   INTERACTIVE SIMULATOR STYLES
   ---------------------------------------------------- */
.simulator-toggle-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.sim-toggle-btn {
  background: rgba(30, 35, 48, 0.45);
  border: 1px solid rgba(245, 240, 232, 0.08);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--faded-cream-light);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sim-toggle-btn:hover {
  border-color: var(--saffron);
  color: var(--warm-cream);
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.15);
}

.sim-toggle-btn.active {
  background: var(--soft-charcoal);
  border-color: var(--saffron);
  color: var(--saffron);
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.25);
  transform: translateY(-2px);
}

.glass-panel {
  background: rgba(30, 35, 48, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  margin-top: 32px;
}

/* Custom Styled Range Sliders */
.slider-wrapper {
  width: 100%;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-title {
  font-size: 0.95rem;
  color: var(--faded-cream-light);
}

.slider-display-value {
  font-size: 1.15rem;
}

.custom-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(245, 240, 232, 0.08);
  border-radius: 3px;
  outline: none;
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.custom-range-slider:hover {
  background: rgba(245, 240, 232, 0.15);
}

/* webkit slider thumb */
.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--saffron);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 0 8px rgba(255, 153, 51, 0.4);
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.7);
}

/* firefox slider thumb */
.custom-range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--saffron);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 0 8px rgba(255, 153, 51, 0.4);
}

.custom-range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.7);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--faded-cream-superlight);
}

/* Outputs column styling */
.yield-result-box {
  padding: 28px;
  border-radius: var(--radius-md);
  border-left-width: 4px;
  border-left-style: solid;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.border-left-saffron-heavy {
  border-left-color: var(--saffron);
}

.border-left-green {
  border-left-color: var(--india-green);
  border-left-width: 4px;
  border-left-style: solid;
}

/* Progress bar comparison styling */
.comparison-bar-container {
  width: 100%;
  position: relative;
}

.bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--faded-cream-light);
  margin-bottom: 8px;
}

.bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(245, 240, 232, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--saffron);
  border-radius: 4px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

/* Allocation cards */
.allocation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.alloc-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(11, 15, 26, 0.25);
  border: 1px solid rgba(245, 240, 232, 0.05);
}

.alloc-title {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faded-cream-superlight);
}

.alloc-val {
  font-size: 1.25rem;
  margin-top: 4px;
  color: var(--saffron);
}

/* Profile Tab Toggle styles in savings calculator */
.profile-tabs {
  display: flex;
  background: rgba(11, 15, 26, 0.4);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-md);
  padding: 4px;
  width: 100%;
}

.profile-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--faded-cream-superlight);
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-tab-btn.active {
  background: var(--soft-charcoal);
  color: var(--saffron);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Impact layout grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.impact-col-card {
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid transparent;
}

.border-saffron {
  border-color: var(--saffron-light);
}

.impact-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.04);
}

.impact-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding-top: 14px;
  margin-top: 8px;
}

.impact-total-row.border-top-saffron {
  border-top: 1.5px solid var(--saffron);
}

.savings-glow-card {
  box-shadow: 0 0 30px rgba(19, 136, 8, 0.08);
  border: 1px solid rgba(19, 136, 8, 0.15);
  transition: all 0.3s ease;
}

.p-small { padding: 12px; }
.p-medium { padding: 24px; }
.rounded { border-radius: var(--radius-md); }

/* Responsive adjustments for Simulation section */
@media (max-width: 1024px) {
  .simulator-toggle-container {
    flex-direction: column;
    align-items: stretch;
  }
  .alloc-val {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .allocation-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------
   INTERACTIVE COMPARISON CHART STYLES
   ---------------------------------------------------- */
.revenue-chart-layout {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 480px;
  padding: 40px 20px 20px;
  position: relative;
  background: rgba(11, 15, 26, 0.35);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 240, 232, 0.05);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .revenue-chart-layout {
    flex-direction: column;
    height: auto;
    gap: 48px;
    align-items: center;
    padding: 24px 12px;
  }
  .chart-connector-column {
    transform: rotate(90deg);
    margin: 20px 0;
    height: auto !important;
  }
  .connector-arrow-line {
    width: 60px !important;
  }
}

.chart-stack-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar-outer {
  width: 120px;
  height: 320px;
  background: rgba(245, 240, 232, 0.04);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(245, 240, 232, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.3);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-bar-segment {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.chart-bar-segment:hover {
  filter: brightness(1.15);
}

/* Tooltip on hover */
.chart-bar-segment::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(11, 15, 26, 0.95);
  border: 1.5px solid rgba(245, 240, 232, 0.15);
  color: var(--warm-cream);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.chart-bar-segment:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.segment-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.segment-val {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 2px;
}

/* Colors for Current System */
.segment-gst { background: linear-gradient(to bottom, #EF4444, #C22F2F); }
.segment-pit { background: linear-gradient(to bottom, #FF9933, #D67A1B); }
.segment-cit { background: linear-gradient(to bottom, #E88A2A, #BA6811); }
.segment-others-current { background: linear-gradient(to bottom, #C9A96E, #9C7E47); }

/* Colors for UTT System */
.segment-rtgs { background: linear-gradient(to bottom, #138808, #0E6506); }
.segment-neft { background: linear-gradient(to bottom, #2ECC71, #25A25A); }
.segment-upi { background: linear-gradient(to bottom, #1ABC9C, #16A085); }
.segment-others-utt { background: linear-gradient(to bottom, #3498DB, #2980B9); }

/* Connector Column */
.chart-connector-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 320px;
  position: relative;
  z-index: 5;
}

.connector-arrow-line {
  position: absolute;
  width: 100px;
  height: 2px;
  background: dashed rgba(245, 240, 232, 0.15);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.connector-badge {
  background: var(--saffron);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.connector-badge.green {
  background: var(--india-green) !important;
  color: var(--warm-cream) !important;
  box-shadow: 0 0 20px rgba(19, 136, 8, 0.4) !important;
}

.connector-subtext {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faded-cream-superlight);
  margin-top: 8px;
  position: relative;
  z-index: 2;
}


