:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --paper: #ffffff;
  --mist: #f2f2f2;
  --ink: #0a0a0a;
  --muted: #a8a8a8;
  --muted-dark: #747474;
  --neon: #c5f500;
  --teal: #3bfff0;
  --navy: #0a0a5a;
  --purple: #4b00e0;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 72px;
  background: rgba(0, 0, 0, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
}

.brand {
  position: relative;
  display: inline-grid;
  align-items: start;
  color: var(--neon);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.brand-main {
  display: flex;
  gap: 0.06em;
  font-size: clamp(18px, 2.1vw, 28px);
  letter-spacing: -0.04em;
}

.brand-main span:last-child {
  color: #ecfeaf;
}

.brand-group {
  justify-self: end;
  margin-top: 2px;
  color: var(--neon);
  font-size: clamp(8px, 0.8vw, 12px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-spark {
  position: absolute;
  right: -16px;
  top: -9px;
  width: 13px;
  height: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover {
  color: #ffffff;
}

.nav-cta,
.outline-btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1.6px solid var(--neon);
  border-radius: 30px;
  background: transparent;
  color: var(--neon);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.nav-cta,
.submit-btn {
  background: var(--neon);
  color: var(--ink);
}

.nav-cta:hover,
.outline-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 245, 0, 0.25);
}

.outline-btn:hover {
  background: var(--neon);
  color: var(--ink);
}

.language-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.language-switch a.is-active {
  color: var(--neon);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.section,
.hero {
  padding: 120px 72px;
}

.section-dark {
  background: var(--bg-alt);
  color: #ffffff;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-gray {
  background: var(--mist);
  color: var(--ink);
}

.hero {
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: clip;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 120px 0 44px;
}

.hero-kicker,
.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted-dark);
}

.eyebrow.accent {
  color: var(--neon);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 0.86fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
}

.rotating-wrap {
  display: inline-flex;
  overflow: visible;
  padding-top: 0.08em;
  color: var(--neon);
  vertical-align: bottom;
}

#rotating-word {
  display: inline-block;
  line-height: 1.05;
}

.hero-copy p {
  max-width: 420px;
  margin: 32px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-copy small,
.team-layout small,
.contact-copy small {
  display: block;
  margin-top: 24px;
  color: #8f8f8f;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-shapes {
  position: relative;
  min-height: 430px;
  pointer-events: none;
}

.shape {
  position: absolute;
}

.starburst-main {
  right: clamp(-150px, -8vw, -72px);
  bottom: 0;
  width: clamp(280px, 30vw, 450px);
  animation: float 3s infinite linear, spin 24s infinite linear;
}

.starburst-small {
  top: 18px;
  right: 160px;
  width: 120px;
  opacity: 0.12;
  animation: spin-reverse 28s infinite linear;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: start;
}

#services .two-col {
  grid-template-columns: minmax(280px, 0.62fr) minmax(680px, 1.38fr);
  gap: 48px;
}

.section h2 {
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

#services h2 {
  font-weight: 400;
  text-transform: none;
}

.section-copy p {
  max-width: 480px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 256px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.service-card img,
.circle-shape {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.circle-shape {
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--neon) 0 14%, transparent 15%),
    var(--ink);
}

.service-card h3,
.team-card h3,
.work-info strong {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-card p,
.team-card p {
  margin: 0;
  color: #767676;
  font-size: 13px;
  line-height: 1.6;
}

.section-dark .team-card p {
  color: #8f8f8f;
}

.team-section {
  position: relative;
}

.team-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
}

.team-layout .section-copy p {
  color: #b5b5b5;
}

.team-layout strong {
  display: block;
  margin-top: 28px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08));
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.04);
}

.team-card:nth-child(2) .team-photo {
  object-position: center center;
}

.team-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.split-head p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(252px, auto);
  gap: 16px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 252px;
  background: #dcdcdc;
  color: var(--ink);
  transition: transform 0.3s ease;
}

.work-card.featured {
  grid-row: span 2;
  min-height: 520px;
}

.work-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transform: scale(1.01);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.work-card:hover .work-image {
  filter: grayscale(100%) contrast(1.08);
  transform: scale(1.05);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
  mix-blend-mode: multiply;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.work-card:hover {
  transform: scale(0.98);
}

.work-card:hover::after {
  opacity: 0.35;
}

.work-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.88) 58%, rgba(0, 0, 0, 0.96));
  color: #ffffff;
}

