/* ===================================================
   CONWORD — Landing Page Styles
   Full Dark + Animated Grid + Gradients + Dividers
   =================================================== */

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

:root {
  --color-bg: #050505;
  --color-bg-elevated: #0a0a10;
  --color-surface-card-dark: rgba(255, 255, 255, 0.03);
  --color-surface-input: rgb(52, 52, 58);
  --color-surface-footer: rgba(5, 5, 8, 0.85);

  --color-white: #ffffff;
  --color-white-73: rgba(255, 255, 255, 0.73);
  --color-white-muted: rgb(175, 176, 185);
  --color-white-body: rgb(189, 189, 189);
  --color-dark-grey: rgb(122, 122, 122);

  --color-accent-green: rgb(34, 197, 94);
  --color-star-yellow: rgb(253, 186, 14);
  --color-grid-line: rgba(255, 255, 255, 0.04);
  --color-grid-line-bright: rgba(255, 255, 255, 0.07);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-nav-btn: rgba(255, 255, 255, 0.09);
  --border-input: rgba(255, 255, 255, 0.15);

  --gradient-nav-btn: linear-gradient(rgb(22, 23, 34), rgba(12, 13, 21, 0));
  --gradient-cta-dark: linear-gradient(135deg, rgba(58, 57, 64, 0.6), rgba(31, 30, 36, 0.8));

  --font-heading: "Aeonik Pro", "Inter", Arial, sans-serif;
  --font-body: "Inter", sans-serif;
  --container-max: 970px;

  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-2xl: 80px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white-body);
  background: linear-gradient(180deg, #050505 0%, #0c0c10 30%, #080810 60%, #050505 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===================================================
   SECTION DIVIDERS — visual separation
   =================================================== */
.section-divider {
  position: relative;
  height: 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-divider--lg {
  height: 64px;
}

/* Glowing line in the center of divider */
.divider-glow {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
}

.divider-glow--blue,
.divider-glow--green,
.divider-glow--purple {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 15%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 60%,
    rgba(255, 255, 255, 0.03) 85%,
    transparent 100%
  );
  box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.04);
}

/* ===================================================
   ANIMATED GLOWING GRID BACKGROUND
   =================================================== */
.section,
.footer {
  position: relative;
}

/* Static grid mesh — disabled, using canvas grid */
.section::before,
.footer::before {
  content: none;
}

/* Animated floating glow layer */
.section::after {
  content: none;
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 300px 300px at 30% 40%, rgba(255, 255, 255, 0.04), transparent 70%),
    radial-gradient(ellipse 250px 250px at 70% 60%, rgba(255, 255, 255, 0.03), transparent 70%),
    radial-gradient(ellipse 200px 200px at 50% 20%, rgba(255, 255, 255, 0.03), transparent 70%);
  animation: glowDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowDrift {
  0%   { transform: translate(0%, 0%) rotate(0deg); }
  33%  { transform: translate(5%, -3%) rotate(1deg); }
  66%  { transform: translate(-3%, 5%) rotate(-1deg); }
  100% { transform: translate(2%, -2%) rotate(0.5deg); }
}

/* Scanning horizontal beam */
.animated-line-h {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.01) 10%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.01) 90%, transparent 100%);
  z-index: 0;
  opacity: 0.6;
  animation: scanDown 8s linear infinite;
}

.stats-section .animated-line-h { animation-duration: 10s; animation-delay: 2s; }
#processo .animated-line-h { animation-duration: 12s; animation-delay: 4s; }
#cta .animated-line-h { animation-duration: 9s; animation-delay: 1s; }

@keyframes scanDown {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 0.6; }
  95%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Scanning vertical beam */
.animated-line-v {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 10%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.01) 90%, transparent 100%);
  z-index: 0;
  opacity: 0.5;
  animation: scanRight 12s linear infinite;
}

#programa .animated-line-v { animation-duration: 14s; animation-delay: 3s; }
#resultados .animated-line-v { animation-duration: 11s; animation-delay: 5s; }
#equipe .animated-line-v { animation-duration: 13s; animation-delay: 2s; }

@keyframes scanRight {
  0%   { left: -2px; opacity: 0; }
  5%   { opacity: 0.5; }
  95%  { opacity: 0.5; }
  100% { left: 100%; opacity: 0; }
}

