@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-deep: #000000;
  --bg-dark: #0A0A0A;
  --bg-alabaster: #000000;
  --bg-card: rgba(10, 10, 10, 0.75);
  
  --text-primary: #F8FAFC;     /* Slate-50: premium crisp off-white */
  --text-secondary: #94A3B8;   /* Slate-400: cool readable grey */
  --text-muted: #64748B;       /* Slate-500: muted ardesia grey */
  
  --accent: #0EA5E9;           /* Sky-blue */
  --accent-hover: #38BDF8;     /* Lighter sky-blue on hover */
  --accent-rgb: 14, 165, 233;
  
  --border-color: rgba(255, 255, 255, 0.08); /* High-contrast subtle dark border */
  --border-thin: 1px solid var(--border-color);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
}

/* Reset rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* --------------------------------------------------------------------------
   ANIMATIONS & TRANSITIONS
   -------------------------------------------------------------------------- */
@keyframes capsuleReveal {
  from {
    opacity: 0;
    transform: translateY(-20px) scaleX(0.88);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
    filter: blur(0);
  }
}

@keyframes labelReveal {
  from {
    opacity: 0;
    letter-spacing: -0.02em;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    letter-spacing: 0.12em;
    filter: blur(0);
  }
}

@keyframes blurReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes lineReveal {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* --------------------------------------------------------------------------
   HEADER - FLOATING CAPSULE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(-100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.site-header.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-container {
  max-width: 480px;
  height: 60px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 30px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              border-color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              box-shadow 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-accent {
  color: var(--accent);
  font-weight: 300;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-link:hover {
  color: var(--accent);
  transition: color 0.2s ease;
}

.btn-nav-audit {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 18px;
  background: #FFFFFF;
  color: #000000;
  text-decoration: none;
  border: 1px solid #FFFFFF;
  transition: background 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              border-color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-nav-audit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-alabaster);
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000; /* Pure deep black for ultimate contrast and focus */
  opacity: 0;
  z-index: 1.5;
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 45%, rgba(14, 165, 233, 0.18) 0%, rgba(0, 0, 0, 0) 60%),
              radial-gradient(circle at 65% 55%, rgba(124, 58, 237, 0.12) 0%, rgba(0, 0, 0, 0) 60%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: orbFadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards, orbPulse 10s ease-in-out infinite alternate;
  animation-delay: 0.1s;
}

@keyframes orbFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes orbPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.mono-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  opacity: 0;
  animation: labelReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.05s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.line-block {
  display: block;
  overflow: visible;
}

.char {
  display: inline-block;
  transform-origin: center bottom;
  pointer-events: auto;
  will-change: transform, opacity;
}

.kinetic-title {
  visibility: hidden;
}
.kinetic-title.initialized {
  visibility: visible;
}
.kinetic-title .char {
  opacity: 0;
}
.kinetic-title.initialized .char {
  opacity: 1;
}
.font-light {
  font-weight: 300;
  letter-spacing: -0.01em;
}

.highlight {
  color: var(--accent);
  display: inline-block;
  transform-origin: center center;
  will-change: transform, text-shadow;
  transition: text-shadow 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 10;
  text-shadow: 0 0 25px rgba(14, 165, 233, 0.35);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 800px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  animation: blurReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.5s;
}

/* Horizontal Highlights Row */
.hero-highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  opacity: 1;
  animation: blurReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.7s;
}

.highlight-item {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.highlight-separator {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Minimalist Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1; /* Instantly visible on page load for intuitive onboarding */
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-text {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.scroll-line-container {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-line-active {
  width: 100%;
  height: 100%;
  background: var(--accent);
  position: absolute;
  top: -100%;
  animation: scrollDownIndicator 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollDownIndicator {
  0% {
    top: -100%;
  }
  30% {
    top: -100%;
  }
  75% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.hero-footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: var(--border-thin);
  width: 100%;
  padding-top: 24px;
  text-align: center;
}

.solmia-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  padding-bottom: 1px;
}

.solmia-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* --------------------------------------------------------------------------
   3D KINETIC TYPOGRAPHY ECOSYSTEM (MASSIVE TEXT REVEAL)
   -------------------------------------------------------------------------- */
.ecosystem-section {
  position: relative;
  z-index: 10;
  background: transparent; /* Transparent to let the fixed hero glow orb shine through as a gorgeous backdrop */
  padding: 30px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}



/* Only the first ecosystem section is pushed down to clear the fixed hero */
#ecosistema {
  margin-top: 100vh;
}

.ecosystem-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.ecosystem-container.align-right {
  justify-content: flex-end;
}

.kinetic-text-wrapper {
  max-width: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.kinetic-text-wrapper.text-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.kinetic-text-wrapper.text-right .massive-display-title {
  transform-origin: right center;
  transform: perspective(1200px) rotateY(-30deg) translateX(150px) scale(0.9);
}

.massive-display-title {
  font-family: var(--font-heading);
  font-size: 7.5rem;
  font-size: min(7.5rem, 9.5vw);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-top: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  transform-origin: left center;
  will-change: transform, opacity;
  transform: perspective(1200px) rotateY(30deg) translateX(-150px) scale(0.9);
  opacity: 0;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.focused-single-line {
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  max-width: 90vw;
  white-space: nowrap;
  will-change: transform, opacity, filter;
  transform: translateY(20px);
  opacity: 0;
  filter: blur(8px);
}

/* --------------------------------------------------------------------------
   SCROLL-DRIVEN VOLUMETRIC WHITEOUT CONTAINER
   -------------------------------------------------------------------------- */
.scroll-whiteout-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5; /* Behind content, in front of Hero */
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-whiteout-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    #FFFFFF 0%, 
    rgba(255, 255, 255, 0.95) 25%, 
    rgba(14, 165, 233, 0.5) 50%, 
    rgba(124, 58, 237, 0.25) 70%, 
    rgba(0, 0, 0, 0) 85%
  );
  filter: blur(25px);
  opacity: 0;
  transform: scale(0.2);
  will-change: transform, opacity;
}

.scroll-whiteout-solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAFAFA; /* Warm premium light-grey */
  opacity: 0;
  will-change: opacity;
}

/* --------------------------------------------------------------------------
   PRICING & INVESTMENT SECTION (LIGHT THEME NATIVE)
   -------------------------------------------------------------------------- */
.pricing-section {
  position: relative;
  z-index: 10;
  background-color: #FAFAFA;
  color: #0F172A; /* Deep slate */
  padding: 140px 0;
  overflow: hidden;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 150px, 0);
  opacity: 0;
  will-change: transform, opacity;
}

.mono-label.dark-label {
  color: var(--accent);
}

.massive-pricing-title {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-size: min(6rem, 8vw);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0F172A;
  margin-top: 16px;
  margin-bottom: 64px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   B2B INVESTMENT SPATIAL CARDS GRID (CONCEPT A)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   EXCLUSIVE INVESTMENT PANEL (GLASSMORPHISM & TWO-COLUMNS)
   -------------------------------------------------------------------------- */
.investment-exclusive-panel {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 48px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.04),
              0 0 50px -5px rgba(15, 23, 42, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.investment-exclusive-panel:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.08),
              0 0 60px rgba(14, 165, 233, 0.03);
}

/* Spotlight Glowing Orb Effect */
.investment-exclusive-panel .panel-glow {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(14, 165, 233, 0.06), transparent 60%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.investment-exclusive-panel:hover .panel-glow {
  opacity: 1;
}

/* Column Left Styles */
.panel-column-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  padding-right: 48px;
}

.exclusive-badge {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.price-callout {
  margin-bottom: 24px;
}

.price-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-size: min(3.8rem, 6vw);
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.price-period {
  font-size: 1.25rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0;
  margin-left: 4px;
}

.panel-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 36px 0;
}

/* CTA & Hover Glow Effects */
.panel-cta-wrapper {
  margin-bottom: 40px;
}

.btn-panel-action {
  display: inline-block;
  text-align: center;
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #0F172A;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-panel-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-panel-action:hover::before {
  left: 100%;
}

.btn-panel-action:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.panel-footnote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.footnote-point {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
}

.footnote-point strong {
  color: #334155;
}

/* Column Right Styles */
.panel-column-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Column Right Title */
.column-right-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tab-intro-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

/* Criteria Item List (Anti-Stirati Requisite System) */
.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(15, 23, 42, 0.03);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.criteria-item:hover {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  transform: translate3d(4px, 0, 0);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.02);
}

.criteria-icon-box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.criteria-item:hover .criteria-icon-box {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.3);
}

.criteria-icon-box svg {
  width: 12px;
  height: 12px;
}

.criteria-text-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.criteria-text-box strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 850;
  color: #0F172A;
}

