:root {
  --bg: #050608;
  --bg-2: #0a0d12;
  --bg-3: #0e1219;
  --elevated: #0d1118;
  --surface: #111820;
  --surface-2: #161d28;
  --text: #f0f3f9;
  --text-2: #c4cbd8;
  --muted: #7a8699;
  --accent: #3cf0df;
  --accent-deep: #1ba89a;
  --accent-2: #9b87f5;
  --accent-2-dim: rgba(155, 135, 245, 0.12);
  --accent-glow: rgba(60, 240, 223, 0.4);
  --border: rgba(255, 255, 255, 0.065);
  --border-2: rgba(60, 240, 223, 0.22);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px rgba(60, 240, 223, 0.08), 0 20px 50px rgba(0, 0, 0, 0.5);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Syne", var(--font);
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 22px;
  --radius-sm: 12px;
  --header-h: 118px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px rgba(60, 240, 223, 0.55);
  --page-pad: clamp(1rem, 5vw, 1.75rem);
  --container-max: 1160px;
  --radius-xs: 8px;
  --surface-elevated: linear-gradient(165deg, rgba(18, 24, 34, 0.97) 0%, rgba(8, 10, 16, 0.99) 100%);
  --hairline: rgba(255, 255, 255, 0.06);
}

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

::selection {
  background: rgba(60, 240, 223, 0.25);
  color: var(--text);
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  color: var(--text-2);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(60, 240, 223, 0.07), transparent 52%),
    radial-gradient(ellipse 90% 50% at 100% 50%, rgba(155, 135, 245, 0.05), transparent 45%),
    radial-gradient(ellipse 55% 40% at 0% 70%, rgba(60, 240, 223, 0.03), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #030406 55%, var(--bg) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  z-index: 1;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.mono {
  font-family: var(--mono);
}

/* —— Atmosphere —— */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.055;
  mix-blend-mode: overlay;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mesh {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% -20%, rgba(60, 240, 223, 0.09), transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(167, 139, 250, 0.07), transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30, 80, 90, 0.12), transparent 55%);
}

.grid-fine {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 15%, transparent 75%);
  opacity: 0.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}

.nav__cta:focus-visible {
  border-radius: 8px;
}

.btn:focus-visible {
  border-radius: 100px;
}

.nowrap {
  white-space: nowrap;
}

.visually-hidden {
  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: absolute;
  top: -100px;
  left: var(--page-pad);
  z-index: 200;
  padding: 0.65rem 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg) !important;
  background: var(--accent);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-md);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 0.75rem;
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-md);
}

em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