/* Glowing dots */
.glow-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.glow-dot--blue {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.2);
  animation: dotPulse 4s ease-in-out infinite;
}

.glow-dot--green {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.18);
  animation: dotPulse 5s ease-in-out infinite 1.5s;
}

.glow-dot--purple {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.15);
  animation: dotPulse 6s ease-in-out infinite 3s;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(2.5); }
}

/* ===================================================
   PER-SECTION GRADIENTS — strong, varied
   =================================================== */

/* All sections transparent so the canvas grid flows through */
.hero-section,
.stats-section,
.section--elevated,
#programa,
#processo,
#equipe,
#resultados,
#cta {
  background: transparent;
}

/* Content above effects */
.section > *,
.footer > * {
  position: relative;
  z-index: 1;
}

/* === LAYOUT === */
.wrap {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  width: 100%;
  overflow-x: clip;
}

.line-horizontal {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 80%, transparent);
}

/* === HERO DIVIDER === */
.hero-divider {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
}

.hero-divider-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.06) 80%, transparent 100%);
}

.hero-divider-glow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3) 40%, transparent 70%);
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.15), 0 0 30px 6px rgba(255, 255, 255, 0.06);
  animation: heroGlowSlide 4s ease-in-out infinite;
}

@keyframes heroGlowSlide {
  0% { left: -60px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% + 60px); opacity: 0; }
}

/* === NAVBAR === */
.navbar {
  background: transparent;
  padding: var(--spacing-sm) 0;
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 47px;
}

.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 52px; width: auto; }

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

.nav-link {
  color: var(--color-white-muted);
  font-size: 15.25px;
  font-weight: 300;
  line-height: 22.4px;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--color-white); }

.button-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-nav-btn);
  background: var(--gradient-nav-btn);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.button-nav:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(rgb(35, 36, 50), rgba(20, 22, 35, 0.5));
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === NEON GRID CANVAS === */
#gridNeonCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

#connectLinesCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

/* === HERO === */
.hero-content {
  text-align: center;
  padding: 60px 20px 60px;
}

/* Badge wrapper — rotating glow border (iOS compatible) */
.hero-badge-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 48px;
  border-radius: 1061px;
  padding: 1.5px;
  background: transparent;
  overflow: hidden;
}

.hero-badge-wrapper::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 60%,
    rgba(255, 255, 255, 0.6) 75%,
    rgba(255, 255, 255, 0.9) 80%,
    rgba(255, 255, 255, 0.6) 85%,
    transparent 100%
  );
  animation: spinGlow 8s linear infinite;
  z-index: 0;
}

.hero-badge-wrapper::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 55%,
    rgba(255, 255, 255, 0.15) 72%,
    rgba(255, 255, 255, 0.25) 80%,
    rgba(255, 255, 255, 0.15) 88%,
    transparent 100%
  );
  filter: blur(8px);
  animation: spinGlow 8s linear infinite;
  z-index: -1;
}

@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-badge {
  display: block;
  background-color: #0a0a0a;
  color: rgb(176, 176, 176);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 16px 12px;
  border-radius: 1061px;
  border: none;
  position: relative;
  z-index: 1;
}

.h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02px;
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto 24px;
}

.h1 strong { font-weight: 500; }

.dark-grey {
  color: var(--color-dark-grey);
  -webkit-text-fill-color: var(--color-dark-grey);
}

.mobile-br { display: none; }

.hero-subtitle {
  color: var(--color-white-body);
  font-size: 16px;
  line-height: 22.4px;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* === CTA BUTTON WHITE === */
.cta-button-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: #000000;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  box-shadow:
    rgba(255, 255, 255, 0.11) -4px 5px 20px 0px,
    rgba(255, 255, 255, 0.06) 0 0 40px 0px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button-white:hover {
  box-shadow:
    rgba(255, 255, 255, 0.2) -4px 5px 30px 0px,
    rgba(255, 255, 255, 0.12) 0 0 60px 0px;
  transform: translateY(-2px);
}

.cta-arrow { font-size: 20px; line-height: 1; }

/* === DOT GREEN === */
.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-green);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.dot-green--sm {
  width: 6px;
  height: 6px;
}

/* === SOCIAL PROOF === */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.avatar-stack { display: flex; }

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: -8px;
  object-fit: cover;
}

.avatar:first-child { margin-left: 0; }

