@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy-950: #071521;
  --navy-900: #0a1d2c;
  --navy-800: #102b40;
  --blue: #1d78b7;
  --cyan: #56d8e7;
  --cyan-hot: #52f2ff;
  --cobalt: #3759ff;
  --violet: #7458ff;
  --lime: #c8f04d;
  --amber: #ffbd59;
  --ice: #eaf8fb;
  --paper: #f5f7f6;
  --white: #ffffff;
  --ink: #102231;
  --muted: #657681;
  --line: #dbe3e6;
  --shadow: 0 24px 60px rgba(8, 29, 44, 0.14);
  --radius: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.neoka-premium-body {
  min-width: 320px;
  background: var(--paper);
}
body.neoka-premium-body #wpadminbar { z-index: 999999; }
body.admin-bar .site-header { top: 32px; }

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--navy-950);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 16, 27, 0.5);
  backdrop-filter: blur(8px);
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.045em;
}

.utility-inner p { margin: 0; text-transform: uppercase; }
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 240, 77, 0.13);
}
.utility-links { display: flex; align-items: center; gap: 15px; }
.utility-links span { width: 1px; height: 12px; background: rgba(255,255,255,.25); }
.utility-links a { opacity: .82; transition: opacity .2s; }
.utility-links a:hover { opacity: 1; }

.main-nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 126px; height: auto; }
.nav-panel, .nav-links { display: flex; align-items: center; }
.nav-panel { gap: 42px; }
.nav-links { gap: 30px; }
.nav-links a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger span { margin-left: 3px; color: var(--cyan); font-size: 11px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: -22px;
  width: 290px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,21,33,.97);
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  backdrop-filter: blur(18px);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 35px;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
  background: #071521;
  transform: rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 5px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.35;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(82,242,255,.09); }
.nav-dropdown-menu strong, .nav-dropdown-menu small { display: block; }
.nav-dropdown-menu strong { color: var(--white); font-family: "Manrope"; font-size: 13px; }
.nav-dropdown-menu small { margin-top: 3px; color: rgba(255,255,255,.43); font-size: 10px; }
.nav-dropdown-menu-small { width: 240px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: transparent;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -40%;
  width: 28%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  transform: rotate(22deg);
  transition: left .65s ease;
}
.button:hover::before { left: 125%; }
.button > * { position: relative; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.button-light { background: var(--white); color: var(--navy-950); }
.button-primary { background: var(--lime); color: var(--navy-950); }
.button-primary:hover { background: #dafa73; }
.button-dark { background: var(--navy-900); color: var(--white); }
.button-outline-light { border-color: rgba(255,255,255,.38); color: var(--white); }
.button-outline-light:hover { border-color: var(--lime); color: var(--lime); }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,15,27,.98) 0%, rgba(5,20,32,.87) 43%, rgba(5,20,32,.38) 75%, rgba(5,20,32,.7) 100%),
    linear-gradient(0deg, rgba(5,20,32,.8), transparent 35%),
    url("https://neoka-energies.fr/wp-content/uploads/2026/06/chaufferie-neoka.jpg") center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  animation: grid-drift 18s linear infinite;
}
.energy-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .68;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-orb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: inherit;
}
.hero-orb-one {
  top: 80px;
  right: 7vw;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(82,242,255,.17);
  background: radial-gradient(circle at 35% 35%, rgba(82,242,255,.2), rgba(55,89,255,.03) 52%, transparent 70%);
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-two {
  right: 32vw;
  bottom: 42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(200,240,77,.16);
  background: radial-gradient(circle, rgba(200,240,77,.12), transparent 68%);
  animation: orb-float 7s 1.4s ease-in-out infinite reverse;
}
.energy-rail {
  position: absolute;
  z-index: 1;
  width: 1px;
  height: 190px;
  overflow: hidden;
  background: rgba(255,255,255,.11);
}
.energy-rail i {
  position: absolute;
  top: -70px;
  left: 0;
  width: 1px;
  height: 70px;
  background: linear-gradient(transparent, var(--cyan-hot), transparent);
  box-shadow: 0 0 14px var(--cyan-hot);
  animation: rail-pulse 3.2s linear infinite;
}
.energy-rail-one { top: 138px; left: 5vw; }
.energy-rail-two { right: 4vw; bottom: 150px; transform: rotate(180deg); }
.energy-rail-two i { animation-delay: 1.3s; }

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 712px;
  padding-top: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 70px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.mobile-break { display: none; }
.hero .reveal {
  opacity: 1;
  transform: none;
  animation: hero-enter .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero .hero-card { animation-delay: .18s; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow > span { display: block; width: 24px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--cyan); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", Arial, sans-serif; }
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
}
.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-hot) 0%, #9cf8ff 35%, var(--lime) 78%, #fff4b2 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-flow 6s linear infinite;
  filter: drop-shadow(0 8px 24px rgba(86,216,231,.18));
}
h1 em, h2 em {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 32px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}
.text-link-light { color: var(--white); }
.play-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 9px;
}
.text-link:hover .play-icon {
  color: var(--navy-950);
  border-color: var(--lime);
  background: var(--lime);
  transform: rotate(360deg);
  transition: transform .5s ease, background .25s, color .25s;
}
.trust-row {
  display: flex;
  gap: 26px;
  margin-top: 55px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-row span:not(:last-child)::after {
  content: "·";
  margin-left: 26px;
  color: var(--cyan);
}

.hero-card {
  position: relative;
  overflow: hidden;
  align-self: end;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,21,33,.74);
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}
.card-glow {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,242,255,.28), transparent 65%);
  animation: card-glow 5s ease-in-out infinite alternate;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-card-top p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-pill {
  color: rgba(255,255,255,.66);
  font-size: 10px;
}
.live-pill i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--lime);
}
.metric-feature { padding: 26px 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.metric-feature strong {
  display: block;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -.06em;
}
.metric-feature strong::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--cyan-hot);
  box-shadow: 0 0 18px var(--cyan-hot);
  animation: blink 1.6s ease-in-out infinite;
}
.metric-feature span { display: block; margin-top: 8px; color: rgba(255,255,255,.6); font-size: 12px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; }
.metric-grid div { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.metric-grid div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.metric-grid strong { display: block; margin-bottom: 5px; font-size: 24px; color: var(--white); }
.metric-grid span { color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.hero-card > a {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.hero-bottom {
  position: relative;
  z-index: 3;
  min-height: 88px;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,27,.7);
  backdrop-filter: blur(8px);
}
.hero-bottom-inner { min-height: 88px; display: flex; align-items: center; }
.hero-bottom p {
  min-width: 210px;
  margin: 0 40px 0 0;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-bottom strong, .hero-bottom span { display: block; }
.hero-bottom strong { margin-bottom: 5px; color: var(--cyan); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-bottom span { color: rgba(255,255,255,.58); font-size: 11px; }
.hero-bottom a { margin-left: auto; color: var(--lime); font-size: 13px; font-weight: 700; }
.hero-bottom a span { display: inline; color: inherit; margin-left: 14px; }

.signal-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--navy-950);
  background: linear-gradient(90deg, var(--lime), #ddff7c 42%, var(--cyan-hot));
  transform: rotate(-1.1deg) scale(1.02);
  transform-origin: center;
  box-shadow: 0 12px 35px rgba(8,29,44,.12);
  contain: layout paint;
}
.signal-track {
  display: flex;
  width: max-content;
  height: 54px;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}
.signal-track span {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.signal-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-950);
}

.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.section-heading h2, .method-copy h2, .contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.section-heading p, .method-copy > p, .contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.audience { background: var(--paper); }
.audience-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.audience-tab {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
}
.audience-tab + .audience-tab { border-left: 1px solid var(--line); }
.audience-tab.active { background: var(--navy-900); color: var(--white); }
.audience-tab {
  position: relative;
  overflow: hidden;
}
.audience-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-hot), var(--lime));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.audience-tab.active::after { transform: scaleX(1); }
.tab-index { color: var(--blue); font-size: 11px; font-weight: 800; }
.audience-tab.active .tab-index { color: var(--lime); }
.audience-tab strong, .audience-tab small { display: block; }
.audience-tab strong { margin-bottom: 4px; font-family: "Manrope"; font-size: 16px; }
.audience-tab small { opacity: .65; }

