:root {
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --bg-main: #050608;
  --brand-blue: #0a192f;
  --brand-gold: #c5a059;
  --white: #ffffff;
  --slate-50: rgba(255, 255, 255, 0.03);
  --slate-100: rgba(255, 255, 255, 0.08);
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #8b9bb4;
  --slate-600: #cbd5e1;
  --slate-900: #0f172a;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.8), 0 8px 10px -6px rgb(0 0 0 / 0.8);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--slate-200);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}
p {
  color: var(--slate-400);
  font-weight: 300;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.text-center {
  text-align: center;
}
.mb-20 {
  margin-bottom: 5rem;
}
.micro-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: 2.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

/* -- Navbar -- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
}
.nav-transparent {
  background-color: transparent;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.nav-scrolled {
  background-color: rgba(10, 11, 14, 0.95);
  backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-group img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.nav-brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: white;
}
.desktop-nav-links {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .desktop-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
  }
  .desktop-nav-links a:hover {
    color: var(--brand-gold);
  }
}
.mobile-toggle-btn {
  display: block;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .mobile-toggle-btn {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
.hidden {
  display: none !important;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--brand-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.mobile-menu-hidden {
  display: none;
}
.mobile-menu-visible {
  display: flex;
}

/* -- Hero (Migrated) -- */
.hero-section {
  background-color: #020617;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-base-bg {
  background: linear-gradient(to bottom, #020617, #0a192f, #020617);
  position: absolute;
  inset: 0;
}

.nebula-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  transform: translateZ(0);
}
.nebula-1 {
  top: -10%;
  left: -10%;
  width: 100vw;
  height: 100vw;
  background: rgba(30, 58, 138, 0.2);
  filter: blur(120px);
}
.nebula-2 {
  bottom: -20%;
  right: -10%;
  width: 80vw;
  height: 80vw;
  background: rgba(49, 46, 129, 0.2);
  filter: blur(150px);
  animation-delay: -5s;
}
.hero-spotlight {
  opacity: 0.3;
  transform: translateZ(0);
  z-index: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(197, 160, 89, 0.15) 0%,
    transparent 50%
  );
  position: absolute;
  margin: 0;
  inset: 0;
}

.orbital-rings {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
  position: absolute;
  inset: 0;
}
.hero-orbit {
  position: absolute;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  border-width: 0.5px;
  transform: translateZ(0);
}

.skyscape {
  transform: translateZ(0);
  position: absolute;
  inset: 0;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-20 {
  opacity: 0.2;
}

.shooting-star {
  position: absolute;
  height: 1px;
  width: 150px;
  background: linear-gradient(to right, transparent, white, transparent);
  left: -10%;
  transform: translateZ(0);
  z-index: 10;
  pointer-events: none;
}
.hero-noise {
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transform: translateZ(0);
}

.hero-chip-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 9999px;
}
.hero-chip-text {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c5a059;
}
.hero-chip-line {
  height: 1px;
  width: 3rem;
  background-color: rgba(197, 160, 89, 0.3);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: white;
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin-bottom: 2.5rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 8rem;
  }
  .hidden-md-block {
    display: inline;
  }
}
@media (max-width: 767px) {
  .hidden-md-block {
    display: none;
  }
}
.hero-title-gradient {
  background: linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    rgba(197, 160, 89, 0.5)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-new {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
  margin-bottom: 3.5rem;
  max-width: 48rem;
  font-weight: 300;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero-subtitle-new {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}
.btn-explore,
.btn-investor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  border-radius: 0.125rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.btn-explore {
  background-color: #c5a059;
  color: #020617;
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.2);
}
.btn-investor {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.btn-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.3s;
  color: inherit;
}
.btn-hover-bg {
  position: absolute;
  inset: 0;
  background-color: white;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.btn-explore:hover .btn-hover-bg {
  transform: translateY(0);
}
.slide-right-bg {
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 1s;
}
.btn-investor:hover .slide-right-bg {
  transform: translateX(100%);
}

.icon-arrow,
.icon-file {
  width: 1.25rem;
  height: 1.25rem;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.btn-explore:hover .icon-arrow {
  transform: translateX(4px);
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-80 {
  opacity: 0.8;
}
.btn-investor:hover .btn-content {
  opacity: 1;
}
.btn-investor:hover .icon-file {
  opacity: 0.8;
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  padding-top: 2.5rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trust-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.hero-scroll span {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.2);
}
.scroll-line-gradient {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(197, 160, 89, 0.5), transparent);
}

/* Animations */
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes nebula-pulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) translate(20px, 10px);
    opacity: 0.5;
  }
}
@keyframes shooting-star {
  0% {
    transform: translateX(0) translateY(0) rotate(-25deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    transform: translateX(100vw) translateY(40vh) rotate(-25deg);
    opacity: 0;
  }
  100% {
    transform: translateX(100vw) translateY(40vh) rotate(-25deg);
    opacity: 0;
  }
}

.star-twinkle {
  animation: twinkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  position: absolute;
}
.nebula-animate {
  animation: nebula-pulse 20s ease-in-out infinite;
  will-change: transform, opacity;
}
.orbit-animate {
  animation: orbit var(--duration) linear infinite;
  will-change: transform;
}
.orbit-animate-reverse {
  animation: orbit-reverse var(--duration) linear infinite;
  will-change: transform;
}
.shooting-star-animate {
  animation: shooting-star 8s linear infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

@keyframes entrance-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes entrance-scale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes entrance-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-entrance {
  animation: entrance-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.hero-chip-entrance {
  animation: entrance-scale 0.5s ease-out 0.4s both;
  opacity: 0;
}
.hero-stats-new {
  animation: entrance-fade 1s ease-out 1s both;
  opacity: 0;
}
.hero-scroll-entrance {
  animation: entrance-fade 1s ease-out 2s both;
  opacity: 0;
}
.pulse-ani {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5a059;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
}

/* -- Platform Overview -- */
.platform-overview {
  background-color: var(--bg-main);
  padding: 8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.portal-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .portal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portal-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.portal-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 125, 38, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.portal-item h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.portal-item:hover h3 {
  color: var(--brand-gold);
}
.portal-item p {
  font-size: 0.95rem;
  color: var(--slate-400);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.portal-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
}
.portal-item:hover .portal-link svg {
  transform: translateX(4px);
  transition: transform 0.3s;
}

/* -- Scale Section -- */
/* -- New Scale Section V2 -- */
.scale-section-v2 {
  background-color: #0a192f;
  color: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8rem 0;
}

.scale-bg-hazard {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  overflow: hidden;
  pointer-events: none;
}

.scale-globe {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  animation: pulseGlobe 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseGlobe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.scale-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(197, 160, 89, 0.1) 1px,
    transparent 0
  );
  background-size: 60px 60px;
}

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

.scale-header {
  max-width: 48rem; /* 3xl */
  margin-bottom: 5rem; /* mb-20 */
}

.scale-header .micro-label {
  display: block;
  margin-bottom: 1rem;
  color: #c5a059;
}

.scale-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.025em; /* tracking-tight */
}
@media (min-width: 768px) {
  .scale-title {
    font-size: 3.75rem;
  }
}

.scale-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 36rem; /* max-w-xl */
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem; /* pt-16 */
}

@media (min-width: 768px) {
  .scale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .scale-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.stat-group2 {
  position: relative;
}

.stat-value {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  color: #c5a059;
  margin-bottom: 0.75rem; /* mb-3 */
  letter-spacing: -0.05em; /* tracking-tighter */
  transform-origin: left;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem; /* text-5xl */
  }
}

.stat-group2:hover .stat-value {
  transform: scale(1.05);
}

.stat-label {
  color: rgba(255, 255, 255, 0.4) !important;
  line-height: 1.25; /* leading-tight */
}

.stat-underline {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 2rem; /* w-8 */
  height: 2px;
  background-color: rgba(197, 160, 89, 0.3); /* brand-gold/30 */
  transition: all 0.5s;
}

.stat-group2:hover .stat-underline {
  width: 100%;
  background-color: #c5a059; /* brand-gold opacity 1 */
}

/* -- Quote Section -- */
.quote-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1fr 10fr 1fr;
  }
  .hidden-lg {
    display: block;
  }
}
.quote-accent {
  height: 16rem;
  width: 1px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(197, 160, 89, 0.4),
    transparent
  );
}
.hidden-lg {
  display: none;
}
@media (min-width: 1024px) {
  .hidden-lg {
    display: block;
  }
}
.quote-content {
  text-align: center;
}
@media (min-width: 1024px) {
  .quote-content {
    text-align: left;
  }
}
.quote-header {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  color: var(--slate-900);
}
.quote-header .micro-label {
  color: var(--brand-gold);
  letter-spacing: 0.4em;
  font-size: 0.625rem;
}
.quote-line {
  width: 3rem;
  height: 1px;
  background: rgba(197, 160, 89, 0.3);
}
.quote-text {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.1;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .quote-text {
    font-size: 4.5rem;
  }
}
.italic {
  font-style: italic;
}
.quote-author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .quote-author-block {
    flex-direction: row;
    align-items: flex-end;
  }
}
.quote-avatar-wrapper {
  position: relative;
}
.quote-avatar-glow {
  position: absolute;
  inset: -8px;
  background: linear-gradient(
    to top right,
    var(--brand-gold),
    var(--brand-blue)
  );
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(12px);
  transition: opacity 0.3s;
}
.quote-avatar {
  width: 6rem;
  height: 6rem;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.quote-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 2rem;
  height: 2rem;
  background: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  border: 2px solid var(--white);
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: var(--brand-blue);
}
.quote-author-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .quote-author-info {
    text-align: left;
  }
}
.quote-author-info h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.025em;
}
.quote-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 1rem 0;
}
@media (min-width: 1024px) {
  .quote-divider {
    width: 12rem;
  }
}
.quote-grid-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  stroke: rgba(148, 163, 184, 0.1);
  fill: none;
}
.quote-bg-shape {
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  color: var(--brand-blue);
  opacity: 0.05;
  transform: rotate(12deg);
  pointer-events: none;
}