.social-proof-text { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--color-star-yellow); font-size: 14px; letter-spacing: 2px; }
.members-count { color: var(--color-white-73); font-size: 14px; }

/* === FEATURES BAR === */
.features-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  padding: 20px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  color: var(--color-white-muted);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.feature-item { cursor: default; }
.feature-icon { width: 24px; height: 24px; }

/* === FOUNDER PHOTO === */
.founder-photo-section {
  display: flex;
  justify-content: center;
  padding: 48px 20px;
}

.founder-photo-placeholder {
  width: auto;
  max-width: 100%;
  border-radius: 16px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-photo-placeholder picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-placeholder img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.founder-photo-label {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 400;
}

/* === STATS === */
.stats-section { background: transparent; }

.grid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  padding: 28px 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: center;
  position: relative;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

/* === SECTION HEADERS === */
.section-header,
.section-header-dark {
  text-align: center;
  padding: 48px 0 var(--spacing-xl);
}

.h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-subtitle-dark,
.section-subtitle-light {
  color: var(--color-white-body);
  font-size: 16px;
  line-height: 22.4px;
  max-width: 560px;
  margin: 0 auto;
}

/* === ECOSYSTEM SECTION === */
.ecosystem-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 var(--spacing-xl);
}

.ecosystem-header {
  text-align: left;
  max-width: 620px;
}

.ecosystem-header-action {
  flex-shrink: 0;
  padding-top: 40px;
}

.ecosystem-label-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
  border-radius: 100px;
  padding: 1.5px;
  background: transparent;
  overflow: hidden;
}

.ecosystem-label-wrapper::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 60%,
    rgba(255, 255, 255, 0.5) 75%,
    rgba(255, 255, 255, 0.75) 80%,
    rgba(255, 255, 255, 0.5) 85%,
    transparent 100%
  );
  animation: spinGlow 8s linear infinite;
  z-index: 0;
}

.ecosystem-label-wrapper::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 55%,
    rgba(255, 255, 255, 0.1) 72%,
    rgba(255, 255, 255, 0.18) 80%,
    rgba(255, 255, 255, 0.1) 88%,
    transparent 100%
  );
  filter: blur(6px);
  animation: spinGlow 8s linear infinite;
  z-index: -1;
}

.ecosystem-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 6px 14px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 1;
}

.ecosystem-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.ecosystem-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-white-body);
  max-width: 520px;
}

/* Ecosystem grid — 1 large + 2 small on first row, 3 on second */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding-bottom: var(--spacing-xl);
}

.eco-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eco-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.eco-card:hover::before {
  opacity: 1;
}

/* First card spans 1 col but is taller */
.eco-card--large {
  grid-row: span 2;
  justify-content: flex-start;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.eco-card--large .eco-card-desc {
  font-size: 15px;
  line-height: 1.7;
}

.eco-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-card-icon svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.eco-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.2px;
}

.eco-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-white-body);
  flex-grow: 1;
}

.eco-card-expand {
  display: none;
}

.eco-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

/* === MODULES === */
.modules-list { padding-bottom: var(--spacing-2xl); }

.module-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.module-item:last-child { border-bottom: none; }

.module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.module-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent-green);
  min-width: 28px;
}

.module-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}

.module-desc {
  color: var(--color-white-body);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 44px;
}

/* === PROCESS GRID === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: var(--spacing-2xl);
}

.process-card {
  padding: var(--spacing-lg);
  text-align: center;
  background: var(--color-surface-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.process-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 8px;
}

.process-desc {
  color: var(--color-white-body);
  font-size: 15px;
  line-height: 1.5;
}

/* === ABOUT ECOSYSTEM === */
.about-eco-section {
  overflow: visible;
}

.about-eco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: var(--spacing-2xl) 0;
  min-height: 600px;
  overflow: visible;
}

.about-eco-content {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
}

.about-eco-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: visible;
}

.about-eco-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-eco-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-white-body);
  margin-bottom: 16px;
}

.about-eco-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-eco-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-eco-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
}

.about-eco-stat-number--sm {
  font-size: 22px;
}

.about-eco-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.about-eco-cta {
  grid-column: 1;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.btn-about-eco {
  display: inline-block;
  width: 100%;
  padding: 14px 36px;
  background: #fff;
  color: #000;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.btn-about-eco:hover {
  opacity: 0.85;
}

#globeCanvas {
  display: block;
  width: 640px;
  height: 640px;
  max-width: none;
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
}