.criteria-text-box span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}

/* Bespoke Growth Timeline */
.phases-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
}

.phases-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 31px;
  width: 1px;
  height: calc(100% - 30px);
  background: linear-gradient(180deg, var(--accent) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.timeline-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #FFFFFF;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-step {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px #FFFFFF, 0 0 10px rgba(14, 165, 233, 0.4);
}

.timeline-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.timeline-details strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 850;
  color: #0F172A;
}

.timeline-details span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   FLOATING CAPSULE LIGHT-THEME INVERSION OVERRIDES
   -------------------------------------------------------------------------- */
.site-header.light-mode .header-container {
  background: rgba(250, 250, 250, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header.light-mode .logo {
  color: #0F172A;
}

.site-header.light-mode .nav-link {
  color: #475569;
}

.site-header.light-mode .nav-link:hover {
  color: var(--accent);
}

.site-header.light-mode .btn-nav-audit {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.site-header.light-mode .btn-nav-audit:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   RESPONSIVENESS & MOBILE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  /* --- HERO --- */
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 3.2rem;
    font-size: min(3.2rem, 9.2vw);
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-highlights {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }

  .highlight-item {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .highlight-separator {
    font-size: 0.9rem;
  }

  .scroll-indicator {
    bottom: 24px;
  }

  .hero-glow-orb {
    width: 500px;
    height: 500px;
    filter: blur(50px);
  }

  /* --- ECOSISTEMA --- */
  .ecosystem-section {
    margin-top: 0;
    padding: 60px 0;
    min-height: auto;
  }

  .ecosystem-section .container {
    padding: 0 16px;
  }

  .massive-display-title {
    font-size: 3.2rem;
    font-size: min(3.2rem, 11vw);
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .focused-single-line {
    font-size: 1.0rem;
    line-height: 1.55;
    max-width: 100%;
    white-space: normal;
  }

  .mono-label {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }

  /* --- PRICING & INVESTMENT PANEL --- */
  .pricing-section {
    padding: 70px 0;
    background-color: #FAFAFA;
  }

  .massive-pricing-title {
    font-size: 3.2rem;
    font-size: min(3.2rem, 11vw);
    margin-bottom: 36px;
  }

  .investment-exclusive-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .panel-column-left {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .price-value {
    font-size: 3.0rem;
  }

  .panel-description {
    font-size: 0.90rem;
    margin-bottom: 24px;
  }

  .panel-cta-wrapper {
    margin-bottom: 24px;
  }

  .btn-panel-action {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.80rem;
    min-height: 48px;
  }

  .exclusive-badge {
    font-size: 0.62rem;
    margin-bottom: 20px;
  }

  .tab-pill-selector {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .tab-btn {
    flex: 1;
    font-size: 0.7rem;
    padding: 8px 12px;
    text-align: center;
  }

  .column-right-title {
    font-size: 0.88rem;
  }

  .tab-intro-text {
    font-size: 0.84rem;
  }

  .criteria-list {
    gap: 14px;
  }

  .criteria-item {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 14px;
  }

  .criteria-text-box strong {
    font-size: 0.84rem;
  }

  .criteria-text-box span {
    font-size: 0.78rem;
  }

  .panel-footnote {
    gap: 10px;
  }

  .footnote-point {
    font-size: 0.74rem;
  }

  /* --- FLOATING HEADER --- */
  .site-header {
    top: 16px;
  }

  .header-container {
    max-width: 92%;
    height: 54px;
    padding: 0 16px;
  }

  .logo {
    font-size: 0.90rem;
  }

  .nav-list {
    gap: 0;
  }

  .btn-nav-audit {
    font-size: 0.65rem;
    padding: 6px 14px;
    min-height: 34px;
  }

  /* --- CANDIDATURA --- */
  .candidatura-section {
    padding: 60px 0 80px 0;
  }

  .candidatura-card {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .candidatura-header {
    margin-bottom: 32px;
  }

  .candidatura-title {
    font-size: 2.0rem;
    font-size: min(2.0rem, 8.5vw);
  }

  .candidatura-subtitle {
    font-size: 0.86rem;
  }

  .candidatura-form {
    gap: 20px;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 0.92rem;
    border-radius: 12px;
  }

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

  .form-label {
    font-size: 0.68rem;
  }

  .checkbox-label {
    font-size: 0.82rem;
  }

  .btn-submit-action {
    font-size: 0.80rem;
    padding: 16px 20px;
    min-height: 48px;
  }

  .success-title {
    font-size: 1.8rem;
  }

  .success-message {
    font-size: 0.88rem;
  }

  /* --- FOOTER --- */
  .site-footer {
    padding: 48px 0 32px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .brand-col {
    grid-column: span 2;
    margin-bottom: 8px;
    max-width: 100%;
  }

  .brand-tagline {
    font-size: 0.80rem;
  }

  .footer-col-title {
    font-size: 0.68rem;
  }

  .footer-text {
    font-size: 0.82rem;
  }

  .corp-value {
    font-size: 0.82rem;
  }

  .billing-value {
    font-size: 0.78rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }

  .copyright-text {
    font-size: 0.72rem;
  }

  .legal-link {
    font-size: 0.72rem;
  }
}

/* --------------------------------------------------------------------------
   SMALL PHONES (iPhone SE, iPhone 12/13/14/15 Mini, Galaxy S series)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* --- HERO FINE-TUNING --- */
  .hero-title {
    font-size: min(2.6rem, 9vw);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .hero-highlights {
    gap: 8px;
    margin-top: 28px;
  }

  .highlight-item {
    font-size: 0.62rem;
  }

  .hero-glow-orb {
    width: 380px;
    height: 380px;
    filter: blur(40px);
  }

  /* --- ECOSISTEMA FINE-TUNING --- */
  .ecosystem-section {
    padding: 48px 0;
  }

  .massive-display-title {
    font-size: min(2.8rem, 11vw);
    margin-bottom: 12px;
  }

  .focused-single-line {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .mono-label {
    font-size: 0.60rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  /* --- PRICING FINE-TUNING --- */
  .pricing-section {
    padding: 56px 0;
  }

  .massive-pricing-title {
    font-size: min(2.8rem, 11vw);
    margin-bottom: 28px;
  }

  .investment-exclusive-panel {
    padding: 24px 16px;
    gap: 28px;
    border-radius: 20px;
  }

  .panel-column-left {
    padding-bottom: 24px;
  }

  .price-value {
    font-size: 2.6rem;
  }

  .price-period {
    font-size: 1.05rem;
  }

  .panel-description {
    font-size: 0.86rem;
  }

  .btn-panel-action {
    padding: 14px 16px;
    font-size: 0.76rem;
    border-radius: 24px;
  }

  .criteria-item {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .criteria-text-box strong {
    font-size: 0.80rem;
  }

  .criteria-text-box span {
    font-size: 0.75rem;
  }

  .tab-intro-text {
    font-size: 0.80rem;
  }

  /* --- CANDIDATURA FINE-TUNING --- */
  .candidatura-section {
    padding: 48px 0 64px 0;
  }

  .candidatura-card {
    padding: 28px 16px;
    border-radius: 20px;
  }

  .candidatura-header {
    margin-bottom: 28px;
  }

  .candidatura-title {
    font-size: min(1.7rem, 8vw);
  }

  .candidatura-subtitle {
    font-size: 0.82rem;
  }

  .candidatura-form {
    gap: 18px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 0.90rem;
    border-radius: 10px;
  }

  .form-textarea {
    min-height: 90px;
  }

  .checkbox-label {
    font-size: 0.78rem;
  }

  .checkbox-custom {
    width: 20px;
    height: 20px;
  }

  .btn-submit-action {
    font-size: 0.76rem;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-message {
    font-size: 0.84rem;
  }

  .success-screen {
    padding: 32px 12px;
  }

  /* --- FOOTER FINE-TUNING --- */
  .site-footer {
    padding: 40px 0 28px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .brand-col {
    grid-column: span 1;
    margin-bottom: 4px;
  }

  .footer-logo {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.78rem;
  }

  .footer-col {
    gap: 12px;
  }

  .footer-col-title {
    font-size: 0.64rem;
  }

  .footer-text {
    font-size: 0.80rem;
  }

  .corp-label,
  .billing-label {
    font-size: 0.60rem;
  }

  .corp-value {
    font-size: 0.80rem;
  }

  .billing-value {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .footer-bottom {
    gap: 10px;
    padding-top: 20px;
  }

  .copyright-text {
    font-size: 0.68rem;
  }

  .legal-link {
    font-size: 0.68rem;
  }
}

/* --------------------------------------------------------------------------
   CANDIDATURA (APPLICATION) SECTION STYLES
   -------------------------------------------------------------------------- */
.candidatura-section {
  position: relative;
  z-index: 10;
  background-color: #FAFAFA;
  padding: 100px 0 180px 0;
  overflow: hidden;
}

.candidatura-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.candidatura-container.visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.candidatura-card {
  width: 100%;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.04),
              0 0 50px -5px rgba(15, 23, 42, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.candidatura-card:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.08),
              0 0 60px rgba(14, 165, 233, 0.02);
}

.candidatura-header {
  text-align: center;
  margin-bottom: 40px;
}

.candidatura-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.candidatura-subtitle {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.candidatura-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.candidatura-form.fade-out {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
  transition: color 0.3s ease;
}

.form-group:focus-within .form-label {
  color: var(--accent);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0F172A;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  width: 100%;
}

.form-input:hover {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.85);
}

.form-input:focus {
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}

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

.form-input.invalid {
  border-color: #EF4444 !important;
  background: rgba(254, 242, 242, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

/* Custom Checkbox styles */
.form-group-checkbox {
  margin-top: 4px;
  text-align: left;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-container:hover input ~ .checkbox-custom {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.85);
}

.checkbox-container input:checked ~ .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.checkbox-icon {
  width: 12px;
  height: 12px;
  color: #FFFFFF;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkbox-container input:checked ~ .checkbox-custom .checkbox-icon {
  transform: scale(1);
}

.checkbox-label {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.checkbox-container:hover .checkbox-label {
  color: #0F172A;
}

.checkbox-container.invalid .checkbox-custom {
  border-color: #EF4444 !important;
  background: rgba(254, 242, 242, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

/* Button & Loading states */
.btn-submit-action {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  border-radius: 30px;
  border: 1px solid #0F172A;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
  margin-top: 10px;
  outline: none;
}

.btn-submit-action:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.btn-submit-action:active {
  transform: translateY(-1px);
}

.btn-submit-action .btn-text {
  transition: opacity 0.3s ease;
}

.btn-submit-action .btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: btnSpinner 0.8s linear infinite;
}

.btn-submit-action.loading {
  pointer-events: none;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-submit-action.loading .btn-text {
  opacity: 0;
}

.btn-submit-action.loading .btn-loader {
  opacity: 1;
}

@keyframes btnSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* Success Screen Styles */
.success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-screen.visible {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.success-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-icon-box svg {
  width: 32px;
  height: 32px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.success-message {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

@keyframes btnShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* --------------------------------------------------------------------------
   SITE FOOTER (B2B GROUNDING ANCHOR)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-col {
  max-width: 340px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.85;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.billing-details,
.corporate-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.billing-details li,
.corporate-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.billing-label,
.corp-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.billing-value,
.corp-value {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text-primary);
}

/* Premium mono-space billing badge look */
.billing-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--accent);
}

.legal-separator {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  user-select: none;
}