/* -- Utility Classes for SVGs & Form Fixes -- */
.w-4 {
  width: 1rem;
}
.h-4 {
  height: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.h-8 {
  height: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.w-96 {
  width: 24rem;
}
.h-96 {
  height: 24rem;
}
.inline {
  display: inline-block;
  vertical-align: middle;
}
.absolute {
  position: absolute;
}
.inset-0 {
  inset: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.rotate-180 {
  transform: rotate(180deg);
}
.rotate-12 {
  transform: rotate(12deg);
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.gap-8 {
  gap: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-white {
  color: var(--white);
}
.text-slate-500 {
  color: var(--slate-500);
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .md-text-5xl {
    font-size: 3rem;
  }
}

/* -- Partners (Trusted) Section -- */
.trusted-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8rem 0;
  background-color: #f8fafc;
}
.trusted-cards-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .trusted-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.trusted-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.trusted-card:hover {
  border-color: var(--brand-gold);
}
.trusted-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  transition: color 0.3s;
}
.trusted-card:hover h3 {
  color: var(--brand-gold);
}
.trusted-explore {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-gold);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trusted-section .section-title {
  color: var(--brand-blue) !important;
}
.trusted-section .section-header p {
  color: #475569 !important; /* slate-600 */
}
.trusted-card p {
  color: #64748b !important; /* slate-500 */
}
.trusted-explore {
  margin-top: 1.5rem;
}

.trusted-performance-banner {
  background-color: var(--brand-blue);
  border: none;
  border-radius: 1.5rem;
  padding: 3rem;
}
.trusted-performance-grid {
  display: grid;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .trusted-performance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -- Governance -- */
.governance-section {
  padding: 8rem 0;
  background-color: #0a0f1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.governance-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .governance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gov-card {
  padding: 3rem 2.5rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 1.5rem;
  transition: var(--transition-smooth);
}
.gov-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--brand-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.gov-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: var(--brand-gold);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}
.gov-card:hover .gov-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(242, 125, 38, 0.1);
  border-color: rgba(242, 125, 38, 0.3);
}

/* -- Team Section -- */
.team-section {
  padding: 8rem 0;
  background-color: var(--bg-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.team-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 6rem;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-card {
  position: relative;
}
.team-image-wrapper {
  aspect-ratio: 4/5;
  background: var(--slate-100);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transform: scale(1.05);
  transition: var(--transition-smooth);
}
.team-card:hover .team-image-wrapper img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1);
}
.team-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.9), transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}
.team-card:hover .team-image-overlay {
  opacity: 0;
}
.team-linkedin {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: var(--brand-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(1rem) scale(0.9);
  transition: all 0.4s;
  z-index: 10;
}
.team-card:hover .team-linkedin {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(10, 11, 14, 0.5) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 4rem;
  overflow: hidden;
  text-align: center;
}

/* -- Insights Section -- */
.insights-section {
  padding: 8rem 0;
  background-color: #0a0f1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.insights-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.insight-card {
  background: var(--slate-50);
  border-radius: 1.5rem;
  border: 1px solid var(--slate-100);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.insight-card:hover {
  border-color: rgba(242, 125, 38, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.insight-image-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.insight-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.8);
}
.insight-card:hover .insight-image-wrapper img {
  transform: scale(1.05);
  filter: brightness(1);
}
.insight-content {
  padding: 2.5rem;
}

/* -- Timeline / Evolution Section -- */
.timeline-section {
  padding: 10rem 0;
  background-color: var(--bg-main);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.timeline-bg-gradient {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(242, 125, 38, 0.05) 0%,
    transparent 70%
  );
}
.timeline-grid-pattern {
  background-image:
    linear-gradient(rgba(242, 125, 38, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 125, 38, 0.1) 1px, transparent 1px);
  background-size: 100px 100px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black,
    transparent 80%
  );
}
.timeline-scroll-container {
  display: flex;
  gap: 4rem;
  overflow-x: auto;
  padding-bottom: 4rem;
  scroll-snap-type: x mandatory;
  padding-top: 10rem;
  scrollbar-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc((100vw - 1232px) / 2));
  padding-right: max(24px, calc((100vw - 1232px) / 2));
  box-sizing: border-box;
}
.timeline-scroll-container::-webkit-scrollbar {
  display: none;
}
.timeline-progress-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  display: none;
  top: calc(10rem + 258px);
}
@media (min-width: 768px) {
  .timeline-progress-bar {
    display: block;
  }
}
.timeline-progress-fill {
  height: 100%;
  background: var(--brand-gold);
  width: 0%;
}
.timeline-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav-btn:hover:not(:disabled) {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(242, 125, 38, 0.1);
}
.nav-btn.active {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(242, 125, 38, 0.1);
}
.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.timeline-card {
  min-width: 360px;
  scroll-snap-align: center;
  position: relative;
  perspective: 2000px;
}
@media (min-width: 768px) {
  .timeline-card {
    min-width: 550px;
  }
}
.timeline-marker {
  position: absolute;
  top: -118px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid var(--bg-main);
  z-index: 20;
  transition: all 1s;
}
.timeline-active .timeline-marker {
  background: var(--brand-gold);
  transform: scale(1.25);
  box-shadow: 0 0 30px rgba(242, 125, 38, 0.5);
}
.timeline-marker.inactive {
  background: rgba(255, 255, 255, 0.1);
}
.timeline-year-label {
  position: absolute;
  top: -144px;
  left: 0;
  font-weight: 900;
  font-size: 2.25rem;
  transition: all 1s;
  color: rgba(255, 255, 255, 0.2);
}
.timeline-active .timeline-year-label {
  color: var(--white);
  transform: scale(1.1);
}
.timeline-content {
  padding: 3.5rem;
  border-radius: 2rem;
  border: 1px solid;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.box-glow {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 125, 38, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.box-dim {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.05);
  opacity: 0.5;
}
.timeline-content:hover {
  border-color: rgba(242, 125, 38, 0.6);
  transform: translateY(-5px);
}

/* -- FAQ Section -- */
.faq-section {
  padding: 8rem 0;
  background-color: #0a0f1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-accordion {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(242, 125, 38, 0.4);
}
.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  transition: transform 0.3s;
  color: var(--brand-gold);
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 2rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
  padding-top: 1rem;
  line-height: 1.6;
  color: var(--slate-400);
}

