/* ===================================================
   @FONT-FACE — FuturaLT
   =================================================== */
@font-face {
  font-family: 'FuturaLT';
  src: url('../fonts/Futura/FuturaLT.woff2') format('woff2'),
       url('../fonts/Futura/FuturaLT.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FuturaLT';
  src: url('../fonts/Futura/FuturaLT-Bold.woff2') format('woff2'),
       url('../fonts/Futura/FuturaLT-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FuturaLT';
  src: url('../fonts/Futura/FuturaLT-ExtraBold.woff2') format('woff2'),
       url('../fonts/Futura/FuturaLT-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===================================================
   CSS VARIABLES & RESET — LIGHT THEME
   =================================================== */
:root {
  --green: #40E7A6;
  --green-dark: #2bc48a;
  --green-dim: rgba(64, 231, 166, 0.10);
  --green-glow: rgba(64, 231, 166, 0.25);
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-card: #ffffff;
  --bg-hover: #f0f2f5;
  --dark: #111111;
  --border: rgba(0, 0, 0, 0.08);
  --border-green: rgba(64, 231, 166, 0.3);
  --text: #111111;
  --text-muted: rgba(17, 17, 17, 0.5);
  --text-dim: rgba(17, 17, 17, 0.65);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================================================
   NOISE TEXTURE UTILITY
   =================================================== */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  opacity: 0.4;
}

.noise {
  position: relative;
}

.noise > * {
  position: relative;
  z-index: 2;
}

/* ===================================================
   NAV
   =================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'FuturaLT', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
}

.nav-links a {
  transition: color 0.2s;
}

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

/* ===================================================
   BUTTONS — Comet halo border effect

   Technique : Le bouton utilise un pseudo-élément
   ::before avec un conic-gradient très concentré
   (un arc lumineux court = "comète") qui tourne.
   L'inner masque l'intérieur pour ne révéler que
   la bordure. Au hover → la comète s'élargit pour
   couvrir la totalité de la bordure.
   =================================================== */
@keyframes haloSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* — Wrapper halo — */
.btn-halo {
  position: relative;
  display: inline-flex;
  border-radius: 100px;
  padding: 2px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

/* Gradient rotatif — COMÈTE (arc court qui voyage) */
.btn-halo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 280deg,
    var(--green) 320deg,
    rgba(64, 231, 166, 0.9) 340deg,
    var(--green) 350deg,
    transparent 360deg
  );
  animation: haloSpin 2.5s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease, background 0.4s ease;
  z-index: 0;
  will-change: transform;
}

/* Bouton interne — masque le centre */
.btn-halo-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: 'FuturaLT', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* ——————————————————————————————
   PRIMARY — boutons CTA principaux
   L'effet comète est TOUJOURS visible sur ceux-ci
   —————————————————————————————— */
.btn-halo--primary::before {
  opacity: 1;
}

.btn-halo--primary:hover::before {
  opacity: 1;
  background: conic-gradient(
    from 0deg,
    var(--green) 0deg,
    rgba(64, 231, 166, 0.7) 60deg,
    var(--green) 120deg,
    rgba(64, 231, 166, 0.7) 180deg,
    var(--green) 240deg,
    rgba(64, 231, 166, 0.7) 300deg,
    var(--green) 360deg
  );
}

.btn-halo--primary .btn-halo-inner {
  background: var(--dark);
  color: var(--white);
  font-size: 0.9rem;
  padding: 1rem 2rem;
}

.btn-halo--primary:hover .btn-halo-inner {
  background: #1a1a1a;
  box-shadow: 0 0 30px rgba(64, 231, 166, 0.15);
}

/* ——————————————————————————————
   GHOST — boutons secondaires
   Comète visible seulement au hover
   —————————————————————————————— */
.btn-halo--ghost::before {
  opacity: 0;
}

.btn-halo--ghost:hover::before {
  opacity: 1;
  background: conic-gradient(
    from 0deg,
    var(--green) 0deg,
    rgba(64, 231, 166, 0.6) 60deg,
    var(--green) 120deg,
    rgba(64, 231, 166, 0.6) 180deg,
    var(--green) 240deg,
    rgba(64, 231, 166, 0.6) 300deg,
    var(--green) 360deg
  );
}

.btn-halo--ghost .btn-halo-inner {
  background: var(--bg);
  color: var(--dark);
  font-size: 0.9rem;
  padding: 1rem 2rem;
}

.btn-halo--ghost:hover .btn-halo-inner {
  background: rgba(255, 255, 255, 0.95);
}

/* ——————————————————————————————
   NAV CTA — plus petit, comète idle
   —————————————————————————————— */
.btn-halo--nav::before {
  opacity: 1;
}

.btn-halo--nav:hover::before {
  opacity: 1;
  background: conic-gradient(
    from 0deg,
    var(--green) 0deg,
    rgba(64, 231, 166, 0.7) 60deg,
    var(--green) 120deg,
    rgba(64, 231, 166, 0.7) 180deg,
    var(--green) 240deg,
    rgba(64, 231, 166, 0.7) 300deg,
    var(--green) 360deg
  );
}

.btn-halo--nav .btn-halo-inner {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
}

/* ——————————————————————————————
   PRICING CTA — pleine largeur, comète idle
   —————————————————————————————— */
.btn-halo--pricing {
  display: flex;
  width: 100%;
}

.btn-halo--pricing::before {
  opacity: 1;
}

.btn-halo--pricing:hover::before {
  opacity: 1;
  background: conic-gradient(
    from 0deg,
    var(--green) 0deg,
    rgba(64, 231, 166, 0.7) 60deg,
    var(--green) 120deg,
    rgba(64, 231, 166, 0.7) 180deg,
    var(--green) 240deg,
    rgba(64, 231, 166, 0.7) 300deg,
    var(--green) 360deg
  );
}

.btn-halo--pricing .btn-halo-inner {
  background: var(--dark);
  color: var(--white);
  font-size: 1rem;
  padding: 1.1rem 2rem;
  width: 100%;
  text-align: center;
}

.btn-halo--pricing:hover .btn-halo-inner {
  background: #1a1a1a;
  box-shadow: 0 0 30px rgba(64, 231, 166, 0.15);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.hero-noise-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(64, 231, 166, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(64, 231, 166, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-noise-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
}

/* Floating orbs — organic animated gradient blobs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite alternate;
  will-change: transform;
  contain: strict;
}

.hero-orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(64, 231, 166, 0.12), transparent 70%);
  top: -10%;
  right: -5%;
  animation-duration: 10s;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(64, 231, 166, 0.08), transparent 70%);
  bottom: 10%;
  left: -8%;
  animation-duration: 12s;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(64, 231, 166, 0.15), transparent 70%);
  top: 40%;
  right: 15%;
  animation-duration: 7s;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
  position: relative;
  z-index: 2;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'FuturaLT', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 1100px;
  color: var(--dark);
  animation: fadeUp 0.7s 0.1s ease both;
  position: relative;
  z-index: 2;
}

.hero h1 .accent {
  color: var(--green-dark);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 1.8rem auto 0;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  position: relative;
  z-index: 2;
}

.hero-proof {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  animation: fadeUp 0.7s 0.4s ease both;
  position: relative;
  z-index: 2;
}

.hero-proof-line {
  width: 40px;
  height: 1px;
  background: var(--border);
}

.hero-proof strong {
  color: var(--text-dim);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* ===================================================
   FOUNDER / ABOUT — Modern immersive layout
   =================================================== */
.founder {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.founder-photo:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

/* Green accent bar on photo edge */
.founder-photo::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 4px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  z-index: 2;
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 6%;
  position: relative;
}

.founder-content .section-tag {
  margin-bottom: 1rem;
}

.founder-content h2 {
  font-family: 'FuturaLT', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.founder-content .founder-role {
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.founder-content p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 540px;
}

.founder-content blockquote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--green);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 540px;
}

/* Floating stat badges on the founder section */
.founder-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.founder-stat-num {
  font-family: 'FuturaLT', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.founder-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ===================================================
   KEYFRAMES
   =================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

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

@keyframes nodeGlow {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

@keyframes flowDash {
  to { stroke-dashoffset: 0; }
}

@keyframes progressBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* ===================================================
   MARQUEE TICKER
   =================================================== */
.marquee-section {
  padding: 1.5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
  will-change: transform;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  font-family: 'FuturaLT', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--green);
  font-size: 1.2rem;
}

/* ===================================================
   SECTIONS COMMON
   =================================================== */
section {
  padding: 7rem 5%;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'FuturaLT', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  color: var(--dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}

/* ===================================================
   VISION SECTION
   =================================================== */
.vision {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-left .section-title {
  max-width: 100%;
}

.vision-left blockquote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--green);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
}

.vision-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vision-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.vision-card-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vision-card h3 {
  font-family: 'FuturaLT', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.vision-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================
   SERVICES SECTION — Video IA
   =================================================== */
.services {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.services-noise-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 50%, rgba(64, 231, 166, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.services-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.services-video-container {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.services-video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  background: var(--dark);
}

/* Play button overlay */
.services-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.services-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.services-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.services-video-container.is-playing .services-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Overlay with CTA floating at bottom */
.services-video-overlay {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 3;
}

.services-video-credit {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-style: italic;
  position: relative;
  z-index: 3;
}

/* ===================================================
   AI SHOWCASE — Visual dynamic artefact
   =================================================== */
.ai-showcase {
  background: var(--dark);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.ai-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ai-showcase-text .section-tag {
  color: var(--green);
}

.ai-showcase-text .section-title {
  color: var(--white);
}

.ai-showcase-text .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* ——— Terminal IA mockup ——— */
.ai-terminal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.82rem;
  backdrop-filter: blur(20px);
}

.ai-terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ai-terminal-dot:nth-child(1) { background: #ff5f57; }
.ai-terminal-dot:nth-child(2) { background: #ffbd2e; }
.ai-terminal-dot:nth-child(3) { background: #28c840; }

.ai-terminal-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.ai-terminal-body {
  padding: 1.5rem;
  line-height: 1.9;
  min-height: 280px;
}

.ai-terminal-line {
  opacity: 0;
  animation: fadeUp 0.4s ease forwards;
}

.ai-terminal-line:nth-child(1) { animation-delay: 0.5s; }
.ai-terminal-line:nth-child(2) { animation-delay: 1.2s; }
.ai-terminal-line:nth-child(3) { animation-delay: 2s; }
.ai-terminal-line:nth-child(4) { animation-delay: 2.8s; }
.ai-terminal-line:nth-child(5) { animation-delay: 3.5s; }
.ai-terminal-line:nth-child(6) { animation-delay: 4.2s; }
.ai-terminal-line:nth-child(7) { animation-delay: 5s; }

.ai-terminal-prompt {
  color: var(--green);
}

.ai-terminal-cmd {
  color: rgba(255, 255, 255, 0.85);
}

.ai-terminal-output {
  color: rgba(255, 255, 255, 0.45);
  padding-left: 1rem;
}

.ai-terminal-success {
  color: var(--green);
}

.ai-terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--green);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: typingCursor 1s infinite;
}

/* ——— Flow diagram visual ——— */
.ai-flow {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  margin-top: 3rem;
}

.ai-flow-label {
  font-family: 'FuturaLT', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.ai-flow-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

.ai-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}

.ai-flow-node-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(64, 231, 166, 0.1);
  border: 1px solid rgba(64, 231, 166, 0.2);
  box-shadow: 0 0 15px rgba(64, 231, 166, 0.4);
  animation: nodeGlow 3s ease-in-out infinite;
  will-change: opacity;
}

.ai-flow-node:nth-child(2) .ai-flow-node-icon { animation-delay: -1s; }
.ai-flow-node:nth-child(3) .ai-flow-node-icon { animation-delay: -2s; }
.ai-flow-node:nth-child(4) .ai-flow-node-icon { animation-delay: -0.5s; }
.ai-flow-node:nth-child(5) .ai-flow-node-icon { animation-delay: -1.5s; }

.ai-flow-node-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-weight: 500;
}

/* Animated connection lines between nodes */
.ai-flow-connector {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  margin: 0 -0.5rem;
  align-self: flex-start;
  margin-top: 27px;
}

.ai-flow-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  height: 100%;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: flowPulse 2s linear infinite;
  will-change: transform;
}

@keyframes flowPulse {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100% + 80px)); }
}

.ai-flow-connector:nth-child(4)::after { animation-delay: -0.5s; }
.ai-flow-connector:nth-child(6)::after { animation-delay: -1s; }
.ai-flow-connector:nth-child(8)::after { animation-delay: -1.5s; }

/* Dark section background accents */
.ai-showcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.ai-showcase-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(64, 231, 166, 0.06);
  top: -20%;
  right: -10%;
}

.ai-showcase-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(64, 231, 166, 0.04);
  bottom: -20%;
  left: -10%;
}

/* ===================================================
   INDUSTRIES SECTION
   =================================================== */
.industries {
  background: var(--bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.industry-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  background: var(--bg-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.industry-card .ind-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-family: 'FuturaLT', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--dark);
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================================================
   PROCESS — NUMBERED STEPS
   =================================================== */
.process {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(64, 231, 166, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.process-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.3s;
  border-radius: 12px;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  background: rgba(64, 231, 166, 0.04);
}

.step-num {
  font-family: 'FuturaLT', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}

.process-step:hover .step-num {
  color: var(--green-dark);
}

.step-content h3 {
  font-family: 'FuturaLT', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.step-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ===================================================
   PRICING SECTION
   =================================================== */
.pricing {
  background: var(--bg);
  text-align: center;
}

.pricing-card {
  max-width: 640px;
  margin: 4rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(64, 231, 166, 0.08);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  pointer-events: none;
}

.pricing-tag-top {
  display: inline-block;
  background: var(--green-dim);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-green);
  margin-bottom: 1.5rem;
}

.pricing-card h2 {
  font-family: 'FuturaLT', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 2;
  color: var(--dark);
}

.pricing-card .pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.pricing-feature .check {
  width: 20px;
  height: 20px;
  background: var(--green-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq {
  background: var(--bg-alt);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--dark);
  font-family: 'FuturaLT', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green-dark);
}

.faq-question .faq-arrow {
  color: var(--green-dark);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(64, 231, 166, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  pointer-events: none;
}

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

.cta-section h2 {
  font-family: 'FuturaLT', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 1.5rem auto;
  color: var(--dark);
}

.cta-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===================================================
   FOOTER — Impactful closing statement
   =================================================== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Big statement area */
.footer-statement {
  width: 100%;
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-statement-text {
  font-family: 'FuturaLT', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
}

.footer-statement-text .accent {
  color: var(--green);
}

.footer-statement-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer-statement-cta {
  margin-top: 2.5rem;
}

/* Glow behind statement */
.footer-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(64, 231, 166, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Bottom bar — minimal branding */
.footer-bottom {
  width: 100%;
  padding: 1.8rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: 'FuturaLT', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo span {
  color: var(--green);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 960px) {
  .vision {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .founder-photo {
    min-height: 400px;
    max-height: 500px;
  }

  .founder-content {
    padding: 4rem 5%;
    text-align: center;
  }

  .founder-content p,
  .founder-content blockquote {
    max-width: 100%;
  }

  .founder-stats {
    justify-content: center;
  }

  .ai-showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ai-flow-nodes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .ai-flow-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 5rem 5%;
  }

  nav {
    padding: 1rem 4%;
  }

  .nav-links {
    display: none;
  }

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

  .process-step {
    grid-template-columns: 70px 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .step-num {
    font-size: 3.5rem;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-statement {
    padding: 4rem 5%;
  }

  .founder-photo {
    min-height: 350px;
  }

  .founder-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .ai-flow-node-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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