/* Globe Mobile */
.globe-mobile { display: none; }

@media (max-width: 767px) {
  #globeCanvas { display: none !important; }
  .globe-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .globe-m-wrap {
    position: relative;
    width: 300px;
    height: 300px;
  }
  .globe-m-glow {
    position: absolute;
    inset: -12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 50%, transparent 70%);
    pointer-events: none;
  }
  #globeMobileCanvas {
    display: block;
    width: 300px;
    height: 300px;
    position: relative;
  }
}

/* === 3 STEPS === */
.steps-container {
  padding-bottom: var(--spacing-2xl);
}

.step-block {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
}

.step-block--last {
  padding-bottom: 0;
}

.step-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex-grow: 1;
  margin-top: 12px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.step-content {
  padding-top: 4px;
  flex-grow: 1;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.3px;
}

.step-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-white-body);
  margin-bottom: 20px;
  max-width: 620px;
}

.step-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.step-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.step-detail-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
}

/* === WHY JOIN === */
/* --- Focus Carousel --- */
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: var(--spacing-xl);
}

.carousel-header-text {
  max-width: 620px;
}

.carousel-swipe-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  letter-spacing: 0.3px;
  animation: swipeHintPulse 3s ease-in-out infinite;
}

.carousel-swipe-hint svg {
  opacity: 0.5;
}

@keyframes swipeHintPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.carousel-viewport {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
  cursor: grab;
}

.carousel-track {
  position: relative;
  height: 320px;
}

/* --- Slide base --- */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;

  /* Default: far state */
  opacity: 0.15;
  filter: blur(3px);
  transition:
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.65s ease,
    background 0.65s ease;
}

/* Active slide */
.carousel-slide.is-active {
  opacity: 1;
  filter: blur(0);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  cursor: default;
  z-index: 3;
}

/* Adjacent slides (1 away) */
.carousel-slide.is-adj {
  opacity: 0.4;
  filter: blur(1.5px);
  z-index: 2;
}

/* Second adjacent (2 away) — more faded */
.carousel-slide.is-adj2 {
  opacity: 0.2;
  filter: blur(3px);
  z-index: 1;
}

/* Far slides */
.carousel-slide.is-far {
  opacity: 0.08;
  filter: blur(4px);
  z-index: 0;
}

/* Top glow line — only on active */
.carousel-slide .slide-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.carousel-slide.is-active .slide-line {
  opacity: 1;
}

/* Large faint number */
.slide-number {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  transition: color 0.7s ease;
}

.carousel-slide.is-active .slide-number {
  color: rgba(255, 255, 255, 0.05);
}

/* Icon */
.slide-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.7s ease;
  flex-shrink: 0;
}

.carousel-slide.is-active .slide-icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
}

/* Content */
.slide-content {
  flex-grow: 1;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.slide-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-white-body);
  transition: opacity 0.5s ease;
}

/* Hide desc text on non-active slides */
.carousel-slide:not(.is-active) .slide-desc {
  opacity: 0;
}

.carousel-slide:not(.is-active) .slide-footer {
  opacity: 0;
}

/* Footer */
.slide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
  margin-top: auto;
  transition: opacity 0.5s ease;
}