/* -- Connect Section -- */
.connect-section {
  padding: 8rem 0;
  background-color: var(--bg-main);
}
.dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}
.connect-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media (min-width: 768px) {
  .connect-info h2 {
    font-size: 3.5rem;
  }
}
.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(242, 125, 38, 0.1);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 125, 38, 0.2);
  flex-shrink: 0;
}
.connect-form {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  width: 100%;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--brand-gold);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}
.submit-btn:hover {
  background: #d9691b;
  transform: translateY(-2px);
}

/* -- Final CTA -- */
.final-cta {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, #0a0f1a 0%, rgba(10, 11, 14, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* -- Footer -- */
.footer {
  background: #020406;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}
.footer-logo {
  width: 40px;
  height: 40px;
  background: var(--brand-gold);
  color: var(--white);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a:hover {
  color: var(--brand-gold);
}

/* -- Platform Overview (Migrated) -- */
.platform-section {
  background-color: #ffffff;
  padding: 5rem 1.5rem;
  color: #0f172a;
}
.platform-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.platform-header {
  max-width: 56rem;
  margin: 0 auto 5rem auto;
  text-align: center;
}
.platform-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
}
@media (min-width: 768px) {
  .platform-title {
    font-size: 3.75rem;
  }
}
.platform-subtitle {
  font-size: 1.25rem;
  color: #475569;
  font-weight: 300;
  line-height: 1.625;
}
.platform-subtitle p + p {
  margin-top: 1.5rem;
}

.platform-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.platform-pillar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pillar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.pillar-icon {
  padding: 1rem;
  background-color: white;
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg {
  width: 2rem;
  height: 2rem;
}
.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-blue);
}

.products-list {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: 1fr;
  flex: 1;
}
.product-card {
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}
.product-card:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-0.3125rem);
  border-color: transparent;
}
.product-card-hover-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--brand-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-card-hover-border {
  opacity: 1;
}
.product-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
  transition: color 0.3s;
}
.product-card:hover .product-name {
  color: var(--brand-gold);
}
.product-desc {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-learn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  margin-top: auto;
}
.product-card:hover .btn-learn-more {
  color: var(--brand-blue);
}
.btn-learn-more .arrow-wrapper {
  display: inline-flex;
  transition: transform 0.3s;
}
.product-card:hover .btn-learn-more .arrow-wrapper {
  transform: translateX(4px);
}

