/* ==========================================================================
   MÉTODO DSI® - ANTES DO LEILÃO
   Design System & Master Stylesheet (Direct Response Landing Page)
   Identity: Dark Obsidian (#000000), Off-White (#FEFEFE), Electric Blue (#0036FF)
   ========================================================================== */

/* --- CSS RESET & VARIABLES --- */
:root {
  /* Colors */
  --bg-black: #000000;
  --bg-dark: #05070f;
  --bg-card: rgba(10, 15, 30, 0.5);
  --bg-card-hover: rgba(15, 25, 50, 0.7);
  --text-main: #fefefe;
  --text-muted: #a0a5b5;
  --text-dim: #6c7284;
  
  /* Primary Accent: Electric Blue */
  --blue-primary: #0036ff;
  --blue-bright: #1e50ff;
  --blue-glow: rgba(0, 54, 255, 0.4);
  --blue-glow-strong: rgba(0, 54, 255, 0.8);
  --blue-soft: rgba(0, 54, 255, 0.12);
  --blue-border: rgba(0, 54, 255, 0.25);
  --blue-border-hover: rgba(0, 54, 255, 0.7);
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout */
  --container-max: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 100px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Noise Texture */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Cursor Mouse Light Effect */
.cursor-light {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 54, 255, 0.12) 0%, rgba(0, 54, 255, 0.02) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.05s ease-out;
  will-change: left, top;
}

/* Global Canvas Background */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 3;
}

/* --- REUSABLE UTILITIES & EFFECTS --- */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #80a0ff 70%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-blue-text {
  color: #3b73ff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 54, 255, 0.12);
  border: 1px solid rgba(0, 54, 255, 0.35);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6690ff;
  box-shadow: 0 0 20px rgba(0, 54, 255, 0.18);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue-primary);
  box-shadow: 0 0 10px var(--blue-bright);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Glassmorphism Panel */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--blue-border);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: 0.6s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--blue-border-hover);
  box-shadow: 0 10px 40px -10px rgba(0, 54, 255, 0.3), 0 0 20px rgba(0, 54, 255, 0.15);
  transform: translateY(-4px);
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.5rem;
  background: linear-gradient(135deg, #1e50ff 0%, #0036ff 50%, #0022aa 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 54, 255, 0.6), 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.45) 50%, transparent 55%);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
}

.btn-cta:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 55px rgba(0, 54, 255, 0.9), 0 15px 35px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn-cta:active {
  transform: translateY(0) scale(0.99);
}

.btn-cta-lg {
  padding: 1.35rem 3.4rem;
  font-size: 1.15rem;
}

.btn-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-header .badge {
  margin-bottom: 1.25rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Section Padding */
.section {
  padding: 7rem 0;
  position: relative;
  z-index: 3;
}

/* ==========================================
   HERO SECTION (BALANCED VISIBLE FOUNDER SHOWCASE)
   ========================================== */
.hero {
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

/* Background Founder Figure (cena1.png) */
.hero-bg-person {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-bg-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.65;
  filter: contrast(1.06) brightness(1.08);
}

/* Soft Seamless Blend Gradient Mask */
.hero-person-mask {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.2) 60%, transparent 100%),
    linear-gradient(0deg, #000000 0%, transparent 35%);
  pointer-events: none;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hero-title-group {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-sub-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #a0a5b5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sub-bar-divider {
  color: rgba(0, 54, 255, 0.6);
}

/* ==========================================
   MODERN ANGLED 3D MARQUEE TICKER TAPE
   ========================================== */
.ticker-container-3d {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
  margin: -1.5rem 0 3rem 0;
  z-index: 10;
  overflow: hidden;
}

/* Background Blurred Secondary Tape for 3D Perspective Depth */
.ticker-bg-tape {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 50px;
  background: rgba(0, 54, 255, 0.15);
  border-top: 1px solid rgba(0, 54, 255, 0.3);
  border-bottom: 1px solid rgba(0, 54, 255, 0.3);
  transform: translateY(-50%) rotate(2.5deg);
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.6;
}

/* Main Angled Ribbon Tape */
.ticker-ribbon-main {
  position: relative;
  width: 115%;
  left: -7.5%;
  background: linear-gradient(90deg, #050a18 0%, rgba(0, 54, 255, 0.2) 50%, #050a18 100%);
  border-top: 1.5px solid rgba(0, 54, 255, 0.7);
  border-bottom: 1.5px solid rgba(0, 54, 255, 0.7);
  box-shadow: 0 0 35px rgba(0, 54, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.9);
  padding: 1.1rem 0;
  transform: rotate(-2.2deg);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-phrase {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.ticker-phrase .txt-white {
  color: #ffffff;
}

.ticker-phrase .txt-blue {
  color: #4d7cff;
  text-shadow: 0 0 15px rgba(0, 54, 255, 0.8);
}

.sparkle-icon {
  color: #4d7cff;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px #0036ff);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   SECTION: PROVA REAL (VIDEO TESTIMONIALS 1080x1920)
   ========================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  background: rgba(8, 12, 28, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--blue-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.video-card:hover {
  border-color: var(--blue-border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 54, 255, 0.3);
  transform: translateY(-6px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000000;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(0, 54, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #6690ff;
  text-transform: uppercase;
}

.video-footer-info {
  padding: 1.25rem 1.5rem;
  background: rgba(5, 8, 20, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.video-footer-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.video-footer-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- SECTION: COMO FUNCIONA --- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.how-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.card-step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  transition: color var(--transition-fast);
}

.how-card:hover .card-step-num {
  color: rgba(0, 54, 255, 0.25);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(0, 54, 255, 0.2) 0%, rgba(0, 34, 170, 0.4) 100%);
  border: 1px solid rgba(0, 54, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 54, 255, 0.2);
  transition: transform var(--transition-fast);
}

.how-card:hover .card-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(0, 54, 255, 0.5);
}

.card-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.how-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.how-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- SECTION: POR QUE O MÉTODO DSI --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
}

.check-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(0, 54, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d7cff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 54, 255, 0.2);
}

.check-icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.why-card-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.why-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Stats counter bar inside why section */
.why-stats-bar {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: rgba(0, 54, 255, 0.05);
  border: 1px solid var(--blue-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- SECTION: NOSSA HISTÓRIA --- */
.history-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.history-image-wrapper {
  position: relative;
}

.history-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 54, 255, 0.3);
}

.history-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.history-frame:hover img {
  transform: scale(1.03);
}

.history-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.history-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 54, 255, 0.4);
}

.history-tag h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.history-tag p {
  font-size: 0.8rem;
  color: #6690ff;
}

.history-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.history-text-body p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.history-text-body p:last-child {
  margin-bottom: 0;
}

.history-highlight-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 54, 255, 0.08);
  border-left: 3px solid var(--blue-bright);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  font-weight: 600;
  color: var(--text-main);
}

/* --- SECTION: NOSSO ECOSSISTEMA --- */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.eco-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.eco-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.eco-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: var(--blue-soft);
  border: 1px solid rgba(0, 54, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d7cff;
  flex-shrink: 0;
}

.eco-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.eco-title h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.eco-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.eco-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eco-service-chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: #80a5ff;
  background: rgba(0, 54, 255, 0.12);
  border: 1px solid rgba(0, 54, 255, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-pill);
}

/* --- SECTION: MISSÃO --- */
.mission-wrapper {
  background: linear-gradient(180deg, rgba(0, 54, 255, 0.08) 0%, rgba(5, 10, 30, 0.7) 100%);
  border: 1px solid var(--blue-border);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 54, 255, 0.15);
}