.slide-tag {
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.slide-metric {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.slide-metric strong {
  color: var(--color-white);
  font-weight: 600;
  font-size: 18px;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 32px 0 var(--spacing-2xl);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.carousel-dot.active {
  width: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}

/* === TESTIMONIALS === */
/* Testimonial Carousel */
.testimonial-carousel-viewport {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--spacing-lg);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-carousel-track {
  position: relative;
  height: 520px;
  user-select: none;
  transition: height 0.4s ease;
}

.testimonial-card.tc-slide {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-surface-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  backdrop-filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.5s ease,
              filter 0.5s ease,
              border-color 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.testimonial-card.tc-slide.tc-active {
  opacity: 1;
  filter: blur(0);
  border-color: rgba(255, 255, 255, 0.14);
  z-index: 3;
}

.testimonial-card.tc-slide.tc-adj {
  opacity: 0.45;
  filter: blur(1.5px);
  z-index: 2;
}

.testimonial-card.tc-slide.tc-far {
  opacity: 0.15;
  filter: blur(3px);
  z-index: 1;
}

.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.tc-arrow:hover {
  color: rgba(255,255,255,0.55);
}
.tc-arrow--prev { left: 2px; }
.tc-arrow--next { right: 2px; }

.testimonial-carousel-dots {
  display: none;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tc-dot.active {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
}

.testimonial-stars {
  color: var(--color-star-yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--color-white-body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-feedback { width: 100%; max-height: 420px; border-radius: 12px; margin-bottom: 16px; object-fit: contain; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; object-fit: cover; }
.avatar-initials { color: rgba(255, 255, 255, 0.85); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
.testimonial-name { color: var(--color-white); font-size: 15px; font-weight: 500; }
.testimonial-role { color: var(--color-dark-grey); font-size: 13px; }

/* === CTA SECTION === */
.cta-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 600px 350px at 50% 0%, rgba(255, 255, 255, 0.05), transparent),
    radial-gradient(ellipse 400px 250px at 50% 100%, rgba(255, 255, 255, 0.025), transparent),
    linear-gradient(180deg, rgba(16, 16, 22, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
  padding: 64px 48px;
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 80px -20px rgba(255, 255, 255, 0.03),
    0 2px 40px -10px rgba(0, 0, 0, 0.5);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-card > * { position: relative; z-index: 1; }

.cta-heading { font-size: 46px; margin-bottom: 16px; }

.cta-subtitle {
  color: var(--color-white-body);
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  max-width: 440px;
  margin: 0 auto;
}

.input-field {
  width: 100%;
  height: 50px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.input-field:focus {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
}

.input-field::placeholder { color: rgba(255, 255, 255, 0.3); }
.cta-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 16px 24px; font-size: 17px; }
.cta-note { color: var(--color-dark-grey); font-size: 13px; margin-top: 16px; }

/* === FOOTER === */
.footer {
  background: transparent;
  padding-top: var(--spacing-xl);
  padding-bottom: 40px;
}

/* === FAQ SECTION === */
#faq {
  padding-top: 80px;
  padding-bottom: 0;
}

.faq-container {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 48px;
  align-items: stretch;
}

/* Left column */
.faq-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}
.faq-left .ecosystem-label-wrapper {
  align-self: flex-start;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-white-body);
  margin-bottom: 32px;
  max-width: 340px;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.faq-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.faq-contact-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.faq-contact-email {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

.faq-contact--desktop {
  display: flex;
  margin-top: auto;
}
.faq-contact--bottom {
  display: none;
  grid-column: 1 / -1;
  margin-top: 16px;
  justify-content: center;
}

/* Right columns */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.faq-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.faq-item > .faq-question {
  flex: 1;
}

.faq-item > .faq-line {
  margin-top: auto;
}

.faq-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03), transparent);
  transition: background 0.3s ease;
}

.faq-item.faq-open .faq-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06), transparent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.faq-number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.faq-item.faq-open .faq-number {
  color: rgba(255, 255, 255, 0.35);
}

.faq-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-item.faq-open .faq-text,
.faq-question:hover .faq-text {
  color: var(--color-white);
}

.faq-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
  color: rgba(255, 255, 255, 0.4);
}

.faq-question:hover .faq-icon-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

.faq-item.faq-open .faq-icon-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-icon-plus {
  transition: transform 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 28px 28px;
  border-left: 2px solid rgba(255, 255, 255, 0.06);
  margin-left: 5px;
}

.faq-answer-inner p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-white-body);
  margin: 0;
  max-width: 520px;
}

.faq-answer-inner p + p {
  margin-top: 12px;
}

.faq-answer-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.faq-answer-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-white-body);
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.faq-answer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin-bottom: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-xl);
  padding: 48px 20px 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  align-items: flex-start;
}