/* —— Header —— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.92) 0%, rgba(5, 7, 11, 0.86) 100%);
  backdrop-filter: blur(20px) saturate(1.25);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.42), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 240, 223, 0.12), transparent);
  pointer-events: none;
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--page-pad);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo__img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: opacity 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}

.logo:hover .logo__img {
  opacity: 0.92;
  filter: brightness(1.06);
}

.logo__img--footer {
  width: 68px;
  height: 68px;
  opacity: 0.9;
}

.footer__logo-link .logo__img--footer {
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a:not(.nav__cta) {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.nav a:not(.nav__cta) span {
  position: relative;
  z-index: 1;
}

.nav a:not(.nav__cta)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transition: opacity 0.2s var(--ease-out);
}

.nav a:not(.nav__cta):hover {
  color: var(--text);
  text-decoration: none;
}

.nav a:not(.nav__cta):hover::before {
  opacity: 1;
}

.nav a.is-active:not(.nav__cta) {
  color: var(--text);
}

.nav a.is-active:not(.nav__cta)::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.12), rgba(155, 135, 245, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__cta {
  margin-left: 0.25rem;
  padding: 0.5rem 1rem !important;
  font-family: var(--mono);
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: linear-gradient(135deg, var(--accent) 0%, #2dd4c4 100%);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(60, 240, 223, 0.2);
  text-decoration: none !important;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 28px rgba(60, 240, 223, 0.3);
  color: var(--bg) !important;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 10px 9px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.menu-btn:hover {
  border-color: rgba(60, 240, 223, 0.25);
  background: rgba(60, 240, 223, 0.06);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: background 0.2s, transform 0.25s var(--ease-out);
}

.header__inner:has(.nav.is-open) .menu-btn {
  border-color: rgba(60, 240, 223, 0.35);
  box-shadow: 0 0 20px rgba(60, 240, 223, 0.12);
}

.header__inner:has(.nav.is-open) .menu-btn span {
  background: var(--accent);
}

@media (max-width: 1024px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: var(--page-pad);
    right: var(--page-pad);
    width: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(10, 12, 18, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.75rem 0.5rem !important;
    border-radius: 8px;
  }

  .nav a:not(.nav__cta) {
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) var(--page-pad) 3.75rem;
  overflow: hidden;
  z-index: 1;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(60, 240, 223, 0.09), transparent 58%),
    radial-gradient(ellipse 45% 35% at 100% 25%, rgba(155, 135, 245, 0.07), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(60, 240, 223, 0.04), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__stage {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

.hero__copy {
  position: relative;
  min-width: 0;
}

.hero__copy::before {
  content: "";
  position: absolute;
  width: min(100%, 520px);
  height: 220px;
  top: -2rem;
  left: -12%;
  background: radial-gradient(ellipse 80% 70% at 40% 40%, rgba(60, 240, 223, 0.1), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1100px) {
  .hero__copy::before {
    left: -5%;
    top: -1rem;
  }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.pill:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.pill--live:hover {
  border-color: rgba(60, 240, 223, 0.35);
  box-shadow: 0 4px 16px rgba(60, 240, 223, 0.08);
}

.pill--live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-color: rgba(60, 240, 223, 0.25);
  color: var(--text-2);
}

.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero__eyebrow {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.hero__path {
  font-family: var(--mono);
  color: var(--accent);
  margin-right: 0.15rem;
}

.hero__slash {
  opacity: 0.4;
  margin: 0 0.15rem;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  color: var(--text);
  text-wrap: balance;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.35);
}

.hero__line {
  display: block;
}

.hero__line--grad {
  background: linear-gradient(105deg, var(--text) 0%, var(--accent) 42%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__line--sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-2);
  margin-top: 0.5rem;
  background: none;
  -webkit-text-fill-color: var(--text-2);
  line-height: 1.4;
}

.hero__lead {
  position: relative;
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.hero__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(155, 135, 245, 0.75));
  box-shadow: 0 0 14px rgba(60, 240, 223, 0.15);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 120%);
  color: var(--bg) !important;
  border: none;
  box-shadow: 0 4px 28px rgba(60, 240, 223, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 8px 36px rgba(60, 240, 223, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--primary svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

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

.btn--ghost {
  background: transparent;
  color: var(--text-2) !important;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
}

.btn--ghost:hover {
  border-color: var(--border-2);
  background: rgba(60, 240, 223, 0.06);
  color: var(--text) !important;
  box-shadow: 0 0 24px rgba(60, 240, 223, 0.08);
}

.btn--ghost:active {
  transform: translateY(0);
}

/* Hero stage */
.hero__stage {
  position: relative;
  padding: 0.5rem;
}

