@font-face {
  font-family: 'Google Sans Flex';
  src: url('assets/font/Google_Sans_Flex/GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090909;
  --bg-soft: #101010;
  --bg-panel: rgba(255, 255, 255, 0.04);
  --bg-panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(92, 255, 178, 0.4);
  --text: #f5f7fb;
  --muted: #a6adbb;
  --muted-dark: rgba(10, 10, 10, 0.62);
  --accent: #4fffb0;
  --accent-dark: #183b2e;
  --accent-soft: rgba(79, 255, 176, 0.12);
  --accent-bright: #92ffd0;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 40px 120px rgba(0, 0, 0, 0.44);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.85rem;
  --container: 1180px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Google Sans Flex', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(79, 255, 176, 0.12), transparent 24%),
    radial-gradient(circle at left 80%, rgba(94, 73, 255, 0.09), transparent 20%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 255, 176, 0.08), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(79, 255, 176, 0.06), transparent 18%),
    radial-gradient(circle at 70% 72%, rgba(82, 77, 255, 0.07), transparent 24%);
  animation: bodyAurora 18s ease-in-out infinite alternate;
}

@keyframes bodyAurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(0, -1.5%, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes pulseGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes scanMove {
  from { transform: translateY(-100%); }
  to { transform: translateY(100vh); }
}

@keyframes driftGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 28px, 0); }
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  border-radius: 0.7rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-chrome {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.page-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(79, 255, 176, 0.15), rgba(79, 255, 176, 0.95), rgba(152, 255, 214, 0.45));
  box-shadow: 0 0 18px rgba(79, 255, 176, 0.52);
}

.page-grid,
.page-scanlines {
  position: absolute;
  inset: 0;
}

.page-grid {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
  animation: driftGrid 16s linear infinite;
}

.page-scanlines::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 16vh;
  opacity: 0.06;
  background: linear-gradient(180deg, transparent, rgba(79, 255, 176, 0.9), transparent);
  filter: blur(22px);
  animation: scanMove 12s linear infinite;
}

.page-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.26;
  mix-blend-mode: screen;
}

.page-glow-a {
  width: 24rem;
  height: 24rem;
  top: 7rem;
  right: -8rem;
  background: rgba(79, 255, 176, 0.22);
}

.page-glow-b {
  width: 20rem;
  height: 20rem;
  left: -9rem;
  top: 55vh;
  background: rgba(86, 74, 255, 0.18);
}

.page-glow-c {
  width: 16rem;
  height: 16rem;
  right: 10%;
  bottom: 8rem;
  background: rgba(79, 255, 176, 0.11);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.64));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.logo::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 0.65rem;
  box-shadow: 0 0 12px rgba(79, 255, 176, 0.65);
}