.audience-panel {
  display: grid;
  min-height: 510px;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  box-shadow: var(--shadow);
}
.audience-panel[hidden] { display: none; }
.audience-visual {
  position: relative;
  min-height: 510px;
  background-position: center;
  background-size: cover;
}
.audience-panel.active .audience-visual { animation: panel-reveal .7s cubic-bezier(.2,.8,.2,1) both; }
.audience-panel.active .audience-content { animation: panel-copy .65s .08s cubic-bezier(.2,.8,.2,1) both; }
.audience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,18,30,.78), transparent 55%);
}
.audience-visual-pro { background-image: url("https://neoka-energies.fr/wp-content/uploads/2026/06/Capture-decran-2026-06-04-211504-1017x1024.jpg"); }
.audience-visual-home { background-image: url("https://neoka-energies.fr/wp-content/uploads/2026/06/chaufferie-neoka.jpg"); }
.visual-label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: var(--white);
}
.visual-label span, .visual-label strong { display: block; }
.visual-label span { margin-bottom: 8px; color: var(--lime); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.visual-label strong { max-width: 380px; font-family: "Manrope"; font-size: 20px; }
.audience-content { position: relative; overflow: hidden; padding: 62px; }
.number-watermark {
  position: absolute;
  top: -28px;
  right: -5px;
  color: #f0f4f5;
  font-family: "Manrope";
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
}
.audience-content .eyebrow, .audience-content h3, .audience-content p, .audience-content ul, .audience-content a { position: relative; }
.audience-content h3 { margin-bottom: 18px; font-size: 34px; line-height: 1.2; letter-spacing: -.035em; }
.audience-content > p { color: var(--muted); line-height: 1.7; }
.check-list { padding: 0; margin: 25px 0 32px; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 29px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

.expertises {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 84px 84px;
}
.expertises::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,89,255,.25), transparent 68%);
  pointer-events: none;
}
.expertises .section-heading p { color: rgba(255,255,255,.57); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.expertise-card {
  position: relative;
  min-height: 340px;
  padding: 36px;
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .3s ease, transform .3s ease;
}
.card-sheen {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(82,242,255,.16), transparent 42%);
  transition: opacity .25s;
  pointer-events: none;
}
.expertise-card:hover .card-sheen { opacity: 1; }
.expertise-card.featured .card-sheen {
  background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,.45), transparent 42%);
}
.expertise-card:hover { z-index: 2; background: var(--navy-800); transform: translateY(-4px); }
.expertise-card.featured { color: var(--navy-950); background: var(--lime); }
.expertise-number { position: absolute; top: 25px; right: 25px; color: rgba(255,255,255,.34); font-size: 11px; }
.featured .expertise-number { color: rgba(7,21,33,.4); }
.expertise-icon { width: 48px; height: 48px; margin-bottom: 50px; color: var(--cyan); }
.featured .expertise-icon { color: var(--navy-950); }
.expertise-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; }
.expertise-card:hover .expertise-icon { animation: icon-lift .6s ease; }
.expertise-card h3 { margin-bottom: 12px; font-size: 22px; }
.expertise-card p { margin-bottom: 24px; color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.7; }
.featured p { color: rgba(7,21,33,.66); }
.expertise-card a { position: absolute; bottom: 32px; font-size: 12px; font-weight: 700; }
.expertise-card a span { margin-left: 10px; }