.stage__frame {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(16, 22, 32, 0.95) 0%, rgba(6, 8, 12, 0.98) 100%);
  box-shadow: var(--shadow-glow), 0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.stage__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.35), transparent 40%, rgba(167, 139, 250, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stage__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stage__status {
  color: var(--accent);
}

.stage__body {
  position: relative;
  aspect-ratio: 1;
  max-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stage__svg {
  width: 88%;
  height: 88%;
  animation: rotate-slow 48s linear infinite;
}

.stage__arc {
  stroke-dasharray: 8 12;
  animation: dash 3s linear infinite;
}

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

@keyframes dash {
  to {
    stroke-dashoffset: -40;
  }
}

.stage__ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(60, 240, 223, 0.15);
  animation: rotate-slow 32s linear infinite reverse;
}

.stage__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.stage__orb--a {
  width: 100px;
  height: 100px;
  background: var(--accent);
  top: 15%;
  left: 10%;
}

.stage__orb--b {
  width: 80px;
  height: 80px;
  background: var(--accent-2);
  bottom: 18%;
  right: 12%;
}

.stage__chips {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stage__chips li {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.35);
}

.stage__footer {
  padding: 0.55rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  color: var(--muted);
  text-align: center;
}

.stage__card {
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 22, 0.92);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stage__card--float {
  animation: float-card 5s ease-in-out infinite;
}

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

.stage__k {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.stage__v {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
}

.hero__stats {
  position: relative;
  max-width: var(--container-max);
  margin: 2.75rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.hero__stats .stat {
  position: relative;
  padding: 1.4rem 1rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.25s;
  overflow: hidden;
}

.hero__stats .stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(60, 240, 223, 0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.hero__stats .stat:hover::after {
  opacity: 1;
}

.hero__stats .stat:hover {
  transform: translateY(-3px);
  border-color: rgba(60, 240, 223, 0.28);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(60, 240, 223, 0.06);
}

.stat__value {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
}

.stat__value--naf {
  letter-spacing: 0.06em;
}

.stat__label {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
  display: block;
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

/* —— Sections —— */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 8.5vw, 5rem) var(--page-pad);
}

.section--services {
  padding-top: clamp(2.75rem, 6vw, 3.75rem);
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 48%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section--cyber {
  padding: clamp(3rem, 8vw, 4.25rem) var(--page-pad);
}

.section--legal {
  padding-bottom: clamp(3.5rem, 8vw, 4.5rem);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(155, 135, 245, 0.04), transparent 55%);
}

.section--contact {
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad);
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(60, 240, 223, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
}

.section--about {
  background: linear-gradient(180deg, transparent 0%, rgba(60, 240, 223, 0.02) 50%, transparent 100%);
}

/* —— Engagement (valeurs / cadre) —— */
.section--engagement {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-bottom: clamp(3rem, 7vw, 4.25rem);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(155, 135, 245, 0.06), transparent 58%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.engagement__head {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.engagement__title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.9vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
  margin: 0 0 1rem;
}

.engagement__intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 40rem;
}

.engagement__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

@media (max-width: 900px) {
  .engagement__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.engagement-card {
  position: relative;
  padding: 1.6rem 1.45rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, box-shadow 0.35s;
}

.engagement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 100% 0%, rgba(60, 240, 223, 0.09), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.engagement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 240, 223, 0.22);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(60, 240, 223, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.engagement-card:hover::before {
  opacity: 1;
}

.engagement-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(60, 240, 223, 0.12), rgba(155, 135, 245, 0.07));
  border: 1px solid rgba(60, 240, 223, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.engagement-card__title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.engagement-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: var(--muted);
}

.engagement-card__text strong {
  color: var(--text-2);
  font-weight: 600;
}

/* —— Panneau services —— */
.surface-panel--bento {
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 55% at 10% 0%, rgba(60, 240, 223, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(155, 135, 245, 0.06), transparent 50%),
    linear-gradient(165deg, rgba(14, 18, 26, 0.55) 0%, rgba(6, 8, 12, 0.75) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 56px rgba(0, 0, 0, 0.35);
}

.surface-panel--bento::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.2), transparent 42%, rgba(167, 139, 250, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.surface-panel--bento .bento {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section__head {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
  align-items: start;
}

@media (max-width: 640px) {
  .section__head {
    grid-template-columns: 1fr;
  }
}

.section__head--row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .section__head--row {
    grid-template-columns: 1fr;
  }
}

.section__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__no {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  user-select: none;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(60, 240, 223, 0.08) 45%, rgba(155, 135, 245, 0.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(60, 240, 223, 0.2);
}

.section__intro-block {
  padding-left: 0;
  border-left: none;
  margin-left: 0;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(60, 240, 223, 0.2);
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.08) 0%, rgba(155, 135, 245, 0.05) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(60, 240, 223, 0.5);
  opacity: 0.85;
}

.section__tag--dim {
  color: var(--muted);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.section__tag--dim::before {
  background: var(--muted);
  box-shadow: none;
  opacity: 0.6;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.25;
}

.section__title--xl {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  position: relative;
  padding-bottom: 0.65rem;
}

.section .section__title--xl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(3.5rem, 18%);
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(60, 240, 223, 0.2);
}

.title-highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__intro {
  color: var(--muted);
  max-width: 42rem;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.section__intro strong {
  color: var(--text-2);
}

/* —— Expertise grid —— */
.bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.5rem;
}

@media (max-width: 720px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.card-pro {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.65rem 1.5rem 1.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 28, 38, 0.94) 0%, rgba(8, 10, 15, 0.97) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.35s;
}

.card-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 240, 223, 0.25), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.card-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(60, 240, 223, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.card-pro:hover {
  transform: translateY(-3px);
  border-color: rgba(60, 240, 223, 0.28);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(60, 240, 223, 0.06);
}

.card-pro:hover::after {
  opacity: 1;
}

.card-pro__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.card-pro__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(60, 240, 223, 0.1), rgba(155, 135, 245, 0.06));
  border: 1px solid rgba(60, 240, 223, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.card-pro:hover .card-pro__icon {
  transform: scale(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 16px rgba(60, 240, 223, 0.08);
}

.card-pro__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.55rem;
  padding: 0 0.45rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(60, 240, 223, 0.2);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.card-pro:hover .card-pro__n {
  border-color: rgba(60, 240, 223, 0.35);
  color: var(--text-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 12px rgba(60, 240, 223, 0.06);
}

.card-pro__title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.35;
}

.card-pro__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.card-pro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.1rem;
}

.card-pro__tags span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.55rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.card-pro:hover .card-pro__tags span {
  border-color: rgba(60, 240, 223, 0.18);
  color: var(--text-2);
}

/* —— Références clients —— */
.section--refs {
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
}

.refs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .refs {
    grid-template-columns: 1fr;
  }
}

.refs__note {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 44rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(60, 240, 223, 0.45);
  background: linear-gradient(90deg, rgba(60, 240, 223, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%);
}

.refs__note strong {
  color: var(--text-2);
  font-weight: 600;
}

article.refs__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(20, 26, 36, 0.9) 0%, rgba(8, 10, 14, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.3s, transform 0.3s var(--ease-spring);
}

article.refs__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
}

.refs__card-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-decoration: none;
}

.refs__card-hit:hover {
  text-decoration: none;
  color: inherit;
}

.refs__card-hit:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius);
}