.mission-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 54, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(70px);
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.mission-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pillar-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 54, 255, 0.25);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-bright);
  box-shadow: 0 0 20px rgba(0, 54, 255, 0.3);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem auto;
  color: #4d7cff;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

/* --- SECTION: CTA FINAL --- */
.cta-final {
  padding: 8rem 0;
  position: relative;
}

.cta-box {
  background: radial-gradient(circle at center, rgba(0, 54, 255, 0.25) 0%, rgba(5, 8, 20, 0.95) 70%);
  border: 1px solid var(--blue-border-hover);
  border-radius: var(--border-radius-lg);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 54, 255, 0.3), 0 20px 50px rgba(0, 0, 0, 0.9);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 54, 255, 0.4) 0%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 2;
}

.cta-box .btn-cta {
  position: relative;
  z-index: 2;
}

/* --- FOOTER (CLEAN DIRECT RESPONSE) --- */
.site-footer {
  background: #020308;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2.5rem 0;
  position: relative;
  z-index: 3;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 54, 255, 0.4));
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 420px;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--blue-primary);
  color: #ffffff;
  border-color: var(--blue-bright);
  box-shadow: 0 0 15px var(--blue-glow);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* --- ANIMATIONS (SCROLL REVEAL) --- */
[data-reveal] {
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

[data-reveal="fade-up"] {
  transform: translateY(40px);
}

[data-reveal="fade-left"] {
  transform: translateX(-40px);
}

[data-reveal="fade-right"] {
  transform: translateX(40px);
}

[data-reveal="scale-up"] {
  transform: scale(0.92);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-bg-person {
    width: 65%;
    opacity: 0.45;
    top: 0;
    right: 0;
  }

  .hero-bg-person img {
    transform: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-sub-bar {
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .history-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .history-frame img {
    height: 400px;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MOBILE EXCLUSIVE LAYOUT MATCHING EXACT ATTACHED SCREENSHOT MOCKUP */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 10px;
    padding-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  /* Full-bleed Top Hero Figure on Mobile */
  .hero-bg-person {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-bg-person img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    object-position: top center;
    opacity: 0.98;
    filter: contrast(1.08) brightness(1.08);
  }

  /* Mask Fading Image Smoothly into Obsidian Black (#000000) */
  .hero-person-mask {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.75) 65%, #000000 100%);
    pointer-events: none;
    z-index: 3;
  }

  /* Text & CTA Container Matching Attached Screenshot (Badge at Chest level Y=165px) */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 4;
    padding-top: 165px; /* Badge starts right at chest level, face 100% free above */
    text-align: center;
    width: 100%;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .badge {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-title-group {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-main-heading {
    font-size: clamp(1.6rem, 5.8vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .hero-actions .btn-cta {
    width: 100%;
    max-width: 320px;
    padding: 1.05rem 1.4rem;
    font-size: 1rem;
  }

  .hero-sub-bar {
    justify-content: center;
    font-size: 0.68rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: #8c92a4;
  }

  .section {
    padding: 5rem 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .how-it-works-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-stats-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mission-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .mission-pillars {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