.method { background: var(--white); }
.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.method-copy { position: sticky; top: 120px; }
.method-copy h2 { margin-bottom: 24px; }
.method-copy > p { max-width: 500px; }
.method-quote { display: flex; gap: 14px; margin-top: 44px; padding: 24px; border-left: 3px solid var(--cyan); background: var(--ice); }
.method-quote > span { color: var(--blue); font-family: Georgia; font-size: 42px; line-height: .7; }
.method-quote p { margin: 0; font-family: "Manrope"; font-weight: 700; line-height: 1.5; }
.timeline { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s, background .25s;
}
.timeline li:hover, .timeline li.active { padding-left: 24px; background: var(--paper); }
.timeline li { position: relative; overflow: hidden; }
.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--cobalt));
  transform: scaleY(0);
  transition: transform .3s ease;
}
.timeline li:hover::after, .timeline li.active::after { transform: scaleY(1); }
.timeline > li > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.timeline h3 { margin-bottom: 8px; font-size: 23px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.projects { overflow: hidden; background: var(--paper); }
.project-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.project-filters button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.project-filters button.active { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-auto-rows: 360px; gap: 18px; }
.project-card { position: relative; overflow: hidden; background: var(--navy-900); transition: opacity .25s, transform .25s; }
.project-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.0);
  transition: inset .35s, border-color .35s;
  pointer-events: none;
}
.project-card:hover::before { inset: 18px; border-color: rgba(255,255,255,.34); }
.project-card.hidden { display: none; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.045); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,27,.92), rgba(3,16,27,.05) 70%); }
.project-large { grid-row: span 2; }
.project-body { position: absolute; right: 28px; bottom: 26px; left: 28px; color: var(--white); }
.project-tags { display: flex; gap: 7px; margin-bottom: 12px; }
.project-tags span { padding: 5px 8px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.project-body > p { margin-bottom: 5px; color: var(--cyan); font-size: 11px; font-weight: 700; }
.project-body h3 { max-width: calc(100% - 55px); margin: 0; font-size: 25px; }
.project-large .project-body h3 { font-size: 36px; }
.round-link {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
}
.project-card:hover .round-link {
  color: var(--navy-950);
  border-color: var(--lime);
  background: var(--lime);
  transform: rotate(45deg);
  transition: .35s ease;
}
.project-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.project-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.project-footer strong { color: var(--ink); }
.project-footer .text-link { color: var(--blue); }

.leadership { background: var(--white); }
.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.founder-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.founder-card:hover {
  z-index: 2;
  border-color: var(--cyan);
  box-shadow: 0 24px 55px rgba(8,29,44,.16);
  transform: translateY(-8px);
}
.founder-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: var(--navy-900);
}
.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,18,30,.72), transparent 48%);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.72);
  transition: transform .6s ease, filter .45s ease;
}
.founder-card:hover .founder-photo img { transform: scale(1.045); filter: saturate(1); }
.founder-index, .founder-arrow {
  position: absolute;
  z-index: 2;
  color: var(--white);
}
.founder-index { top: 18px; left: 18px; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.founder-arrow {
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  transition: .3s ease;
}
.founder-card:hover .founder-arrow { color: var(--navy-950); border-color: var(--lime); background: var(--lime); transform: rotate(45deg); }
.founder-copy { min-height: 218px; padding: 24px 22px; }
.founder-copy h3 { margin-bottom: 6px; font-size: 21px; letter-spacing: -.025em; }
.founder-role { min-height: 38px; margin-bottom: 17px; color: var(--blue) !important; font-size: 11px !important; font-weight: 800; line-height: 1.4 !important; text-transform: uppercase; letter-spacing: .06em; }
.founder-copy > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.founder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.founder-footer p { max-width: 580px; margin: 0; color: var(--muted); }

.content-feed {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(55,89,255,.25), transparent 28%),
    radial-gradient(circle at 5% 80%, rgba(82,242,255,.12), transparent 24%),
    var(--navy-950);
}
.content-feed .section-heading { align-items: start; }
.content-feed .section-heading p { color: rgba(255,255,255,.58); }
.feed-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.feed-filters button {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  background: transparent;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 800;
}
.feed-filters button.active { color: var(--navy-950); border-color: var(--lime); background: var(--lime); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feed-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(15,43,64,.66);
  backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease, opacity .2s;
}
.feed-card:hover { border-color: rgba(82,242,255,.52); transform: translateY(-5px); }
.feed-card.hidden { display: none; }
.feed-card.feed-featured { grid-column: span 2; display: grid; grid-template-columns: 1.12fr .88fr; }
.feed-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.feed-featured .feed-media { height: 100%; aspect-ratio: auto; min-height: 420px; }
.feed-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,18,30,.55), transparent 60%); }
.feed-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.feed-card:hover .feed-media img { transform: scale(1.04); }
.feed-source {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 50px;
  color: var(--white);
  background: rgba(7,21,33,.8);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}