.refs__preview {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.5) 0%, var(--surface) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.refs__preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(180deg, rgba(16, 20, 28, 0.98) 0%, rgba(10, 12, 18, 0.96) 100%);
  border-bottom: 1px solid var(--border);
}

.refs__chrome-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.refs__chrome-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}

.refs__chrome-dots span:nth-child(1) {
  background: #f87171;
  opacity: 0.9;
}

.refs__chrome-dots span:nth-child(2) {
  background: #fbbf24;
  opacity: 0.9;
}

.refs__chrome-dots span:nth-child(3) {
  background: #4ade80;
  opacity: 0.9;
}

.refs__chrome-url {
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.refs__preview-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #050608;
  overflow: hidden;
}

.refs__preview-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.refs__iframe,
.refs__shot {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.refs__shot {
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.refs__preview--ready .refs__shot {
  opacity: 1;
}

.refs__preview-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
}

.refs__preview--static {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
}

.refs__preview-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(60, 240, 223, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(155, 135, 245, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(12, 16, 24, 0.95) 0%, rgba(6, 8, 12, 0.98) 100%);
  pointer-events: none;
}

.refs__preview--b .refs__preview-bg {
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(155, 135, 245, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(60, 240, 223, 0.08), transparent 50%),
    linear-gradient(165deg, rgba(12, 16, 24, 0.95) 0%, rgba(6, 8, 12, 0.98) 100%);
}

.refs__preview--static::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}

.refs__preview-initials {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 45%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.refs__preview--b .refs__preview-initials {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 55%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.refs__preview-chip {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.35);
}

.refs__content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.35rem 1.5rem;
}