.logo-img {
  height: 2rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav-link,
.footer-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav-link:hover,
.footer-link:hover {
  color: var(--text);
}

.site-nav-link {
  position: relative;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.24s ease;
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after {
  transform: scaleX(1);
}

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

.header-location {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(79, 255, 176, 0.14);
}

.header-cta,
.btn-primary {
  background: #ffffff;
  color: #101010;
  border: 1px solid #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: var(--accent-soft);
}

.header-cta::before,
.btn::before {
  content: '';
  position: absolute;
  inset: -120% auto auto -30%;
  width: 40%;
  height: 300%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.header-cta:hover::before,
.btn:hover::before {
  opacity: 0.9;
  transform: translateX(240%) rotate(18deg);
}

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: clip;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 2.25rem;
  align-items: end;
  min-height: min(82svh, 840px);
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-ring,
.hero-beam,
.hero-blip,
.hero-grid-panel {
  position: absolute;
}

.hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(79, 255, 176, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotate(0deg);
}

.hero-ring-a {
  width: 30rem;
  height: 30rem;
  top: 4rem;
  right: 8%;
  opacity: 0.3;
  animation: orbitSpin 28s linear infinite;
}

.hero-ring-b {
  width: 18rem;
  height: 18rem;
  top: 11rem;
  right: 15%;
  opacity: 0.16;
  animation: orbitSpin 18s linear infinite reverse;
}

.hero-ring-c {
  width: 10rem;
  height: 10rem;
  top: 9rem;
  right: 24%;
  opacity: 0.24;
  animation: orbitFloat 8s ease-in-out infinite;
}

.hero-beam {
  filter: blur(12px);
  opacity: 0.4;
}

.hero-beam-a {
  width: 40rem;
  height: 14rem;
  right: -7rem;
  top: 0;
  background: radial-gradient(circle at center, rgba(79, 255, 176, 0.18), transparent 70%);
  transform: translate3d(calc(var(--hero-shift-x) * 0.55), calc(var(--hero-shift-y) * 0.55), 0);
}

.hero-beam-b {
  width: 24rem;
  height: 24rem;
  left: -8rem;
  bottom: -7rem;
  background: radial-gradient(circle at center, rgba(88, 75, 255, 0.16), transparent 72%);
  transform: translate3d(calc(var(--hero-shift-x) * -0.35), calc(var(--hero-shift-y) * -0.35), 0);
}

.hero-blip {
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(79, 255, 176, 0.8);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-blip-a {
  width: 0.55rem;
  height: 0.55rem;
  top: 7rem;
  right: 27%;
}

.hero-blip-b {
  width: 0.4rem;
  height: 0.4rem;
  top: 21rem;
  right: 12%;
  animation-delay: 1.2s;
}

.hero-grid-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.32);
  border: 1px solid rgba(79, 255, 176, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(calc(var(--hero-shift-x) * -0.4), calc(var(--hero-shift-y) * -0.4), 0);
}

.hero-grid-panel span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(79, 255, 176, 0.18);
  box-shadow: 0 0 10px rgba(79, 255, 176, 0.15);
}

.hero-grid-panel-a {
  top: 8rem;
  right: 6%;
}

.hero-grid-panel-b {
  bottom: 8rem;
  right: 20%;
  opacity: 0.55;
}

.hero-grid-panel span:nth-child(3n) {
  background: rgba(255, 255, 255, 0.32);
}

.hero-grid-panel span:nth-child(4n) {
  background: rgba(79, 255, 176, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: rgba(10, 10, 10, 0.58);
}

.hero-title,
.section-heading h2,
.split-intro h2,
.contact-copy h2,
.legal-layout h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.03);
}

.hero-para,
.section-heading p,
.split-intro p,
.contact-copy p,
.legal-block p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hero-para {
  max-width: 40rem;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-tags li {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #d7dce6;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: orbitFloat 7.5s ease-in-out infinite;
}

.hero-tags li:nth-child(2) { animation-delay: 0.6s; }
.hero-tags li:nth-child(3) { animation-delay: 1.2s; }
.hero-tags li:nth-child(4) { animation-delay: 1.8s; }

.hero-tags li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(79, 255, 176, 0.16), transparent 80%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-tags li:hover::after {
  opacity: 1;
}

.hero-panel {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(11, 18, 14, 0.96), rgba(10, 10, 10, 0.84)),
    var(--bg-panel);
  border: 1px solid rgba(79, 255, 176, 0.2);
  box-shadow: var(--shadow-strong);
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(0, 0, 0);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel::before,
.hero-stat::before,
.proof-card::before,
.value-card::before,
.expertise-card::before,
.method-step::before,
.contact-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(79, 255, 176, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.hero-panel::after,
.hero-stat::after,
.proof-card::after,
.value-card::after,
.expertise-card::after,
.method-step::after,
.contact-card::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 255, 176, 0.85), transparent);
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0.25;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-panel:hover::before,
.hero-stat:hover::before,
.proof-card:hover::before,
.value-card:hover::before,
.expertise-card:hover::before,
.method-step:hover::before,
.contact-card:hover::before,
.hero-panel:focus-within::before,
.contact-card:focus-within::before {
  opacity: 1;
}

.hero-panel:hover::after,
.hero-stat:hover::after,
.proof-card:hover::after,
.value-card:hover::after,
.expertise-card:hover::after,
.method-step:hover::after,
.contact-card:hover::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.hero-panel-kicker,
.card-code,
.contact-link-type {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-panel-text {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-panel-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.hero-panel-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-item p {
  margin: 0;
  color: #d9dee6;
  line-height: 1.6;
}

.hero-panel-num {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.hero-stat,
.proof-card,
.value-card,
.expertise-card,
.method-step,
.contact-card,
.legal-block {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hero-stat {
  padding: 1.25rem 1.35rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.proof-section,
.adn-section,
.expertise-section,
.methodology-section,
.contact-section,
.legal-main {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.proof-section::before,
.adn-section::before,
.expertise-section::before,
.methodology-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 255, 176, 0.18), transparent);
}

.section-heading,
.split-intro,
.contact-copy,
.legal-layout {
  max-width: 46rem;
}

.section-heading h2,
.split-intro h2,
.contact-copy h2,
.legal-layout h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.section-heading p,
.split-intro p,
.contact-copy p,
.legal-block p,
.legal-block li {
  margin: 1.2rem 0 0;
}

.proof-grid,
.stack-grid,
.expertise-grid {
  display: grid;
  gap: 1.25rem;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.proof-card,
.value-card,
.expertise-card,
.method-step,
.contact-card,
.legal-block {
  padding: 1.55rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.proof-card h3,
.value-card h3,
.expertise-card h3,
.method-step h3,
.legal-block h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.proof-card p,
.value-card p,
.expertise-card p,
.method-step p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.proof-card,
.value-card,
.expertise-card,
.method-step {
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(0, 0, 0);
  transition:
    transform 0.25s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.proof-card:hover,
.value-card:hover,
.method-step:hover {
  border-color: rgba(79, 255, 176, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.2);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

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

.value-card {
  background: linear-gradient(180deg, rgba(14, 18, 14, 0.96), rgba(11, 11, 11, 0.92));
}

.expertise-grid {
  margin-top: 2.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.95), rgba(13, 13, 13, 0.9)),
    var(--bg-panel);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.expertise-card:hover {
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(0, -4px, 0);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(11, 16, 13, 0.96), rgba(11, 11, 11, 0.92)),
    var(--bg-panel-strong);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(79, 255, 176, 0.12);
}

.card-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border-radius: 0.95rem;
  border: 1px solid rgba(79, 255, 176, 0.22);
  background: rgba(79, 255, 176, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.card-icon-wrap svg {
  width: 1.3rem;
  height: 1.3rem;
}

.expertise-card:hover .card-icon-wrap {
  transform: translateY(-2px);
  background: rgba(79, 255, 176, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(79, 255, 176, 0.14);
}

.card-kicker {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-layout {
  align-items: stretch;
}

.method-steps {
  display: grid;
  gap: 1rem;
}

.method-step {
  position: relative;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.method-step.is-active {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(15, 22, 17, 0.98), rgba(11, 11, 11, 0.92)),
    var(--bg-panel-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 50px rgba(0, 0, 0, 0.22);
}

.contact-section {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #42f3aa 0%, #54f6b7 52%, #65f0c8 100%);
  color: #08110d;
  overflow: clip;
}

.contact-section::before,
.contact-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.contact-section::before {
  inset: auto auto -8rem -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(5, 27, 18, 0.14), transparent 68%);
  filter: blur(20px);
}

.contact-section::after {
  top: 1.5rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1px solid rgba(8, 17, 13, 0.12);
  opacity: 0.5;
  animation: orbitSpin 26s linear infinite;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy h2,
.contact-copy p,
.contact-note {
  color: inherit;
}

.contact-note-wrap {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  max-width: 34rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(7, 33, 24, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-note-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.18), transparent 18%);
  pointer-events: none;
}

.contact-note {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.82;
  position: relative;
  z-index: 1;
}

.contact-note-channels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.contact-note-channels li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.08);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-note-channels li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #08110d;
  box-shadow: 0 0 0 4px rgba(8, 17, 13, 0.08);
}

.contact-card {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(10, 10, 10, 0.12);
  box-shadow:
    0 30px 70px rgba(7, 33, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  padding: 0.5rem 1.35rem;
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(0, 0, 0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-link {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-link:last-child {
  border-bottom: none;
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: rgba(10, 10, 10, 0.22);
}

.contact-link-type {
  color: rgba(10, 10, 10, 0.52);
  margin: 0.15rem 0 0;
}

.contact-link-value {
  font-size: clamp(1.25rem, 2.25vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3rem;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-logo::after {
  display: none;
}

.footer-logo .logo-img {
  height: 4.5rem;
  width: auto;
}

.footer-copy,
.footer-credit,
.footer-legal p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-social,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-links {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.legal-page {
  background:
    radial-gradient(circle at top right, rgba(79, 255, 176, 0.14), transparent 24%),
    var(--bg);
}

.legal-main {
  padding-top: 5rem;
}

.legal-layout {
  display: grid;
  gap: 1.3rem;
}

.legal-block {
  background: rgba(255, 255, 255, 0.03);
}

.legal-block h2 {
  font-size: 1.15rem;
}

.legal-block a {
  color: var(--text);
}

.js .scroll-reveal {
  opacity: 0;
  translate: 0 22px;
  scale: 0.985;
  filter: blur(8px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    scale 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .scroll-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body::after,
  .page-grid,
  .page-scanlines,
  .page-glow {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-panel,
  .contact-card {
    max-width: 44rem;
  }

  .hero-grid-panel-b {
    display: none;
  }

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

@media (max-width: 760px) {
  :root {
    --header-h: auto;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .header-inner {
    padding: 1rem 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 0.4rem;
  }

  .header-side {
    margin-left: auto;
  }

  .header-location {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .proof-section,
  .adn-section,
  .expertise-section,
  .methodology-section,
  .contact-section,
  .legal-main {
    padding: 4.5rem 0;
  }

  .page-grid,
  .page-scanlines {
    opacity: 0.45;
  }

  .hero-ring-a,
  .hero-ring-b,
  .hero-grid-panel-a,
  .hero-grid-panel-b {
    display: none;
  }

  .hero-ring-c {
    right: -2rem;
    top: 14rem;
  }

  .hero-beam-a {
    right: -12rem;
    top: 7rem;
  }

  .hero-blip-a {
    right: 12%;
    top: 10rem;
  }

  .hero-title,
  .section-heading h2,
  .split-intro h2,
  .contact-copy h2,
  .legal-layout h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .hero-tags,
  .hero-actions {
    gap: 0.65rem;
  }

  .hero-tags li {
    width: 100%;
  }

  .hero-stats,
  .proof-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding: 1.15rem 1rem;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .contact-note-wrap {
    padding: 1rem;
  }

  .contact-link-value {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .footer-logo .logo-img {
    height: 3.6rem;
  }
}