/* -- Reusable Modal -- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: rgba(10, 11, 14, 0.9);
  backdrop-filter: blur(12px);
}
.modal-overlay.hidden {
  display: none !important;
}
.modal-content {
  background-color: white;
  width: 100%;
  max-width: 72rem;
  max-height: 90vh;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--slate-200);
}

.modal-enter {
  animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalEnter {
  0% {
    opacity: 0;
    transform: scale(0.98) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  height: 3.5rem;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
  background-color: rgba(248, 250, 252, 0.5);
  flex-shrink: 0;
}
.modal-close-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close-btn:hover {
  background-color: var(--slate-100);
  color: var(--brand-blue);
}
.modal-close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: color 0.3s;
}

.modal-body-scrollable {
  overflow-y: auto;
  flex: 1;
}
.modal-body-scrollable::-webkit-scrollbar {
  display: none;
}
.modal-body-scrollable {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-grid {
  display: grid;
}
@media (min-width: 1024px) {
  .modal-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.modal-main-col {
  padding: 3rem;
}
@media (min-width: 1024px) {
  .modal-main-col {
    grid-column: span 8 / span 8;
    padding: 4rem;
  }
}
@media (max-width: 1023px) {
  .modal-main-col {
    padding: 2.5rem;
  }
}

.modal-product-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.modal-logo-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
  overflow: hidden;
  border: none;
  background-color: var(--brand-blue);
  color: white;
}
.logo-img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-titles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .modal-name {
    font-size: 3.75rem;
  }
}
.modal-tagline {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}
.modal-hero-text {
  font-size: 1.25rem;
  color: #475569;
  font-weight: 300;
  line-height: 1.625;
  max-width: 42rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .modal-hero-text {
    font-size: 1.5rem;
  }
}

.modal-intent-box {
  padding: 2rem;
  background-color: var(--slate-50);
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  margin-bottom: 2.5rem;
}
.modal-small-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  display: block;
}
.modal-intent-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.25;
  margin: 0;
}

.modal-capabilities {
  margin-top: 2.5rem;
}
.modal-cap-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.modal-cap-header .modal-small-label {
  color: var(--slate-400);
  margin-bottom: 0;
  white-space: nowrap;
}
.modal-divider {
  flex: 1;
  height: 1px;
  background-color: var(--slate-100);
}

.modal-features-grid {
  display: grid;
  gap: 2.5rem 3rem;
}
@media (min-width: 768px) {
  .modal-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modal-feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-feature-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-feature-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  transition: background-color 0.3s;
}
.modal-feature-title {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.modal-feature-desc {
  color: #64748b;
  font-weight: 300;
  line-height: 1.625;
  font-size: 0.875rem;
  margin: 0;
}

.modal-sidebar-col {
  background-color: rgba(248, 250, 252, 0.5);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border-left: 1px solid var(--slate-100);
}
@media (min-width: 1024px) {
  .modal-sidebar-col {
    grid-column: span 4 / span 4;
    padding: 4rem;
  }
}
@media (max-width: 1023px) {
  .modal-sidebar-col {
    padding: 2.5rem;
    border-left: none;
    border-top: 1px solid var(--slate-100);
  }
}

.modal-status-section .modal-small-label {
  color: var(--slate-400);
  margin-bottom: 1rem;
}
.modal-status-list {
  display: flex;
  flex-direction: column;
}
.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-100);
}
.status-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}
.status-val {
  font-size: 0.75rem;
  color: var(--brand-blue);
  font-weight: 700;
}

.modal-metrics-section {
  margin-bottom: auto;
}
.modal-metrics-section .modal-small-label {
  color: var(--slate-400);
  margin-bottom: 2rem;
}
.modal-stats-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.modal-stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.modal-stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  font-weight: 700;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.modal-btn-primary {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1.25rem 0;
  color: white;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.modal-btn-secondary {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1.25rem 0;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.modal-btn-secondary:hover {
  background-color: white;
  color: var(--brand-blue);
}

/* Theme Modifiers */
.modal-logo-blue {
  background-color: #1b5063;
  color: white;
}
.modal-logo-purple {
  background-color: #9333ea;
  color: white;
} /* purple-600 */
.modal-logo-green {
  background-color: #16a34a;
  color: white;
} /* green-600 */

