/* ============================================
   AEVRON — Industrial Air Design System
   Palette: #FFFFFF, #0A0A0A, #F5F5F7
   ============================================ */

/* Removed redundant Google Fonts import */
/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --ink: #0A0A0A;
  --system-gray: #F5F5F7;
  --mid-gray: #86868B;
  --light-gray: #E5E5E7;
  --accent-glow: rgba(255, 255, 255, 0.08);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--mid-gray);
  border-radius: 3px;
}

/* === CURSOR DOT (custom cursor) === */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s var(--ease-out-expo);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(10, 10, 10, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.3s var(--ease-out-expo), width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(10, 10, 10, 0.6);
}

/* === LOADING SCREEN === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.loader-percent::after {
  content: '%';
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.4;
  margin-left: 2px;
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--white);
  transition: width 0.15s linear;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;

}

.nav-logo-icon-css {
  width: 48px;
  height: 48px;
  background-image: url('logos/6bcaa57c-54b3-4ecf-9816-427752478ec1.png');
  background-size: 300%;
  /* Zooms into the center graphic */
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  /* Removes white padding on light headers */
  flex-shrink: 0;
}

.nav-logo-text-css {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.08rem;
  color: var(--ink);
  line-height: 1;
  padding-left: 0.1rem;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid-gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--ink);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.3);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* Mobile menu button */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease-out-expo);
}

.nav-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 48px 60px;
  overflow: hidden;
  background: var(--white);
}

.hero-content {
  position: relative;
  max-width: 680px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--mid-gray);
}

.hero-headline {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
}

.hero-headline .word span {
  display: inline-block;
  transform: translateY(120%);
  animation: wordSlideUp 0.9s var(--ease-out-expo) forwards;
}

@keyframes wordSlideUp {
  to {
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  font-family: var(--font-sans);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 10, 10, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(10, 10, 10, 0.15);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  font-family: var(--font-sans);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* Hero visual area */
.hero-visual {
  position: absolute;
  right: -5%;
  top: 100px;
  width: 58%;
  max-width: 850px;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  opacity: 1;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

/* Floating node particles in hero */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(10, 10, 10, 0.06);
  border-radius: 50%;
  animation: float var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  50% {
    transform: translate(var(--tx), var(--ty));
  }
}

/* === SECTION UTILITIES === */
.section {
  padding: 120px 48px;
  position: relative;
}

.section-gray {
  background: var(--system-gray);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.section-dark .section-eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.55);
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 120ms;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 240ms;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 360ms;
}

/* === PILLARS (What We Do) === */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 36px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--system-gray);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
}

.pillar-card:hover .pillar-icon {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.1);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--mid-gray);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* === PROCESS (How We Do It) === */
.process-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.process-line-fill {
  width: 100%;
  height: 0%;
  background: var(--white);
  transition: height 1.5s var(--ease-out-expo);
}

.process-step {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 72px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-marker {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  z-index: 2;
}

.process-step:hover .process-marker {
  background: var(--white);
  color: var(--ink);
  transform: scale(1.1);
}

.process-body {
  padding-top: 12px;
}

.process-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.process-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.process-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 500px;
}

/* === FEATURES (Perks) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: var(--white);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--system-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--ink);
  color: var(--white);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* === SHOWCASE IMAGES (Moodboard Strip) === */
.showcase {
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.showcase-track {
  display: flex;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}

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

.showcase-item {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  margin: 0 12px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.4) 0%, transparent 60%);
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* === ABOUT / TRUST === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--system-gray);
  border-radius: 16px;
  transition: all 0.3s;
}

.founder-card:hover {
  background: var(--ink);
  color: var(--white);
}

.founder-card:hover .founder-role {
  color: rgba(255, 255, 255, 0.5);
}

.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.founder-card:hover .founder-avatar {
  background: var(--white);
  color: var(--ink);
}

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.founder-role {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  transition: color 0.3s;
}