.work-info small {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-info strong {
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.8);
}

.work-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-links a {
  position: relative;
}

.work-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.work-links a:hover::after {
  transform: scaleX(1);
}

.expertise-tagline {
  max-width: 320px;
  margin-top: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--purple);
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.55;
}

.skill-list {
  display: grid;
}

.skill-item {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 68px;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.skill-item span {
  min-width: 24px;
  color: #888888;
  font-size: 10px;
}

.skill-item strong {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.skill-item:hover strong {
  color: var(--purple);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(380px, 1.18fr);
  gap: 64px;
  align-items: start;
}

.contact-copy {
  min-width: 0;
}

.contact-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 6.8vw, 90px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.accent-word {
  display: block;
  color: var(--neon);
}

html[lang="fr"] .contact-copy h2 {
  max-width: 580px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.92;
}

.contact-copy p {
  max-width: 440px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.7;
}

.contact-copy a {
  display: inline-block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form,
.sticky-form {
  display: grid;
  gap: 18px;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label span {
  color: #969696;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  background: #151515;
  color: #ffffff;
  padding: 14px 16px;
  outline: none;
}

select {
  color-scheme: dark;
  appearance: auto;
  background-color: #151515;
  color: #ffffff;
}

select option {
  background-color: #151515;
  color: #ffffff;
}

select option:checked,
select option:hover {
  background-color: #c5f500;
  color: #0a0a0a;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--neon);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  min-height: 156px;
  padding: 24px 72px 96px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.site-footer p,
.site-footer a {
  color: #929292;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer div:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: var(--neon);
}

.sticky-quote {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 110;
  background: #000000;
  border-top: 2px solid var(--neon);
  transform: translateY(calc(100% - 52px));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-quote.is-open {
  transform: translateY(0);
}

.sticky-quote.is-submitted {
  display: none;
}

.sticky-tab {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0 72px;
  border: 0;
  background: transparent;
  color: var(--neon);
  cursor: pointer;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 2s infinite;
}

.chevron {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.sticky-quote.is-open .chevron {
  transform: rotate(180deg);
}

.sticky-form {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 20px 72px 28px;
}

.sticky-form .form-status {
  grid-column: 1 / -1;
}

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

.js .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.spin-slow {
  animation: spin 30s infinite linear;
}

.breathe {
  animation: breathe 3s infinite ease-in-out;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes float {
  50% {
    translate: 0 -16px;
  }
}

@keyframes breathe {
  50% {
    transform: scale(1.06);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(197, 245, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(197, 245, 0, 0);
  }
}

@media (max-width: 1100px) {
  .site-header,
  .section,
  .hero,
  .site-footer,
  .sticky-tab,
  .sticky-form {
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero-bottom,
  .two-col,
  #services .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-shapes {
    position: absolute;
    inset: auto -76px 20px auto;
    width: 38vw;
    min-width: 260px;
    min-height: 280px;
    opacity: 0.72;
    z-index: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    max-width: min(720px, 78vw);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

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

  .sticky-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding: 0 20px;
  }

  .brand-main {
    font-size: 16px;
  }

  .brand-group {
    font-size: 7px;
  }

  .brand-spark {
    right: -12px;
    top: -7px;
    width: 10px;
    height: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .language-switch {
    margin-left: auto;
    margin-right: 18px;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 90;
    display: grid;
    gap: 22px;
    padding: 28px 20px;
    background: rgba(0, 0, 0, 0.96);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  body.menu-open .mobile-nav {
    transform: translateY(0);
  }

  .section,
  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero-inner {
    padding-top: 108px;
    padding-bottom: 76px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-shapes {
    inset: auto -86px 4px auto;
    min-height: 150px;
    width: 32vw;
    min-width: 150px;
    opacity: 0.34;
    z-index: 0;
  }

  .starburst-main {
    right: -108px;
    bottom: -10px;
    width: 190px;
  }

  .starburst-small {
    right: 80px;
    width: 86px;
  }

  .services-grid,
  .team-grid,
  .split-head,
  .work-grid,
  .contact-form,
  .sticky-form {
    grid-template-columns: 1fr;
  }

  .split-head p {
    text-align: left;
  }

  .work-card.featured {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
    min-height: 164px;
    padding: 24px 20px 88px;
  }

  .sticky-tab {
    padding: 0 20px;
  }

  .sticky-form {
    padding: 18px 20px 24px;
  }
}