.feed-source-article { color: var(--navy-950); background: var(--lime); }
.feed-source-linkedin { background: #0a66c2; }
.feed-source-youtube { background: #e22a2a; }
.feed-source-social { background: linear-gradient(135deg,#635bff,#d94b9b); }
.feed-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transform: translate(-50%,-50%);
}
.feed-copy { display: flex; min-height: 250px; flex-direction: column; padding: 25px; }
.feed-featured .feed-copy { justify-content: center; padding: 40px; }
.feed-date { margin-bottom: 10px; color: var(--cyan) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.feed-copy h3 { margin-bottom: 12px; font-size: 20px; line-height: 1.35; letter-spacing: -.025em; }
.feed-featured .feed-copy h3 { font-size: 30px; }
.feed-copy > p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.65; }
.feed-more { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: var(--lime); font-size: 12px; font-weight: 800; }
.feed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.feed-count { display: flex; align-items: baseline; gap: 12px; }
.feed-count strong { color: var(--cyan); font-family: "Manrope"; font-size: 40px; }
.feed-count span { color: rgba(255,255,255,.52); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.feed-actions { display: flex; gap: 12px; }

.proof {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(55,89,255,.11), transparent 42%),
    var(--navy-800);
}
.proof-rings { position: absolute; right: -190px; bottom: -220px; width: 620px; height: 620px; }
.proof-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(82,242,255,.12);
  border-radius: 50%;
  animation: ring-turn 18s linear infinite;
}
.proof-rings i:nth-child(2) { inset: 90px; border-style: dashed; animation-direction: reverse; animation-duration: 13s; }
.proof-rings i:nth-child(3) { inset: 185px; border-color: rgba(200,240,77,.17); animation-duration: 9s; }
.proof-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 65px; align-items: center; }
.proof-photo { position: relative; min-height: 460px; }
.proof-photo img { width: 100%; height: 460px; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.03); }
.proof-photo img { transition: filter .5s, transform .7s; }
.proof-photo:hover img { filter: saturate(1) contrast(1.04); transform: scale(1.018); }
.proof-photo::before { content: ""; position: absolute; z-index: 1; top: -18px; left: -18px; width: 115px; height: 115px; border-top: 2px solid var(--lime); border-left: 2px solid var(--lime); }
.photo-caption { position: absolute; z-index: 2; right: -30px; bottom: 30px; width: 280px; padding: 24px; background: var(--navy-950); box-shadow: var(--shadow); }
.photo-caption span { color: var(--lime); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.photo-caption p { margin: 10px 0 0; font-family: "Manrope"; font-size: 17px; font-weight: 700; line-height: 1.4; }
.proof-content blockquote { margin: 0 0 42px; font-family: "Manrope"; font-size: clamp(27px, 3vw, 42px); font-weight: 600; line-height: 1.3; letter-spacing: -.035em; }
.proof-points { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 42px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.proof-points div { display: flex; gap: 12px; padding: 22px 10px 22px 0; }
.proof-points div + div { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.16); }
.proof-points strong { color: var(--cyan); font-size: 11px; }
.proof-points span { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; line-height: 1.4; }

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(86,216,231,.16), transparent 25%),
    var(--ice);
}
.contact-beam {
  position: absolute;
  top: -30%;
  left: 12%;
  width: 240px;
  height: 900px;
  background: linear-gradient(90deg, transparent, rgba(82,242,255,.15), transparent);
  transform: rotate(28deg);
  filter: blur(14px);
  animation: beam-scan 8s ease-in-out infinite alternate;
}
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-copy { padding-top: 30px; }
.contact-copy h2 { margin-bottom: 25px; }
.contact-details { margin-top: 46px; border-top: 1px solid var(--line); }
.contact-details > * { display: grid; grid-template-columns: 110px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-details strong { font-size: 14px; line-height: 1.5; }
.project-form { padding: 42px; background: var(--white); box-shadow: var(--shadow); }
.project-form {
  position: relative;
  overflow: hidden;
}
.project-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cobalt), var(--cyan-hot), var(--lime), var(--amber));
  background-size: 220% 100%;
  animation: gradient-flow 5s linear infinite;
}
.form-head { display: flex; justify-content: space-between; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-head span { font-family: "Manrope"; font-size: 22px; font-weight: 800; }
.form-head p { margin: 0; color: var(--blue); font-size: 11px; font-weight: 700; }
fieldset { padding: 0; margin: 0 0 22px; border: 0; }
fieldset legend, .project-form > label, .form-row label { display: block; color: var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row span { display: block; padding: 14px; border: 1px solid var(--line); color: var(--muted); text-align: center; cursor: pointer; }
.choice-row input:checked + span { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.project-form input:not([type="radio"]), .project-form select, .project-form textarea {
  width: 100%;
  margin: 8px 0 18px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color .2s;
}
.project-form textarea { resize: vertical; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--blue); }
.project-form > small { display: block; margin-top: 12px; color: var(--muted); text-align: center; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-status {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: var(--ice);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}
.contact-status-success { border-color: #18a567; background: #edf9f3; }
.contact-status-error { border-color: #d54e4e; background: #fff0f0; }

.site-footer { padding: 74px 0 20px; color: var(--white); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; padding-bottom: 60px; }
.footer-brand img { width: 135px; margin-bottom: 24px; }
.footer-brand p { max-width: 290px; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.7; }
.footer-grid h3 { margin-bottom: 20px; color: var(--cyan); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 0 0 13px; color: rgba(255,255,255,.62); font-size: 13px; }
.social-row { display: flex; gap: 8px; }
.social-row a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.33); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

.chat-button {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: flex;
  height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 50px;
  background: var(--lime);
  color: var(--navy-950);
  box-shadow: 0 12px 35px rgba(7,21,33,.24);
  font-size: 12px;
  font-weight: 800;
}
.chat-button:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 42px rgba(7,21,33,.32), 0 0 0 7px rgba(200,240,77,.13); }
.chat-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.chat-pulse { width: 7px; height: 7px; border-radius: 50%; background: #10a860; box-shadow: 0 0 0 5px rgba(16,168,96,.13); }
.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 88px;
  width: min(360px, calc(100% - 48px));
  padding: 20px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong, .toast span { display: block; }
.toast strong { margin-bottom: 5px; color: var(--lime); }
.toast span { color: rgba(255,255,255,.65); font-size: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@keyframes hero-breathe {
  from { transform: scale(1.015); filter: saturate(.82); }
  to { transform: scale(1.07); filter: saturate(1.04); }
}
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes grid-drift {
  to { background-position: 100px 100px; }
}
@keyframes orb-float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-28px,20px,0) scale(1.08); }
}
@keyframes rail-pulse {
  to { top: 210px; }
}
@keyframes gradient-flow {
  to { background-position: 220% center; }
}
@keyframes card-glow {
  to { transform: translate(-65px, 50px) scale(1.25); opacity: .72; }
}
@keyframes blink {
  50% { opacity: .25; transform: scale(.7); }
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}
@keyframes panel-reveal {
  from { clip-path: inset(0 100% 0 0); transform: scale(1.05); }
  to { clip-path: inset(0); transform: scale(1); }
}
@keyframes panel-copy {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes icon-lift {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-9px) rotate(-4deg); }
}
@keyframes ring-turn {
  to { transform: rotate(360deg); }
}
@keyframes beam-scan {
  to { left: 72%; }
}

@media (max-width: 1050px) {
  .nav-links { gap: 18px; }
  .nav-panel { gap: 24px; }
  .hero-content { grid-template-columns: 1fr 310px; gap: 35px; }
  .hero-bottom p { min-width: 170px; margin-right: 22px; padding-right: 22px; }
  .audience-content { padding: 42px; }
  .method-grid, .contact-grid { gap: 60px; }
  .proof-grid { gap: 55px; }
  .founder-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .utility-links { display: none; }
  .utility-inner { justify-content: center; }
  .main-nav { height: 78px; }
  .brand img { width: 112px; }
  .menu-toggle { display: block; z-index: 3; }
  .nav-panel {
    position: fixed;
    z-index: 2;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    padding: 100px 30px 35px;
    background: var(--navy-950);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .nav-panel.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links { flex-direction: column; gap: 12px; }
  .nav-links a { font-family: "Manrope"; font-size: 26px; }
  .nav-dropdown { width: min(100%, 410px); text-align: center; }
  .nav-dropdown-menu,
  .nav-dropdown-menu-small {
    position: static;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 8px;
    padding: 10px;
    border-color: rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding: 9px 7px;
    font-family: "DM Sans";
    font-size: 11px;
  }
  .nav-dropdown-menu strong { font-size: 11px; }
  .nav-dropdown-menu small { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .menu-toggle > span { transition: .2s; }

  .hero { min-height: auto; }
  .hero-content { min-height: 750px; padding-top: 165px; padding-bottom: 70px; grid-template-columns: minmax(0, 1fr); }
  .hero-card { display: none; }
  .hero-orb-one { right: -140px; }
  .hero-bottom { display: none; }
  .hero-media { background-position: 62% center; }
  .trust-row { flex-wrap: wrap; row-gap: 10px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading p { max-width: 620px; }
  .audience-panel { grid-template-columns: 1fr; }
  .audience-visual { min-height: 390px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; gap: 55px; }
  .method-copy { position: static; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
  .project-large { grid-row: auto; grid-column: span 2; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-photo { min-height: 0; aspect-ratio: 16 / 9; }
  .proof-photo img { height: 100%; }
  .photo-caption { right: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr 1fr; }
  .feed-card.feed-featured { grid-column: span 2; }
  .contact-copy { padding: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  body.admin-bar .site-header { top: 46px; }
  :root { --shell: calc(100% - 28px); }
  .section { padding: 68px 0; }
  .utility-inner { font-size: 9px; text-align: center; }
  h1 { max-width: 100%; font-size: 39px; line-height: 1.04; letter-spacing: -.06em; overflow-wrap: break-word; }
  .mobile-break { display: initial; }
  .hero-content { min-height: 720px; padding-top: 145px; padding-bottom: 55px; }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-orb-one { top: 150px; right: -210px; width: 390px; height: 390px; }
  .hero-orb-two { display: none; }
  .hero-media::after { background: linear-gradient(90deg, rgba(4,15,27,.28), rgba(4,15,27,.58)); }
  .signal-track { height: 46px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .trust-row { gap: 0 15px; margin-top: 38px; font-size: 9px; }
  .trust-row span:not(:last-child)::after { margin-left: 15px; }
  .section-heading h2, .method-copy h2, .contact-copy h2 { font-size: 39px; }
  .audience-switch { grid-template-columns: 1fr; }
  .audience-tab + .audience-tab { border-top: 1px solid var(--line); border-left: 0; }
  .audience-visual { min-height: 310px; }
  .audience-content { padding: 35px 25px; }
  .audience-content h3 { font-size: 28px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 310px; }
  .timeline li { grid-template-columns: 45px 1fr; gap: 12px; }
  .timeline li:hover, .timeline li.active { padding-left: 14px; }
  .project-filters { margin-top: 8px; }
  .project-grid { display: block; }
  .project-card, .project-large { height: 370px; margin-bottom: 14px; }
  .project-large .project-body h3 { font-size: 28px; }
  .project-footer { align-items: flex-start; flex-direction: column; gap: 18px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card { display: grid; grid-template-columns: 42% 58%; }
  .founder-photo { height: 100%; aspect-ratio: auto; min-height: 285px; }
  .founder-copy { min-height: 0; padding: 24px 18px; }
  .founder-footer { align-items: flex-start; flex-direction: column; }
  .feed-grid { display: block; }
  .feed-card, .feed-card.feed-featured { display: block; margin-bottom: 16px; }
  .feed-featured .feed-media { min-height: 0; aspect-ratio: 16 / 10; }
  .feed-featured .feed-copy { padding: 25px; }
  .feed-featured .feed-copy h3 { font-size: 23px; }
  .feed-footer { align-items: flex-start; flex-direction: column; }
  .feed-actions { width: 100%; flex-direction: column; }
  .feed-actions .button { width: 100%; }
  .proof-photo { min-height: 0; height: auto; aspect-ratio: 16 / 9; }
  .proof-photo img { min-height: 0; height: 100%; }
  .photo-caption { right: 12px; bottom: 12px; width: calc(100% - 24px); }
  .proof-content blockquote { font-size: 28px; }
  .proof-points { grid-template-columns: 1fr; }
  .proof-points div + div { padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .project-form { padding: 28px 20px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand { grid-column: span 2; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .chat-button { width: 50px; padding: 0; justify-content: center; }
  .chat-button > span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .signal-track { animation: none; }
}


/* === LOGO-FIX-20260613 : logo entièrement visible, descendu et centré === */
.site-header .brand img,.site-header .brand svg{height:88px;width:auto;margin-top:8px;display:block;}
@media(max-width:768px){.site-header .brand img,.site-header .brand svg{height:64px;margin-top:6px;}}
/* === SHELL-VARS-FIX-20260613 === */
:root{--shell:min(1180px,calc(100% - 40px));--navy-950:#071521;--navy-900:#0a1d2c;--navy-800:#102b40;--paper:#f5f7f6;--cyan:#56d8e7;--lime:#c8f04d;--white:#ffffff;}
.shell{width:min(1180px,calc(100% - 40px));margin-left:auto;margin-right:auto;}


/* === FOOTER-5COL-20260613 : aligne la colonne CONTACT avec les autres === */
@media(min-width:900px){.footer-grid{grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;}}
/* === PAGE-HERO-20260613 : hero premium pour pages internes (sans carte laterale) === */
.hero.hero-page{min-height:auto;}
.hero.hero-page .hero-content{grid-template-columns:1fr;min-height:auto;padding-top:150px;padding-bottom:88px;max-width:920px;}
.hero.hero-page .hero-lead{max-width:660px;}
@media(max-width:768px){.hero.hero-page .hero-content{padding-top:120px;padding-bottom:60px;}}


/* === PALETTE-FULL-20260613 : variables premium manquantes (degrades, accents) === */
:root{--cyan-hot:#52f2ff;--cobalt:#3759ff;--violet:#7458ff;--amber:#ffbd59;--ice:#eaf8fb;}


/* === MENU-IMMERSIF-20260613 : header transparent par-dessus le hero, comme l'accueil === */
body:has(.hero) .site-header{background:transparent!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;box-shadow:none!important;border-bottom:0!important;}
body:has(.hero) .site-header .utility-bar{background:transparent!important;border-bottom:1px solid rgba(255,255,255,.14)!important;}



/* === COHERENCE-ACCUEIL-20260613 : pages internes -> bande .expertises identique a l'accueil (titres blancs), SANS toucher .method ni sections claires === */
.expertises h1,.expertises h2,.expertises h3,.expertises h4{color:#fff!important;}
.expertises .section-heading p{color:rgba(255,255,255,.72)!important;}
.expertises .expertise-card:not(.featured) p{color:rgba(255,255,255,.6)!important;}
.expertises .expertise-card:not(.featured) .expertise-number{color:rgba(255,255,255,.4)!important;}
.expertises .expertise-card.featured h2,.expertises .expertise-card.featured h3,.expertises .expertise-card.featured h4,.expertises .expertise-card.featured p{color:var(--navy-950)!important;}


/* === FORM-ETUDE-CHAMPS-20260613 : champs du formulaire .project-form (accueil) avec cadres lisibles === */
.project-form input[type=text],.project-form input[type=email],.project-form input[type=tel],.project-form input:not([type]),.project-form select,.project-form textarea{border:1px solid #d4dee5!important;background:#fff!important;border-radius:12px!important;padding:13px 15px!important;box-sizing:border-box;width:100%;color:var(--ink);font:inherit;transition:border-color .15s,box-shadow .15s;}
.project-form input:focus,.project-form select:focus,.project-form textarea:focus{border-color:var(--cobalt)!important;box-shadow:0 0 0 3px rgba(55,89,255,.13)!important;outline:none;}
.project-form input::placeholder,.project-form textarea::placeholder{color:#7a8a94;opacity:1;}
.project-form select{cursor:pointer;}
.project-form textarea{min-height:120px;resize:vertical;}

/* === FORM-ETUDE-TOGGLE-20260613 : selecteur Professionnel/Particulier en bouton segmente === */
.project-form .choice-row{display:grid!important;grid-template-columns:1fr 1fr;gap:5px;padding:5px;border:1px solid #d4dee5;border-radius:14px;background:#fff;max-width:420px;}
.project-form .choice-row>label{margin:0!important;display:block;cursor:pointer;position:relative;}
.project-form .choice-row>label>input{position:absolute;opacity:0;width:0;height:0;}
.project-form .choice-row>label>span{display:block;text-align:center;padding:12px 10px;font-weight:600;font-size:14.5px;line-height:1.1;border-radius:10px;color:var(--ink,#0a1d2c);background:transparent;transition:background .15s,color .15s,box-shadow .15s;}
.project-form .choice-row>label:hover>span{background:#eef3f6;}
.project-form .choice-row>label>input:checked+span{background:var(--cobalt,#3759ff);color:#fff;box-shadow:0 4px 12px rgba(55,89,255,.28);}

/* === RECRUT-FORM-20260613 : formulaire de candidature /nous-rejoindre/ === */
.nk-recrut-form{max-width:680px;margin:0 auto;display:flex;flex-direction:column;gap:16px;}
.nk-recrut-form .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.nk-recrut-form .field{display:flex;flex-direction:column;gap:7px;margin:0;}
.nk-recrut-form .field>span{font-weight:600;font-size:14px;color:var(--ink,#0a1d2c);}
.nk-recrut-form input[type=text],.nk-recrut-form input[type=email],.nk-recrut-form input[type=tel],.nk-recrut-form select,.nk-recrut-form textarea{border:1px solid #d4dee5;background:#fff;border-radius:12px;padding:13px 15px;width:100%;box-sizing:border-box;color:var(--ink,#0a1d2c);font:inherit;transition:border-color .15s,box-shadow .15s;}
.nk-recrut-form input:focus,.nk-recrut-form select:focus,.nk-recrut-form textarea:focus{border-color:var(--cobalt,#3759ff);box-shadow:0 0 0 3px rgba(55,89,255,.13);outline:none;}
.nk-recrut-form select{cursor:pointer;}
.nk-recrut-form textarea{min-height:110px;resize:vertical;}
.nk-recrut-form input[type=file]{border:1.5px dashed #c2d0da;background:#f7fafc;border-radius:12px;padding:13px 15px;width:100%;box-sizing:border-box;font:inherit;color:#33485a;cursor:pointer;transition:border-color .15s,background .15s;}
.nk-recrut-form input[type=file]:hover{border-color:var(--cobalt,#3759ff);background:#fff;}
.nk-recrut-form input[type=file]::file-selector-button{margin-right:14px;border:0;background:var(--ink,#0a1d2c);color:#fff;padding:9px 16px;border-radius:9px;font-weight:600;cursor:pointer;font:inherit;}
.nk-recrut-form input[type=file]::-webkit-file-upload-button{margin-right:14px;border:0;background:var(--ink,#0a1d2c);color:#fff;padding:9px 16px;border-radius:9px;font-weight:600;cursor:pointer;}
.nk-recrut-form button[type=submit]{align-self:flex-start;margin-top:4px;}
.nk-recrut-form .nk-formnote{font-size:12.5px;color:var(--muted,#5a6b78);margin:2px 0 0;}
.nk-recrut-form .nk-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden;}
.nk-alert{padding:14px 18px;border-radius:12px;margin:0 auto 22px;max-width:680px;font-weight:500;line-height:1.45;}
.nk-alert-ok{background:#e7f7ed;border:1px solid #b7e4c7;color:#1b6b3a;}
.nk-alert-err{background:#fdecec;border:1px solid #f5c2c2;color:#b02a2a;}
@media(max-width:640px){.nk-recrut-form .form-grid{grid-template-columns:1fr;}}

/* === CONTACT-COORDS-20260613 : cartes coordonnees (accueil, section contact claire) === */
.contact-details{display:flex;flex-direction:column;gap:12px;margin-top:26px;max-width:440px;}
.contact-details .contact-line{display:flex;align-items:center;gap:14px;padding:13px 16px;border:1px solid #d4e2ea;border-radius:14px;background:#fff;text-decoration:none;transition:border-color .15s,box-shadow .15s,transform .15s;}
.contact-details a.contact-line:hover{border-color:var(--cobalt,#3759ff);box-shadow:0 8px 22px rgba(20,50,90,.10);transform:translateY(-1px);}
.contact-details .ci-ico{flex:0 0 44px;height:44px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,#3759ff,#37c6e0);color:#fff;}
.contact-details .ci-ico svg{width:20px;height:20px;display:block;}
.contact-details .ci-text{display:flex;flex-direction:column;gap:1px;min-width:0;}
.contact-details .ci-text>span{font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:#6b7e8c;font-weight:700;}
.contact-details .ci-text>strong{font-size:16px;color:var(--ink,#0a1d2c);font-weight:600;line-height:1.25;}

/* === CAPTION-LOWER-20260613 : descendre la legende NEOKA GROUP pour ne pas masquer les visages === */
.proof-photo .photo-caption{bottom:-26px;right:-18px;width:262px;padding:18px 20px;}
.proof-photo .photo-caption p{font-size:15.5px;margin-top:8px;}
@media(max-width:760px){.proof-photo .photo-caption{bottom:-18px;right:8px;width:auto;max-width:80%;}}

/* === ARTICLE-SINGLE-20260613 : page article dediee (neoka_actu) === */
.nk-article{padding:0 0 64px;}
.nk-article-head{padding:120px 0 32px;background:linear-gradient(180deg,#0a1d2c,#0e2740);color:#fff;}
.nk-article-head .shell{max-width:820px;}
.nk-article-back{display:inline-block;margin-bottom:18px;color:#9fb8cc;text-decoration:none;font-weight:600;font-size:14px;transition:color .15s;}
.nk-article-back:hover{color:#fff;}
.nk-article-source{display:inline-block;padding:5px 12px;border-radius:999px;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;background:rgba(255,255,255,.12);color:#cfe0ee;}
.nk-article-source-linkedin{background:#0a66c2;color:#fff;}
.nk-article-source-social{background:#1877f2;color:#fff;}
.nk-article-source-youtube{background:#ff0000;color:#fff;}
.nk-article-title{margin:14px 0 6px;font-size:clamp(26px,4vw,40px);line-height:1.12;color:#fff;}
.nk-article-date{margin:0;color:#9fb8cc;font-size:14px;font-weight:600;}
.nk-article-content{max-width:820px;padding-top:36px;padding-bottom:8px;font-size:17px;line-height:1.7;color:var(--ink,#0a1d2c);}
.nk-article-content p{margin:0 0 18px;}
.nk-article-content img{max-width:100%;height:auto;border-radius:16px;margin:10px auto 24px;display:block;}
.nk-article-content figure{margin:0 0 24px;}
.nk-article-content a{color:var(--cobalt,#3759ff);}
.nk-article-content details{display:none;}
.nk-article-foot{max-width:820px;padding-top:12px;}

/* === MOBILE-MENU-20260613 : menu deroulant mobile plus espace et confortable au clic === */
@media (max-width: 900px){
  .nav-panel{justify-content:flex-start!important;gap:4px!important;padding:88px 20px 44px!important;overflow-y:auto!important;}
  .nav-links{flex-direction:column!important;gap:2px!important;width:100%;align-items:stretch!important;}
  .nav-links a{font-size:21px!important;padding:16px 8px!important;width:100%;border-bottom:1px solid rgba(255,255,255,.09);}
  .nav-dropdown{width:100%!important;}
  .nav-dropdown-trigger{font-size:21px!important;padding:16px 8px!important;display:flex!important;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.09);}
  .nav-dropdown-menu{display:flex!important;grid-template-columns:1fr!important;flex-direction:column!important;gap:0!important;margin-top:0!important;padding:2px 0 8px 14px!important;background:rgba(255,255,255,.03)!important;}
  .nav-dropdown-menu a{padding:15px 12px!important;font-size:16px!important;border-bottom:1px solid rgba(255,255,255,.06);}
  .nav-dropdown-menu strong{font-size:16px!important;font-weight:600;}
  .nav-dropdown-menu small{display:block!important;font-size:12.5px!important;opacity:.62;margin-top:3px;}
}
/* === REVEAL-FIX-20260613 : contenu toujours visible (anim JS non fiable) + fade CSS autonome === */
@keyframes nkReveal{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:none;}}
.reveal{opacity:1;transform:none;animation:nkReveal .8s cubic-bezier(.2,.8,.2,1) both;}
.reveal.visible{opacity:1;transform:none;}

/* === REVEAL-FIX2-20260613 : visibilite garantie (bat l'animation et l'ordre optimiseur) === */
html .reveal{opacity:1 !important;transform:none !important;}

/* === MOBILE-MENU-V2-20260613 : menu mobile force et coherent sur toutes les pages === */
@media (max-width:900px){
  .utility-links{display:none!important;}
  .main-nav .menu-toggle{display:flex!important;align-items:center;justify-content:center;}
  .main-nav .nav-panel{position:fixed!important;inset:0!important;width:100vw!important;max-width:100vw!important;height:100%!important;flex-direction:column!important;justify-content:flex-start!important;align-items:stretch!important;gap:2px!important;padding:90px 22px 44px!important;background:#0a1d2c!important;overflow-y:auto!important;z-index:3000!important;}
  .main-nav .nav-panel:not(.open){opacity:0!important;visibility:hidden!important;pointer-events:none!important;}
  .main-nav .nav-panel.open{opacity:1!important;visibility:visible!important;pointer-events:auto!important;}
  .main-nav .nav-links{display:flex!important;flex-direction:column!important;gap:2px!important;width:100%!important;align-items:stretch!important;}
  .main-nav .nav-links>a,.main-nav .nav-dropdown-trigger{display:flex!important;align-items:center;justify-content:space-between;font-size:21px!important;padding:16px 6px!important;color:#fff!important;border-bottom:1px solid rgba(255,255,255,.09)!important;text-align:left!important;}
  .main-nav .nav-dropdown{width:100%!important;}
  .main-nav .nav-dropdown-menu{display:flex!important;flex-direction:column!important;position:static!important;inset:auto!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;background:rgba(255,255,255,.03)!important;padding:2px 0 8px 14px!important;margin:0!important;}
  .main-nav .nav-dropdown-menu a{display:block!important;font-size:16px!important;padding:14px 12px!important;color:#cfe0ee!important;border-bottom:1px solid rgba(255,255,255,.06)!important;}
  .main-nav .nav-panel .button{order:99!important;margin-top:18px!important;align-self:flex-start!important;}
}

/* === MOBILE-MENU-V3-20260613 : corrige le .nav-links fixe hors-ecran (conflit 2 systemes de menu) === */
@media (max-width:900px){
  .main-nav .nav-panel .nav-links{position:static!important;transform:none!important;inset:auto!important;top:auto!important;left:auto!important;right:auto!important;bottom:auto!important;visibility:visible!important;opacity:1!important;width:100%!important;height:auto!important;}
  .main-nav .nav-panel .nav-links .nav-dropdown-menu,
  .main-nav .nav-panel .nav-links .nav-dropdown-menu a,
  .main-nav .nav-panel .nav-links a{visibility:visible!important;opacity:1!important;}
}


/* ===== IMPECCABLE FIXES 2026-06-15 (rollback : supprimer ce bloc ou restaurer neoka-premium-backup-20260615.css) ===== */
.gradient-text{
  background:none!important;
  -webkit-background-clip:border-box!important;
  background-clip:border-box!important;
  color:var(--cyan)!important;
  -webkit-text-fill-color:var(--cyan)!important;
  animation:none!important;
  filter:none!important;
}
.method-quote{ border-left:0!important; border-radius:16px!important; }
.contact-status{
  border-left:0!important;
  display:inline-flex!important;
  align-items:center;
  gap:9px;
  border-radius:999px!important;
  color:var(--blue)!important;
}
.contact-status::before{
  content:"";
  width:8px; height:8px;
  border-radius:50%;
  background:var(--blue);
  flex:0 0 auto;
}
.timeline li{ transition:transform .25s, background .25s!important; }
.timeline li:hover, .timeline li.active{
  padding-left:0!important;
  transform:translateX(12px);
}
/* ===== /IMPECCABLE FIXES ===== */


/* ===== FIX AFFICHAGE 2026-06-15 (Edge/Safari + panneau Solutions) ===== */
.utility-bar{-webkit-backdrop-filter:blur(8px);}
.nav-dropdown-menu{-webkit-backdrop-filter:blur(18px);}
.hero-card{-webkit-backdrop-filter:blur(16px);}
.hero-bottom{-webkit-backdrop-filter:blur(8px);}
.project-tags span{-webkit-backdrop-filter:blur(8px);}
.feed-card{-webkit-backdrop-filter:blur(12px);}
.feed-source{-webkit-backdrop-filter:blur(7px);}
html .audience-panel .audience-content,html .audience-panel.active .audience-content{opacity:1!important;animation:none!important;transform:none!important;}
html .audience-panel .audience-visual,html .audience-panel.active .audience-visual{animation:none!important;-webkit-clip-path:none!important;clip-path:none!important;transform:none!important;}