/* === FAQ === */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--mid-gray);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 10, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
  font-size: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 28px;
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* === CTA BANNER === */
.cta-banner {
  padding: 120px 48px;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* === FOOTER === */
.footer {
  padding: 60px 48px 40px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 28px;
  filter: invert(1);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

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

.footer-copy {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-mono);
}

/* === INSTAGRAM SCROLL ANIMATION === */
.insta-scroll-section {
  padding: 100px 48px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.insta-scroll-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.insta-scroll-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.insta-scroll-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.phones-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

.phone-mockup {
  width: 220px;
  height: 440px;
  background: #1A1A1A;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 255, 255, 0.03) inset;
  transform: rotateY(var(--rotate, 0deg));
  transition: transform 0.6s var(--ease-out-expo);
}

.phone-mockup:hover {
  transform: rotateY(0deg) scale(1.04);
  z-index: 3;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.phone-screen {
  position: absolute;
  top: 24px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.phone-scroll-content {
  animation: phoneScroll var(--scroll-duration, 12s) linear infinite;
}

@keyframes phoneScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.insta-post {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.insta-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.insta-username {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--white);
}

.insta-post-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  margin-bottom: 8px;
}

.insta-post-stats {
  display: flex;
  gap: 12px;
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
}

/* Ambient glow behind phones */
.ambient-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: ambientPulse 4s ease-in-out infinite;
}

@keyframes ambientPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Phone label */
.phone-label {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* === STATS COUNTER === */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 800px;
  margin: 0 auto 80px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* === NETWORK VISUALIZATION CANVAS === */
#networkCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .section {
    padding: 80px 32px;
  }

  .hero {
    padding: 100px 32px 60px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    width: 50%;
    opacity: 0.5;
  }

  .about-grid {
    gap: 48px;
  }

  .phones-container {
    gap: 24px;
  }

  .phone-mockup {
    width: 180px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-menu-btn {
    display: flex;
  }

  .section {
    padding: 64px 20px;
  }

  .hero {
    flex-direction: column;
    padding: 100px 20px 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 40px);
    height: auto; 
    margin-top: 40px;
    margin-left: -20px;
    display: block;
    z-index: 1;
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    object-position: center;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 1 !important;
    border-radius: 12px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step {
    gap: 24px;
  }

  .process-marker {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .stats-row {
    flex-direction: column;
    gap: 32px;
  }

  .phones-container {
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .phone-mockup {
    width: 160px;
    height: 320px;
    flex-shrink: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

  .showcase-item {
    width: 280px;
    height: 210px;
  }

  .cta-banner {
    padding: 80px 20px;
  }

  .insta-scroll-section {
    padding: 64px 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .phone-mockup {
    width: 140px;
    height: 280px;
  }
}

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--ink) 0%, var(--mid-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === SVG ICON ANIMATIONS === */
.pillar-icon svg,
.feature-icon-wrapper svg {
  transition: all 0.4s var(--ease-out-expo);
}

.pillar-card:hover .pillar-icon svg {
  stroke: var(--white);
}

.feature-card:hover .feature-icon-wrapper svg {
  stroke: var(--white);
}

/* Pulse dot animation on selection icon */
.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes pulseDot {

  0%,
  100% {
    r: 3;
    opacity: 1;
  }

  50% {
    r: 4.5;
    opacity: 0.6;
  }
}

/* Draw line animation for reporting chart icon */
.draw-line {
  animation: drawLine 2.5s ease-in-out infinite;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 30;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 30;
  }
}

/* Check animation for shield icon */
.check-animate {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: checkDraw 2s ease-in-out infinite;
}

@keyframes checkDraw {
  0% {
    stroke-dashoffset: 20;
  }

  40% {
    stroke-dashoffset: 0;
  }

  60% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 20;
  }
}

/* Footer logo proper visibility */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-icon-css {
  width: 40px;
  height: 40px;
  background-image: url('logos/6bcaa57c-54b3-4ecf-9816-427752478ec1.png');
  background-size: 300%;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1);
  /* Makes it white */
  mix-blend-mode: screen;
  /* Removes black padding on dark footer */
  flex-shrink: 0;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

/* === CONTACT / REACH SECTION === */
.reach-social {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
}

.reach-social-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.reach-social-text strong {
  color: var(--white);
}

.reach-social-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.social-btn-ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: var(--white);
}

.social-btn-ig:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.35);
}

.social-btn-li {
  background: #0A66C2;
  color: var(--white);
}

.social-btn-li:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(10, 102, 194, 0.35);
}

/* Lead Capture Form */
.reach-form {
  max-width: 640px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.form-group label .required {
  color: #ff4444;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease-out-expo);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group option {
  background-color: var(--ink);
  color: var(--white);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 68, 68, 0.5);
}

.btn-submit {
  padding: 16px 32px;
  background: var(--white);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit-loading {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 12px;
  color: #4ade80;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  flex-shrink: 0;
  stroke: #4ade80;
}

.form-error {
  padding: 14px 20px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  color: #f87171;
  font-size: 0.875rem;
}

/* Responsive for form */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
  }
  .reach-social-btns {
    flex-direction: column;
    align-items: center;
  }
  .social-btn {
    width: 100%;
    justify-content: center;
  }
}