.modal-icon-blue {
  background-color: #eff6ff;
  color: #2563eb;
} /* blue-50 text-blue-600 */
.modal-icon-purple {
  background-color: #faf5ff;
  color: #9333ea;
} /* purple-50 text-purple-600 */
.modal-icon-green {
  background-color: #f0fdf4;
  color: #16a34a;
} /* green-50 text-green-600 */

.modal-btn-blue {
  background-color: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}
.modal-btn-blue:hover {
  background-color: #1d4ed8;
}
.modal-btn-purple {
  background-color: #9333ea;
  box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.2);
}
.modal-btn-purple:hover {
  background-color: #7e22ce;
}
.modal-btn-green {
  background-color: #16a34a;
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
}
.modal-btn-green:hover {
  background-color: #15803d;
}
\n/* Global Tailwind replication fixes */
.text-blue-500 {
  color: #3b82f6;
}
.text-purple-500 {
  color: #a855f7;
}
.text-green-500 {
  color: #22c55e;
}

.text-slate-400 {
  color: var(--slate-400);
}
.text-white {
  color: var(--white);
}
.text-brand-gold {
  color: var(--brand-gold) !important;
}
.text-brand-blue {
  color: var(--brand-blue) !important;
}

/* Force modal feature icons to inherit theme color, overriding hardcoded inner classes */
.modal-feature-icon svg {
  color: inherit !important;
}