article.refs__card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(60, 240, 223, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

article.refs__card:hover::before {
  opacity: 0.85;
}

.refs__name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.refs__role {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.refs__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.refs__domain {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.65rem;
}

.refs__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s, gap 0.25s var(--ease-out);
}

.refs__cta::after {
  content: "→";
  font-size: 0.85em;
  opacity: 0.65;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

article.refs__card:hover .refs__cta::after {
  transform: translateX(3px);
  opacity: 1;
}

article.refs__card:hover .refs__cta {
  color: var(--accent);
}

article.refs__card:hover .refs__preview-viewport {
  transform: scale(1.012);
}

article.refs__card .refs__preview-viewport {
  transform-origin: 50% 0;
  transition: transform 0.45s var(--ease-out);
}

/* —— Cyber —— */
.cyber-panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1px;
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.35), rgba(167, 139, 250, 0.15), transparent 60%);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.cyber-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(60, 240, 223, 0.06);
}

.cyber-panel__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.85;
}

.cyber-panel__glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cyber-panel__content {
  position: relative;
  z-index: 1;
  padding: 1.65rem 1.5rem 1.65rem 1.75rem;
  background: linear-gradient(155deg, rgba(14, 18, 26, 0.98) 0%, rgba(6, 8, 12, 0.99) 100%);
  border-radius: calc(var(--radius) - 1px);
  overflow: hidden;
}

.cyber-panel__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 0%, transparent 75%);
}

.cyber-panel__brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cyber-panel__logo-wrap {
  padding: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  box-shadow: none;
}

.cyber-panel__logo {
  display: block;
  width: auto;
  max-width: min(100%, 280px);
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.cyber-panel__titles {
  flex: 1;
  min-width: 200px;
}

.cyber-panel__kicker {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.cyber-panel__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
}

.cyber-panel__text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 720px;
}

.cyber-panel__text strong {
  color: var(--text-2);
}

.cyber-panel__text--muted {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cyber-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.15rem;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  background: rgba(60, 240, 223, 0.08);
  color: var(--accent) !important;
  text-decoration: none !important;
  transition: box-shadow 0.25s, transform 0.2s;
}

.cyber-panel__link:hover {
  box-shadow: 0 0 28px rgba(60, 240, 223, 0.15);
  transform: translateX(3px);
}

.cyber-panel__link svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring);
}

.cyber-panel__link:hover svg {
  transform: translate(2px, -2px);
}

.cyber-panel__text a {
  color: var(--accent);
  font-weight: 500;
  text-underline-offset: 3px;
}

.cyber-panel__text a:hover {
  color: var(--text);
}

/* —— Split —— */
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.split__text {
  position: relative;
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(20, 26, 36, 0.92), rgba(8, 10, 14, 0.96));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.split__text::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 60% at 0% 0%, rgba(60, 240, 223, 0.07), transparent 55%),
    radial-gradient(ellipse 65% 45% at 100% 100%, rgba(155, 135, 245, 0.05), transparent 55%);
  pointer-events: none;
}

.split__text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 240, 223, 0.2), transparent);
  opacity: 0.75;
  pointer-events: none;
}

.split__text .section__meta {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.split__text p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.split__text p:last-child {
  margin-bottom: 0;
}

.split__text p strong {
  color: var(--text);
}

.split__facts {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
}

.split__fact {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.split__fact:hover {
  transform: translateY(-2px);
  border-color: rgba(60, 240, 223, 0.18);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.split__fact-k {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.split__fact-v {
  display: block;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .container--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .split__facts {
    grid-template-columns: 1fr;
  }
}

.split__panel--terminal {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: none;
}

.terminal {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #06080c 0%, #030406 100%);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(60, 240, 223, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.terminal:hover {
  transform: translateY(-2px);
  border-color: rgba(60, 240, 223, 0.16);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(60, 240, 223, 0.05),
    inset 0 1px 0 rgba(60, 240, 223, 0.08);
}

.terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(60, 240, 223, 0.03) 100%
  );
  border-radius: inherit;
}

.terminal__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--elevated);
  border-bottom: 1px solid var(--border);
}

.terminal__bar span:nth-child(-n + 3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.terminal__bar span:nth-child(1) {
  background: #ef4444;
  opacity: 0.85;
}

.terminal__bar span:nth-child(2) {
  background: #eab308;
  opacity: 0.85;
}

.terminal__bar span:nth-child(3) {
  background: #22c55e;
  opacity: 0.85;
}

.terminal__title {
  flex: 1;
  text-align: center;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.terminal__body {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.35rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--muted);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 3px
  );
}