.footer-logo { height: 28px; width: auto; object-fit: contain; display: block; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.footer-email {
  color: var(--color-white-body);
  font-size: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.footer-social:hover { color: var(--color-white); }

.footer-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-links-group { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-heading {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.active { display: flex; }
  .nav-hamburger { display: flex; }
  .h1 { font-size: 42px; }
  .h2 { font-size: 36px; }
  .cta-heading { font-size: 36px; }
  .grid-stats { grid-template-columns: repeat(2, 1fr); gap: 0; background: var(--color-bg); position: relative; z-index: 2; border-radius: var(--radius-md); }
  .features-bar { grid-template-columns: repeat(6, 1fr); }
  .feature-item { font-size: 12px; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .eco-card--large { grid-row: span 1; }
  .ecosystem-title { font-size: 38px; }
  .about-eco { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: auto; }
  .about-eco-content { grid-column: 1; grid-row: 1; }
  .about-eco-visual { grid-column: 1; grid-row: 2; }
  .about-eco-highlights { grid-column: 1; grid-row: 3; flex-wrap: wrap; }
  .about-eco-title { font-size: 36px; }
  #globeCanvas { width: 460px; height: 460px; position: relative; right: auto; top: auto; transform: none; margin: 0 auto; }
  .carousel-track { height: 300px; }
  .carousel-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-carousel-track { height: auto; min-height: 400px; }
  .footer-content { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 767px) {
  html { scroll-behavior: auto; }
  body { background-attachment: scroll; }
  #connectLinesCanvas { display: none; }
  #gridNeonCanvas { opacity: 0.75; }
  .h1 { font-size: 30px; max-width: none; }
  .hero-br { display: none; }
  .mobile-br { display: inline; }
  .h2 { font-size: 30px; }
  .cta-heading { font-size: 30px; }
  .ecosystem-title { font-size: 30px; }
  #faq { padding-top: 40px; padding-bottom: 0; }
  .faq-container { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; text-align: center; align-items: center; }
  .faq-left .ecosystem-label-wrapper { align-self: center; }
  .faq-title { font-size: 30px; }
  .faq-subtitle { max-width: none; margin-bottom: 24px; font-size: 13px; }
  .faq-columns { grid-template-columns: 1fr; gap: 0; }
  .faq-contact { justify-content: center; }
  .faq-contact--desktop { display: none; }
  .faq-contact--bottom { display: flex; }
  .faq-question { padding: 20px 0; gap: 14px; }
  .faq-text { font-size: 14px; }
  .faq-icon-btn { width: 32px; height: 32px; }
  .faq-answer-inner { padding: 0 0 20px 20px; }
  .faq-answer-inner p { font-size: 13px; }
  .ecosystem-header-row { flex-direction: column; gap: 16px; }
  .ecosystem-header-action { padding-top: 0; width: 100%; text-align: center; }
  .ecosystem-grid { grid-template-columns: 1fr; gap: 8px; }
  .eco-card { padding: 16px 18px; gap: 0; flex-direction: row; flex-wrap: wrap; align-items: center; cursor: pointer; }
  .eco-card--large { padding: 16px 18px; }
  .eco-card-icon { width: 36px; height: 36px; border-radius: 10px; margin-right: 12px; flex-shrink: 0; }
  .eco-card-icon svg { width: 18px; height: 18px; }
  .eco-card-title { font-size: 14px; flex: 1; margin: 0; }
  .eco-card .eco-card-expand { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; margin-left: auto; transition: transform 0.3s ease; color: rgba(255, 255, 255, 0.3); flex-shrink: 0; }
  .eco-card.eco-expanded .eco-card-expand { transform: rotate(180deg); }
  .eco-card-desc { width: 100%; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease; margin-top: 0; padding-left: 48px; }
  .eco-card.eco-expanded .eco-card-desc { max-height: 200px; opacity: 1; margin-top: 12px; }
  .eco-card-tag { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease; margin-top: 0; margin-left: 48px; }
  .eco-card.eco-expanded .eco-card-tag { max-height: 40px; opacity: 1; margin-top: 8px; }
  .eco-card--large { grid-row: span 1; }
  /* === MOBILE GRID LINES (features → foto → stats) === */
  .grid-stats { grid-template-columns: 1fr 1fr; gap: 0; border-radius: 0; background: transparent; border: none; }
  .stat-item { padding: 24px 16px; background: transparent; }
  .stat-item:nth-child(1) { border-right: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  /* Features: linhas horizontais saem da tela, verticais param na borda */
  .features-bar { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, auto); grid-auto-flow: column; gap: 0; padding: 0; width: calc(100% + 40px); margin-left: -20px; border-radius: 0; border: none; position: relative; }
  .feature-item { flex-direction: row; align-items: center; justify-content: center; padding: 16px 14px; font-size: 14px; font-weight: 500; gap: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .feature-item:nth-child(1) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .feature-item:nth-child(2) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .feature-item:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .feature-item:nth-child(6) { }
  /* Linha horizontal topo da features-bar (full width) */
  .features-bar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255, 255, 255, 0.06); }
  /* Streak horizontal no topo da features */
  .features-bar::after { content: ''; position: absolute; top: -1px; left: -60px; width: 60px; height: 3px; background: radial-gradient(ellipse at center, rgba(255,255,255,0.7), rgba(255,255,255,0.3) 40%, transparent 70%); box-shadow: 0 0 10px 2px rgba(255,255,255,0.12); border-radius: 50%; animation: mobileStreakH 5s ease-in-out infinite; pointer-events: none; z-index: 5; }
  /* Linhas verticais conectando features → foto → stats (esquerda e direita) */
  .founder-photo-section { position: relative; overflow: visible; }
  .founder-photo-section::before { content: ''; position: absolute; top: 0; bottom: 0; left: -20px; right: -20px; border-left: 1px solid rgba(255, 255, 255, 0.06); border-right: 1px solid rgba(255, 255, 255, 0.06); pointer-events: none; }
  /* Streak vertical descendo pela esquerda */
  .founder-photo-section::after { content: ''; position: absolute; left: -21px; top: -3px; width: 3px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5) 50%, transparent); box-shadow: 0 0 8px 2px rgba(255,255,255,0.1); border-radius: 50%; animation: mobileStreakV 6s ease-in-out infinite 1.5s; pointer-events: none; z-index: 5; }
  /* Stats: linhas horizontais saem da tela */
  .hero-section .wrap { overflow: visible; }
  .stats-section .wrap { overflow: visible; }
  .stats-section { position: relative; }
  .grid-stats { width: calc(100% + 40px); margin-left: -20px; position: relative; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, 0.06); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  /* Streak horizontal no bottom dos stats */
  .grid-stats::after { content: ''; position: absolute; bottom: -1px; left: -60px; width: 60px; height: 3px; background: radial-gradient(ellipse at center, rgba(255,255,255,0.7), rgba(255,255,255,0.3) 40%, transparent 70%); box-shadow: 0 0 10px 2px rgba(255,255,255,0.12); border-radius: 50%; animation: mobileStreakH 7s ease-in-out infinite 3s; pointer-events: none; z-index: 5; }
  /* Streak vertical descendo pela direita do stats */
  .stats-section::after { content: ''; position: absolute; right: -1px; top: -3px; width: 3px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5) 50%, transparent); box-shadow: 0 0 8px 2px rgba(255,255,255,0.1); border-radius: 50%; animation: mobileStreakVRight 8s ease-in-out infinite 2s; pointer-events: none; z-index: 5; }

  @keyframes mobileStreakH {
    0% { left: -60px; opacity: 0; }
    5% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% + 60px); opacity: 0; }
  }
  @keyframes mobileStreakV {
    0% { top: -40px; opacity: 0; }
    5% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 40px); opacity: 0; }
  }
  @keyframes mobileStreakVRight {
    0% { top: calc(100% + 40px); opacity: 0; }
    5% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: -40px; opacity: 0; }
  }
  .feature-icon { width: 26px; height: 26px; }
  .about-eco { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 0; min-height: auto; padding: 0; }
  .about-eco-content { grid-column: 1; grid-row: 1; }
  .about-eco-visual { grid-column: 1; grid-row: 2; position: relative; overflow: visible; margin-top: 8px; }
  .about-eco-highlights { grid-column: 1; grid-row: 3; flex-direction: row; gap: 0; justify-content: space-between; text-align: center; margin-top: 20px; padding: 16px 12px; border-top: none; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; }
  .about-eco-stat { align-items: center; flex: 1; position: relative; }
  .about-eco-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: rgba(255, 255, 255, 0.08); }
  .about-eco-stat-number { font-size: 20px; }
  .about-eco-stat-label { font-size: 11px; }
  .about-eco-title { font-size: 30px; }
  .btn-about-eco { width: auto; }
  #globeCanvas { width: 300px; height: 300px; position: relative; right: auto; top: auto; transform: none; margin: 0 auto; filter: brightness(1.6); }
  .carousel-track { height: 360px; }
  .carousel-slide { padding: 24px 20px; gap: 10px; }
  .slide-icon { width: 44px; height: 44px; border-radius: 12px; }
  .slide-icon svg { width: 22px; height: 22px; }
  .slide-number { font-size: 52px; }
  .slide-title { font-size: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonial-carousel-track { height: auto; min-height: 400px; }
  .testimonial-carousel-viewport { -webkit-mask-image: none; mask-image: none; padding-bottom: 16px; overflow: visible; }
  .testimonial-card.tc-slide { overflow: visible; }
  .testimonial-feedback { max-height: none; }
  #resultados { overflow: visible; padding-bottom: 24px; }
  #resultados + .section-divider--lg { height: 24px; }
  #resultados { padding-bottom: 0; }
  #resultados + .section-divider--lg { height: 0; }
  .hero-content { padding: 20px 20px 20px; }
  .button-nav { display: flex; font-size: 12px; padding: 8px 14px; margin-left: auto; }
  .nav-logo { height: 42px; }
  .nav-container { position: relative; }
  .nav-brand { position: static; transform: none; }
  .nav-hamburger { display: none !important; }
  .hero-badge { font-size: 13px; padding: 7px 14px 8px; }
  .hero-badge-wrapper { margin-bottom: 20px; }
  .h1 { margin-bottom: 16px; }
  .hero-subtitle { margin-bottom: 24px; font-size: 13px; line-height: 1.55; max-width: none; }
  .section-subtitle-dark, .section-subtitle-light { font-size: 13px; }
  .ecosystem-subtitle { font-size: 13px; }
  .about-eco-text { font-size: 13px; }
  .cta-subtitle { font-size: 13px; }
  .eco-card-title { font-size: 13px; }
  .eco-card-desc { font-size: 13px; }
  .eco-card--large .eco-card-desc { font-size: 13px; }
  .module-title { font-size: 13px; }
  .module-desc { font-size: 13px; }
  .process-title { font-size: 13px; }
  .process-desc { font-size: 13px; }
  .stat-label { font-size: 13px; }
  .stars { font-size: 13px; }
  .members-count { font-size: 13px; }
  .social-proof-text { font-size: 13px; }
  .testimonial-text { font-size: 13px; }
  .testimonial-name { font-size: 13px; }
  .testimonial-role { font-size: 13px; }
  .avatar-initials { font-size: 13px; }
  .slide-desc { font-size: 13px; }
  .slide-title { font-size: 16px; }
  .slide-tag { font-size: 13px; }
  .slide-metric { font-size: 13px; }
  .about-eco-highlight-title { font-size: 13px; }
  .about-eco-highlight-desc { font-size: 13px; }
  .about-eco-stat-label { font-size: 13px; }
  .cta-note { font-size: 13px; }
  .input-field { font-size: 13px; }
  .footer-tagline { font-size: 13px; }
  .footer-email { font-size: 13px; }
  .footer-link { font-size: 13px; }
  .footer-heading { font-size: 13px; }
  .footer-copy { font-size: 13px; }
  .footer-bottom-link { font-size: 13px; }
  .feature-item { font-size: 13px; }
  .section-header, .section-header-dark { text-align: left; padding: 16px 0 16px; }
  .section-subtitle-dark, .section-subtitle-light { margin: 0; }
  .stat-number { font-size: 28px; white-space: nowrap; }
  .ecosystem-header { padding-bottom: 16px; }
  .ecosystem-label-wrapper { margin-left: 0; }
  .ecosystem-grid { gap: 12px; }
  .modules-list { padding-bottom: 32px; }
  .about-eco-section { padding: 16px 0 24px; }
  .testimonials-section { padding-bottom: 32px; }
  .carousel-section { padding-bottom: 32px; }
  .founder-photo-section { padding: 20px 8px; }
  .founder-photo-placeholder img { max-width: 100%; margin: 0 auto; }
  .stats-section { padding: 16px 0; }
  .cta-card { padding: 32px 20px; margin-bottom: 32px; }
  .section-divider { height: 6px; }
  .section-divider--lg { height: 10px; }
  .footer { padding-top: 24px; }
  .footer-logo { display: block; margin: 0 auto; }
  .footer-brand { align-items: flex-start; }
  .footer-links-group { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 479px) {
  .h1 { font-size: 30px; }
  .feature-item { font-size: 13px; padding: 12px 10px; }
  .feature-icon { width: 24px; height: 24px; }
}