/* Fix missing hover utilities */
.group:hover .group-hover-translate-x {
  transform: translateX(8px);
}
.group:hover .group-hover-opacity-100 {
  opacity: 1;
}
.group:hover .group-hover-opacity-80 {
  opacity: 0.8;
}
.insight-card:hover .group-hover-text-gold {
  color: var(--brand-gold);
}

.particle-anim {
  animation-name: floatParticle;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.5;
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Injected Tailwind Utilities */

@layer tailwind-base {
  *,
  ::before,
  ::after {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
  }
}
/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
@layer properties;
.pointer-events-none {
  pointer-events: none;
}
.invisible {
  visibility: hidden;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.top-1\/2 {
  top: calc(1 / 2 * 100%);
}
.top-\[70px\] {
  top: 70px;
}
.left-1\/2 {
  left: calc(1 / 2 * 100%);
}
.z-10 {
  z-index: 10;
}
.z-30 {
  z-index: 30;
}
.container {
  width: 100%;
}
.mx-auto {
  margin-inline: auto;
}
.mt-\[118px\] {
  margin-top: 118px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.inline {
  display: inline;
}
.inline-flex {
  display: inline-flex;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[2px\] {
  height: 2px;
}
.h-full {
  height: 100%;
}
.w-1\/2 {
  width: calc(1 / 2 * 100%);
}
.w-full {
  width: 100%;
}
.flex-shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.origin-left {
  transform-origin: 0;
}
.-translate-x-1\/2 {
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.translate-x-1\/2 {
  --tw-translate-x: calc(1 / 2 * 100%);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.-translate-y-1\/2 {
  --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.rotate-12 {
  rotate: 12deg;
}
.rotate-90 {
  rotate: 90deg;
}
.rotate-180 {
  rotate: 180deg;
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,)
    var(--tw-skew-x,) var(--tw-skew-y,);
}
.cursor-grab {
  cursor: grab;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}
.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}
.snap-center {
  scroll-snap-align: center;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.rounded-\[2rem\] {
  border-radius: 2rem;
}
.rounded-full {
  border-radius: calc(infinity * 1px);
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.border-none {
  --tw-border-style: none;
  border-style: none;
}
.bg-\[\#050608\] {
  background-color: #050608;
}
.bg-\[url\(\'https\:\/\/www\.transparenttextures\.com\/patterns\/carbon-fibre\.png\'\)\] {
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}
.text-center {
  text-align: center;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[12px\] {
  font-size: 12px;
}
.leading-\[1\.05\] {
  --tw-leading: 1.05;
  line-height: 1.05;
}
.leading-none {
  --tw-leading: 1;
  line-height: 1;
}
.tracking-\[0\.3em\] {
  --tw-tracking: 0.3em;
  letter-spacing: 0.3em;
}
.tracking-\[0\.4em\] {
  --tw-tracking: 0.4em;
  letter-spacing: 0.4em;
}
.text-\[\#94a3b8\] {
  color: #94a3b8;
}
.text-\[\#050608\] {
  color: #050608;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.opacity-5 {
  opacity: 5%;
}
.opacity-10 {
  opacity: 10%;
}
.opacity-20 {
  opacity: 20%;
}
.opacity-30 {
  opacity: 30%;
}
.opacity-40 {
  opacity: 40%;
}
.opacity-60 {
  opacity: 60%;
}
.opacity-80 {
  opacity: 80%;
}
.mix-blend-overlay {
  mix-blend-mode: overlay;
}
.shadow-\[0_0_25px_rgba\(242\,125\,38\,0\.7\)\] {
  --tw-shadow: 0 0 25px var(--tw-shadow-color, rgba(242, 125, 38, 0.7));
  box-shadow:
    var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
    var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.filter {
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,)
    var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,)
    var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur,)
    var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,)
    var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
    var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,)
    var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
  backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
    var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,)
    var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,)
    var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
    var(--tw-backdrop-sepia,);
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    outline-color,
    text-decoration-color,
    fill,
    stroke,
    --tw-gradient-from,
    --tw-gradient-via,
    --tw-gradient-to,
    opacity,
    box-shadow,
    transform,
    translate,
    scale,
    rotate,
    filter,
    -webkit-backdrop-filter,
    backdrop-filter,
    display,
    content-visibility,
    overlay,
    pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-all {
  transition-property: all;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-colors {
  transition-property:
    color, background-color, border-color, outline-color, text-decoration-color,
    fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.duration-700 {
  --tw-duration: 700ms;
  transition-duration: 700ms;
}
.duration-1000 {
  --tw-duration: 1000ms;
  transition-duration: 1000ms;
}
.hover\:scale-110 {
  &:hover {
    @media (hover: hover) {
      --tw-scale-x: 110%;
      --tw-scale-y: 110%;
      --tw-scale-z: 110%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
}
.hover\:text-\[\#050608\] {
  &:hover {
    @media (hover: hover) {
      color: #050608;
    }
  }
}
.disabled\:pointer-events-none {
  &:disabled {
    pointer-events: none;
  }
}
.disabled\:opacity-30 {
  &:disabled {
    opacity: 30%;
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-scroll-snap-strictness {
  syntax: "*";
  inherits: false;
  initial-value: proximity;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or
    ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-scroll-snap-strictness: proximity;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}