.t-prompt {
  color: var(--accent-2);
}

.t-cmd {
  color: var(--text);
}

.t-ok {
  color: var(--accent);
}

.t-key {
  color: var(--muted);
}

.t-val {
  color: var(--text-2);
}

.t-dim {
  color: var(--muted);
  opacity: 0.9;
}

/* —— Legal —— */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
}

.legal-item {
  position: relative;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.legal-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--accent), rgba(155, 135, 245, 0.5));
  opacity: 0.35;
  transition: opacity 0.25s;
}

.legal-item:nth-child(even)::before {
  background: linear-gradient(180deg, var(--accent-2), rgba(60, 240, 223, 0.4));
}

.legal-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.legal-item:hover::before {
  opacity: 0.9;
}

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

.legal-item dt {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.legal-item dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
}

.legal-item code {
  font-family: var(--mono);
  font-size: 0.88em;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

@media (max-width: 700px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Contact —— */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact__title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(60, 240, 223, 0.25);
}

.contact__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.7;
}

.contact-block {
  position: relative;
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(20, 26, 36, 0.95), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.contact-block::before,
.contact-block::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(60, 240, 223, 0.25);
  border-style: solid;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.25s, border-color 0.25s;
}

.contact-block::before {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
  border-radius: 2px 0 0 0;
}

.contact-block::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 1px 1px 0;
  border-radius: 0 0 2px 0;
}

.contact-block:hover {
  border-color: rgba(60, 240, 223, 0.18);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.contact-block:hover::before,
.contact-block:hover::after {
  opacity: 1;
  border-color: rgba(60, 240, 223, 0.45);
}

.contact-block__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.contact-block__addr {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 0.4rem;
  color: var(--text-2);
}

.contact-block__addr strong {
  color: var(--text);
  font-size: 1.1rem;
}

.contact-block__email {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: clamp(0.8125rem, 2.5vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-block__email a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(60, 240, 223, 0.2);
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.07), rgba(155, 135, 245, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out), border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out),
    box-shadow 0.25s;
}

.contact-block__email a::before {
  content: "@";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), #2dd4c4);
  box-shadow: 0 0 16px rgba(60, 240, 223, 0.2);
}

.contact-block__email a:hover {
  color: var(--text);
  text-decoration: none;
  border-color: rgba(60, 240, 223, 0.3);
  background: linear-gradient(135deg, rgba(60, 240, 223, 0.1), rgba(155, 135, 245, 0.07));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.contact-block__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.contact-block__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.contact-block__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block__chips li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(60, 240, 223, 0.45);
}

/* —— Footer —— */
.footer {
  padding: clamp(2.75rem, 6vw, 3.5rem) var(--page-pad) 2.25rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 40%, #040508 100%);
  position: relative;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 240, 223, 0.2), rgba(155, 135, 245, 0.14), transparent);
  pointer-events: none;
}

.footer__shell {
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 2.5rem 3rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer__identity {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.footer__logo-link {
  flex-shrink: 0;
  line-height: 0;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.footer__logo-link:hover {
  opacity: 0.95;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(60, 240, 223, 0.15);
}

.footer__identity-text {
  min-width: 0;
  padding-top: 0.15rem;
}

.footer__name {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.footer__byline {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.footer__activity {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

@media (max-width: 720px) {
  .footer__columns {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.footer__col-label {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

.footer__col-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer__col-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.2rem 0;
  border-radius: 4px;
  transition: color 0.2s, transform 0.2s var(--ease-out);
}

.footer__col-nav a:hover {
  color: var(--accent);
  text-decoration: none;
  transform: translateX(2px);
}

.footer__mail {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  word-break: break-word;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0;
}

.footer__mail:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__col-note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 16rem;
}

.footer__col-legal {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--text-2);
}

.footer__col-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .footer__identity {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__identity-text {
    padding-top: 0;
  }

  .footer__col-nav {
    align-items: center;
  }

  .footer__columns {
    text-align: center;
  }

  .footer__mail {
    text-align: center;
  }

  .footer__col-note {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__bar {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .contact-block__email a {
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pill__dot,
  .stage__svg,
  .stage__ring,
  .stage__arc,
  .stage__card--float {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
