@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap");

@font-face {
font-family: "Future Earth";
src: url("../fonts/future-earth.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;
}

:root {
color-scheme: dark;
--silver-edge: rgba(122, 193, 235, 0.44);
--silver-core: rgba(122, 193, 235, 0.28);
--bg-1: #0a0f14;
--box-gap: 15px;
--box-corner-size: 14px;
--box-corner-line: rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.52);
--box-surface: rgba(7, 18, 26, 0.5);
--box-border: rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.24);
--box-highlight: rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.18);
--dot-space: 38px;
--dot-base: 1;
--dot-grow: 2.3;
--scroll-progress: 0;
}
.theme-accent-palette {
--accent-turquoise-rgb: 122, 193, 235;
--accent-pink-rgb: 230, 110, 160;
}
body {
position: relative;
margin: 0;
font-family: "JetBrains Mono", monospace;
font-size: 0.72rem;
line-height: 1.7;
background: var(--bg-1);
display: flex;
flex-direction: column;
min-height: 100vh;
}
body.page-transition-managed > :not(.page-loader) {
transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
}
body.page-transition-managed:not(.page-is-ready) > :not(.page-loader),
body.page-transition-managed.page-is-leaving > :not(.page-loader) {
opacity: 0.12;
transform: translateY(12px);
filter: blur(8px);
}
body.page-transition-managed.page-is-ready > :not(.page-loader) {
opacity: 1;
transform: translateY(0);
filter: blur(0);
}
.page-loader {
position: fixed;
inset: 0;
display: grid;
place-items: center;
z-index: 120;
background:
  radial-gradient(circle at 50% 40%, rgba(var(--accent-turquoise-rgb), 0.16), rgba(var(--accent-turquoise-rgb), 0) 28%),
  radial-gradient(circle at 52% 56%, rgba(var(--accent-pink-rgb), 0.14), rgba(var(--accent-pink-rgb), 0) 26%),
  rgba(10, 15, 20, 0.72);
backdrop-filter: blur(14px);
opacity: 1;
visibility: visible;
pointer-events: auto;
transition: opacity 420ms ease, visibility 420ms ease;
}
.page-loader.is-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.page-loader-shell {
display: grid;
justify-items: center;
gap: 1.1rem;
}
.page-loader-ring {
position: relative;
width: 5.5rem;
height: 5.5rem;
border-radius: 50%;
display: grid;
place-items: center;
animation: loader-spin 1.35s linear infinite;
filter: drop-shadow(0 0 14px rgba(var(--accent-turquoise-rgb), 0.32)) drop-shadow(0 0 18px rgba(var(--accent-pink-rgb), 0.2));
}
.page-loader-ring::before {
content: "";
position: absolute;
inset: 0;
border-radius: 50%;
background: conic-gradient(
  from 0deg,
  rgba(var(--accent-turquoise-rgb), 0.05) 0deg,
  rgba(var(--accent-turquoise-rgb), 0.98) 120deg,
  rgba(var(--accent-pink-rgb), 0.95) 240deg,
  rgba(var(--accent-turquoise-rgb), 0.1) 360deg
);
mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px));
}
.page-loader-ring::after {
content: "";
position: absolute;
inset: 0.65rem;
border-radius: 50%;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.3);
box-shadow:
  0 0 24px rgba(var(--accent-turquoise-rgb), 0.18),
  inset 0 0 16px rgba(var(--accent-pink-rgb), 0.08);
}
.page-loader-core {
width: 1.2rem;
height: 1.2rem;
border-radius: 50%;
background: radial-gradient(circle, rgba(240, 246, 250, 0.95), rgba(var(--accent-turquoise-rgb), 0.78));
box-shadow:
  0 0 16px rgba(var(--accent-turquoise-rgb), 0.45),
  0 0 24px rgba(var(--accent-pink-rgb), 0.28);
}
.page-loader-text {
margin: 0;
font-size: 0.72rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: rgba(230, 239, 246, 0.84);
}
@keyframes loader-spin {
from {
  transform: rotate(0deg);
}
to {
  transform: rotate(360deg);
}
}
html {
scrollbar-width: thin;
scrollbar-color: rgb(var(--accent-turquoise-rgb, 122, 193, 235)) rgba(13, 20, 28, 0.95);
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
width: 12px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
background: rgba(13, 20, 28, 0.95);
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
border: 1px solid rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.55);
border-radius: 999px;
background: linear-gradient(
    to bottom,
    rgb(var(--accent-pink-rgb, 230, 110, 160)) 0%,
    rgb(var(--accent-pink-rgb, 230, 110, 160)) calc(var(--scroll-progress) * 100%),
    rgb(var(--accent-turquoise-rgb, 122, 193, 235)) calc(var(--scroll-progress) * 100%),
    rgb(var(--accent-turquoise-rgb, 122, 193, 235)) 100%
);
box-shadow:
    inset 0 0 0 0 rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0),
    0 0 0 0 rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0);
transition: box-shadow 260ms ease, border-color 260ms ease;
}
html.scrolling-active::-webkit-scrollbar-thumb,
body.scrolling-active::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
border-color: rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.95);
box-shadow:
    inset 0 0 0 1px rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.9),
    0 0 0 1px rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.55),
    0 0 16px rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.82),
    0 0 30px rgba(var(--accent-turquoise-rgb, 122, 193, 235), 0.45);
}
p {
color: rgba(198, 210, 220, 0.74);
}
a {
color: rgba(var(--accent-turquoise-rgb), 0.9);
transition: color 140ms ease;
}
a:hover {
color: rgb(var(--accent-pink-rgb));
}
.glyph-char {
display: inline;
transition: color 140ms ease;
}
.glyph-char.is-alt {
color: rgba(var(--accent-turquoise-rgb), 0.96);
}
body::before {
content: "";
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
opacity: 0.3;
background: linear-gradient(180deg, rgba(133, 170, 198, 0.12), rgba(133, 170, 198, 0) 35%);
}
#tc {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
opacity: 0.45;
}
.dot-field {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
}
.container {
position: relative;
z-index: 1;
width: min(100%, 1140px);
margin-inline: auto;
}
.text-light {
color: #e8f0f6;
}
.site-header {
position: sticky;
top: 0;
z-index: 20;
background: transparent;
transition: padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.site-header.scrolled {
background: rgba(8, 12, 17, 0.5);
box-shadow: 0 1px 0 rgba(162, 182, 198, 0.18);
}
.site-nav {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 1.2rem;
padding-bottom: 1.2rem;
transition: padding 220ms ease;
}
.site-header.scrolled .site-nav {
padding-top: 0.6rem;
padding-bottom: 0.6rem;
}
.breadcrumbs-nav {
position: relative;
z-index: 19;
background: transparent;
border-bottom: none;
padding: 0.4rem 0;
margin-top: 0;
}
.breadcrumbs-nav .container {
padding-top: 0;
padding-bottom: 0;
}
.breadcrumbs {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 0.6rem;
font-size: 0.72rem;
letter-spacing: 0.04em;
flex-wrap: wrap;
}
.breadcrumbs li {
display: flex;
align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
content: "/";
margin-left: 0.6rem;
color: rgba(var(--accent-turquoise-rgb), 0.5);
}
.breadcrumbs a {
color: rgba(var(--accent-turquoise-rgb), 0.8);
text-decoration: none;
transition: color 140ms ease;
}
.breadcrumbs a:hover {
color: rgb(var(--accent-pink-rgb));
}
.breadcrumbs span {
color: rgba(210, 223, 234, 0.6);
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 1.8rem;
}
.nav-links > li {
position: relative;
}
.nav-item-with-panel {
position: static !important;
}
.nav-links a {
text-decoration: none;
font-size: 0.8rem;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 160ms ease;
}
.nav-parent-link {
display: inline-flex;
align-items: center;
gap: 0.45rem;
}
.nav-parent-link::after {
content: "+";
font-size: 0.74rem;
line-height: 1;
color: rgba(var(--accent-turquoise-rgb), 0.68);
transition: transform 180ms ease, color 180ms ease;
}
.nav-item-with-panel:hover .nav-parent-link::after,
.nav-item-with-panel:focus-within .nav-parent-link::after,
.nav-item-with-panel.is-open .nav-parent-link::after {
transform: rotate(45deg);
color: rgba(var(--accent-pink-rgb), 0.92);
}
.mega-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
transform: translateY(8px);
display: grid;
grid-template-columns: 1fr 1fr 2fr;
gap: 0;
width: 100%;
padding: 0;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.32);
background:
  linear-gradient(120deg, rgba(122, 193, 235, 0.12), rgba(122, 193, 235, 0) 55%),
  rgba(13, 20, 28, 0.96);
box-shadow:
  inset 0 0 0 1px rgba(166, 219, 248, 0.08),
  0 18px 32px rgba(2, 7, 12, 0.56);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
z-index: 40;
}
.mega-menu::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -0.8rem;
height: 0.8rem;
pointer-events: auto;
}
.nav-item-with-panel:hover .mega-menu,
.nav-item-with-panel:focus-within .mega-menu,
.nav-item-with-panel.is-open .mega-menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(0);
}
.mega-menu-column,
.mega-menu-highlight {
padding: 1.6rem 1.5rem;
min-width: 0;
}
.mega-menu-column {
border-right: 1px solid rgba(var(--accent-turquoise-rgb), 0.16);
}
.mega-menu-heading {
margin: 0 0 0.95rem;
font-size: 0.68rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(var(--accent-turquoise-rgb), 0.78);
}
.mega-menu-list {
list-style: none;
margin: 0;
padding: 0;
display: grid;
gap: 0.55rem;
}
.mega-menu-list a {
display: block;
font-size: 0.74rem;
letter-spacing: 0.06em;
text-transform: none;
color: rgba(220, 234, 244, 0.88);
}
.mega-menu-list a.is-previewed {
color: rgb(var(--accent-pink-rgb));
}
.mega-menu-list a:hover {
color: rgb(var(--accent-pink-rgb));
}
.mega-menu-highlight {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 0;
background: rgba(7, 18, 26, 0.48);
}
.mega-menu-preview {
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
gap: 1rem;
align-content: start;
padding-top: 1.45rem;
padding-bottom: 1.45rem;
}
.mega-menu-preview-top {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
align-items: start;
column-gap: 1rem;
}
.mega-menu-preview-header {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 0.28rem;
padding-top: 0.15rem;
min-width: 0;
}
.mega-menu-highlight::before,
.mega-menu-highlight::after {
opacity: 1;
}
.mega-menu-icon {
display: grid;
place-items: center;
width: 3.4rem;
height: 3.4rem;
flex-shrink: 0;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.38);
background: linear-gradient(145deg, rgba(var(--accent-turquoise-rgb), 0.14), rgba(var(--accent-pink-rgb), 0.06));
box-shadow: inset 0 0 0 1px rgba(166, 219, 248, 0.08);
align-self: start;
}
.mega-menu-icon-mark {
display: block;
font-size: 1rem;
font-weight: 600;
line-height: 1;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(220, 234, 244, 0.92);
padding-left: 0.18em;
}
.mega-menu-copy {
margin: 0;
max-width: 32ch;
font-size: 0.78rem;
line-height: 1.75;
color: rgba(198, 210, 220, 0.74);
}
.mega-menu-preview-kicker {
margin: 0;
line-height: 1.15;
}
.mega-menu-preview-title {
margin: 0;
font-size: 1.2rem;
line-height: 1.08;
letter-spacing: 0.02em;
text-transform: uppercase;
color: rgba(220, 234, 244, 0.96);
}
.mega-menu-preview-copy {
max-width: none;
margin-top: 0;
padding-top: 0.1rem;
}
.above-fold {
border: 0;
margin-top: 0;
margin-bottom: 0;
padding-top: 8rem;
padding-bottom: 8rem;
}
.welcome-block {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 1.25rem;
align-items: start;
}
.welcome-copy {
min-width: 0;
}
.welcome-copy .intro-sub,
.welcome-copy .intro-service-cloud {
max-width: none;
}
.welcome-empty {
min-height: 100%;
}
.intro-eyebrow {
margin: 0 0 1.2rem;
font-size: 0.74rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(var(--accent-turquoise-rgb), 0.7);
}
.intro-heading {
margin: 0 0 1.8rem;
font-size: clamp(2.8rem, 7vw, 5.5rem);
font-weight: 600;
letter-spacing: -0.01em;
line-height: 1.08;
color: rgba(220, 234, 244, 0.97);
}
.intro-sub {
margin: 0;
max-width: 42ch;
font-size: 0.88rem;
line-height: 1.75;
color: rgba(193, 206, 216, 0.65);
}
.intro-service-cloud {
margin-top: 1rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
max-width: 64ch;
}
.intro-service-cloud a {
display: inline-block;
padding: 0.36rem 0.7rem;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.52);
background:
  linear-gradient(145deg, rgba(var(--accent-turquoise-rgb), 0.18), rgba(var(--accent-turquoise-rgb), 0.04));
box-shadow:
  inset 0 0 0 1px rgba(230, 241, 247, 0.06),
  0 0 0 1px rgba(var(--accent-turquoise-rgb), 0.12);
font-size: 0.66rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(218, 235, 246, 0.86);
text-decoration: none;
transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.intro-service-cloud a:hover {
border-color: rgba(var(--accent-turquoise-rgb), 0.84);
background:
  linear-gradient(145deg, rgba(var(--accent-turquoise-rgb), 0.28), rgba(var(--accent-turquoise-rgb), 0.08));
color: rgba(234, 244, 251, 0.96);
transform: translateY(-1px);
box-shadow:
  inset 0 0 0 1px rgba(230, 241, 247, 0.08),
  0 0 10px rgba(var(--accent-turquoise-rgb), 0.25);
}
.services-section {
padding: 4rem 0;
}
.pull-quote {
margin: 0;
padding: 6rem 0;
text-align: center;
}
.pull-quote p {
margin: 0 0 0.9rem;
font-size: clamp(1.2rem, 3vw, 2rem);
font-weight: 600;
letter-spacing: 0.02em;
line-height: 1.45;
color: rgba(220, 234, 244, 0.92);
max-width: 36ch;
margin-inline: auto;
}
.pull-quote cite {
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--accent-turquoise-rgb), 0.65);
}

.global-presence {
  margin: 3.2rem 0;
  padding: 0;
}

.global-presence h2 {
  color: rgba(220, 234, 244, 0.95);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: opacity(0.95);
  transition: filter 280ms ease;
}

.map-container:hover .map-image {
  filter: opacity(1) drop-shadow(0 0 12px rgba(var(--accent-turquoise-rgb), 0.3));
}

.locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.locations-list li {
  padding: 1rem;
  border-left: 2px solid rgba(var(--accent-turquoise-rgb), 0.5);
  padding-left: 1.4rem;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(220, 234, 244, 0.85);
  transition: border-color 280ms ease, color 280ms ease;
}

.locations-list li:hover {
  border-left-color: rgba(var(--accent-turquoise-rgb), 0.9);
  color: rgba(220, 234, 244, 0.98);
}

.lower-section {
--bs-gutter-x: 0;
--bs-gutter-y: 0;
margin-top: 3.2rem;
margin-bottom: 0;
row-gap: var(--box-gap);
}
.main-layout {
padding-top: 0;
padding-bottom: 0;
display: grid;
gap: var(--box-gap);
flex: 1;
}
.aesthetic-box {
position: relative;
overflow: hidden;
border: 1px solid var(--box-border);
background:
linear-gradient(145deg, rgba(8, 14, 26, 0.72), rgba(7, 11, 20, 0.5)),
radial-gradient(circle at 14% 18%, var(--box-highlight) 0%, rgba(7, 18, 26, 0) 52%);
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.025),
0 0 0 1px rgba(3, 8, 12, 0.3),
0 0 24px color-mix(in srgb, var(--box-highlight) 52%, transparent 48%);
transition: background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog)::before,
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog)::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 50%;
z-index: 0;
pointer-events: none;
opacity: 0;
transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
filter: drop-shadow(0 0 8px color-mix(in srgb, var(--box-highlight) 70%, transparent 30%));
will-change: transform, opacity;
}
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog)::before {
left: 0;
background:
  linear-gradient(to right, var(--box-corner-line) 1px, transparent 1px) 0 0 / var(--box-corner-size) var(--box-corner-size) no-repeat,
  linear-gradient(to bottom, var(--box-corner-line) 1px, transparent 1px) 0 0 / var(--box-corner-size) var(--box-corner-size) no-repeat,
  linear-gradient(to right, var(--box-corner-line) 1px, transparent 1px) 0 100% / var(--box-corner-size) var(--box-corner-size) no-repeat,
  linear-gradient(to top, var(--box-corner-line) 1px, transparent 1px) 0 100% / var(--box-corner-size) var(--box-corner-size) no-repeat;
transform: scaleX(0);
transform-origin: right center;
}
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog)::after {
right: 0;
background:
  linear-gradient(to left, var(--box-corner-line) 1px, transparent 1px) 100% 0 / var(--box-corner-size) var(--box-corner-size) no-repeat,
  linear-gradient(to bottom, var(--box-corner-line) 1px, transparent 1px) 100% 0 / var(--box-corner-size) var(--box-corner-size) no-repeat,
  linear-gradient(to left, var(--box-corner-line) 1px, transparent 1px) 100% 100% / var(--box-corner-size) var(--box-corner-size) no-repeat,
  linear-gradient(to top, var(--box-corner-line) 1px, transparent 1px) 100% 100% / var(--box-corner-size) var(--box-corner-size) no-repeat;
transform: scaleX(0);
transform-origin: left center;
}
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog):is(:hover, :focus-within)::before,
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog):is(:hover, :focus-within)::after {
opacity: 0;
opacity: 1;
transform: scaleX(1);
}
.aesthetic-box:hover {
border-color: color-mix(in srgb, var(--box-border) 70%, #dff4ff 30%);
background:
linear-gradient(145deg, rgba(10, 18, 32, 0.82), rgba(8, 14, 26, 0.6)),
radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--box-highlight) 135%, transparent) 0%, rgba(7, 18, 26, 0) 56%);
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.045),
inset 0 0 18px color-mix(in srgb, var(--box-highlight) 35%, transparent 65%),
0 0 32px color-mix(in srgb, var(--box-highlight) 80%, transparent 20%);
transform: translateY(-2px);
}
:is(.aesthetic-box, .cta-highlight, .team-card--code, .cookie-modal__dialog, .cookie-modal__section, .agent-modal__dialog) > * {
position: relative;
z-index: 1;
}
.section-title {
margin: 0 0 0.3rem;
text-transform: uppercase;
color: rgba(220, 234, 244, 0.95);
padding: 0;
border: 0;
text-align: left;
font-size: clamp(1.8rem, 5vw, 3.2rem) !important;
letter-spacing: 0.06em;
line-height: 1;
}
.section-sub {
margin: 0 0 2rem;
text-align: left;
color: rgba(161, 203, 221, 0.65);
font-size: 0.82rem;
letter-spacing: 0.04em;
}
.services-all {
text-align: right;
margin: 1.2rem 0 0;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.services-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--box-gap);
}
.service-card {
min-height: auto;
display: flex;
flex-direction: column;
}
.service-head {
display: grid;
grid-template-columns: 2.7rem minmax(0, 1fr);
column-gap: 0.9rem;
align-items: start;
}

.service-icon-sm {
display: block;
width: 1.8rem;
height: 1.8rem;
color: var(--team-primary, rgba(var(--accent-turquoise-rgb), 0.9));
margin-bottom: 0.75rem;
opacity: 0.88;
position: relative;
z-index: 1;
}

.service-icon-sm svg {
width: 100%;
height: 100%;
display: block;
}

.service-content {
display: flex;
flex-direction: column;
gap: 0.45rem;
min-width: 0;
}
.card-leader {
flex: 1;
min-width: 0;
overflow: hidden;
white-space: nowrap;
}
.card-leader::after {
content: "· · ·";
font-size: 0.6rem;
letter-spacing: 0.2em;
color: rgba(var(--accent-turquoise-rgb), 0.35);
}
.cta-highlight {
position: relative;
overflow: hidden;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.28);
background:
  linear-gradient(135deg, rgba(var(--accent-turquoise-rgb), 0.07) 0%, transparent 55%),
  rgba(var(--accent-turquoise-rgb), 0.04);
box-shadow:
  inset 0 0 48px rgba(var(--accent-turquoise-rgb), 0.06),
  0 0 28px rgba(var(--accent-turquoise-rgb), 0.12);
}
.cta-eyebrow {
margin: 0 0 0.45rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: rgba(185, 226, 248, 0.86);
font-size: 0.72rem;
}
.bottom-cta {
margin-top: 1.6rem;
margin-bottom: 2rem;
display: grid;
grid-template-columns: minmax(0, 1.75fr) minmax(180px, auto);
gap: 1.15rem 1.8rem;
align-items: center;
}
.cta-copy .h4 {
margin: 0 0 0.55rem;
}
.callback-cta {
display: flex;
justify-content: flex-end;
justify-self: end;
width: fit-content;
max-width: 100%;
}
.callback-cta > a {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
width: fit-content;
max-width: 100%;
}
.callback-form {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 0.65rem;
align-items: stretch;
}
.callback-input-wrap {
position: relative;
display: flex;
align-items: center;
min-height: 2.4rem;
padding: 0 0.82rem;
border: 0;
border-bottom: 1px solid rgba(var(--accent-turquoise-rgb), 0.5);
background: transparent;
overflow: hidden;
transition: border-color 180ms ease;
}
.callback-input {
width: 100%;
border: 0;
outline: 0;
padding: 0;
background: transparent;
color: rgba(225, 238, 246, 0.95);
font-family: inherit;
font-size: 0.78rem;
letter-spacing: 0.04em;
}
.callback-input::placeholder {
color: rgba(161, 203, 221, 0.68);
}
.callback-input-wrap:focus-within {
border-bottom-color: rgba(var(--accent-turquoise-rgb), 0.9);
}
.callback-submit {
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.5);
background: rgba(var(--accent-turquoise-rgb), 0.08);
color: rgba(var(--accent-turquoise-rgb), 0.95);
padding: 0.42rem 0.9rem;
font-family: inherit;
font-size: 0.76rem;
letter-spacing: 0.05em;
text-transform: uppercase;
cursor: pointer;
transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.callback-submit:hover {
background: rgba(var(--accent-turquoise-rgb), 0.16);
box-shadow: 0 0 8px rgba(var(--accent-turquoise-rgb), 0.24);
transform: translateY(-1px);
}
.callback-submit:focus-visible {
outline: 1px solid rgba(var(--accent-turquoise-rgb), 0.88);
outline-offset: 1px;
}

.callback-submit:disabled {
cursor: not-allowed;
opacity: 0.9;
transform: none;
}

.callback-submit.is-loading {
background: rgba(var(--accent-turquoise-rgb), 0.2);
box-shadow: 0 0 12px rgba(var(--accent-turquoise-rgb), 0.34);
animation: contact-submit-pulse 1.15s ease-in-out infinite;
}

.callback-submit.is-sent {
border-color: rgba(130, 236, 186, 0.8);
background: rgba(130, 236, 186, 0.2);
color: rgba(207, 255, 232, 0.98);
box-shadow: 0 0 12px rgba(130, 236, 186, 0.25);
}

@keyframes contact-submit-pulse {
0% {
  box-shadow: 0 0 0 rgba(var(--accent-turquoise-rgb), 0.18);
}
50% {
  box-shadow: 0 0 14px rgba(var(--accent-turquoise-rgb), 0.38);
}
100% {
  box-shadow: 0 0 0 rgba(var(--accent-turquoise-rgb), 0.18);
}
}

.callback-cta .callback-submit {
min-height: 2.8rem;
padding-inline: 1.15rem;
}
.cta-action {
margin-top: 0.85rem;
}
.cta-action a {
display: inline-block;
text-decoration: none;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.5);
padding: 0.42rem 0.85rem;
letter-spacing: 0.05em;
text-transform: uppercase;
font-size: 0.76rem;
background: rgba(var(--accent-turquoise-rgb), 0.06);
transition: background-color 180ms ease, box-shadow 180ms ease;
}
.cta-action a:hover {
background: rgba(var(--accent-turquoise-rgb), 0.15);
box-shadow: 0 0 0 1px rgba(var(--accent-turquoise-rgb), 0.5), 0 0 8px rgba(var(--accent-turquoise-rgb), 0.25);
}
footer {
background: none;
position: relative;
z-index: 1;
margin-top: auto;
}
.footer-inner {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 0.85rem;
padding-top: 2.8rem;
padding-bottom: 2.4rem;
}
.footer-logo {
font-size: 1.1rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(220, 234, 244, 0.6);
}

.site-nav .h3.m-0,
.site-nav .h3.m-0 a,
.footer-logo {
font-family: "Future Earth", "JetBrains Mono", monospace;
letter-spacing: 0.12em;
}
.site-nav .h3.m-0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 24px rgba(122, 193, 235, 0.35), 0 0 48px rgba(122, 193, 235, 0.15);
}
.site-nav .h3.m-0::before {
content: none;
}
.site-nav .h3.m-0 a {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.logo-icon {
height: 1.8rem;
width: auto;
display: block;
flex-shrink: 0;
opacity: 0.9;
}
.footer-logo::before {
content: "# ";
color: rgba(var(--accent-turquoise-rgb), 0.4);
font-weight: 400;
}
.footer-socials {
display: flex;
gap: 1.2rem;
align-items: center;
}
.footer-social-link {
display: flex;
align-items: center;
justify-content: center;
width: 1.6rem;
height: 1.6rem;
color: rgba(178, 230, 220, 0.55);
transition: color 160ms ease;
}
.footer-social-link svg {
width: 1.1rem;
height: 1.1rem;
}
.footer-social-link:hover {
color: rgb(var(--accent-pink-rgb));
}
.footer-copy {
font-size: 0.74rem;
letter-spacing: 0.03em;
color: rgba(210, 223, 234, 0.5);
}
.footer-tagline {
max-width: 48ch;
font-size: 0.78rem;
color: rgba(198, 210, 220, 0.44);
margin: 0;
}
.footer-tagline + p {
margin: 0.15rem 0 0;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.66rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.footer-tagline + p span {
color: rgba(178, 230, 220, 0.55);
}
.floating-tools {
position: fixed;
right: 1rem;
bottom: 1rem;
z-index: 30;
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.floating-icon {
width: 2.8rem;
height: 2.8rem;
border-radius: 0;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.6);
background: transparent;
color: rgba(var(--accent-turquoise-rgb), 0.7);
font-size: 1.15rem;
cursor: pointer;
box-shadow: none;
transition: color 180ms ease, border-color 180ms ease;
}
.floating-icon:hover,
.floating-icon[aria-expanded="true"] {
color: rgb(var(--accent-turquoise-rgb));
border-color: currentColor;
box-shadow: 0 0 8px rgba(var(--accent-turquoise-rgb), 0.2);
}
.agent-prompt {
position: absolute;
right: calc(100% + 0.75rem);
bottom: 1.37rem;
transform: translateY(50%) translateX(6px);
white-space: nowrap;
background: rgba(13, 20, 28, 0.95);
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.4);
color: rgba(220, 234, 244, 0.92);
font-size: 0.72rem;
letter-spacing: 0.05em;
padding: 0.38rem 0.7rem;
pointer-events: none;
opacity: 0;
transition: opacity 260ms ease, transform 260ms ease;
}
.agent-prompt--visible {
opacity: 1;
transform: translateY(50%) translateX(0);
}
.agent-prompt::after {
content: "";
position: absolute;
right: -5px;
top: 50%;
transform: translateY(-50%);
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid rgba(var(--accent-turquoise-rgb), 0.4);
}
.floating-panel {
position: fixed;
right: 4.4rem;
bottom: 1rem;
width: min(320px, calc(100vw - 6rem));
z-index: 29;
padding: 1rem;
border-radius: 0;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.78);
background:
    linear-gradient(120deg, rgba(122, 193, 235, 0.12), rgba(122, 193, 235, 0) 55%),
    rgba(13, 20, 28, 0.92);
box-shadow:
    inset 0 0 0 1px rgba(166, 219, 248, 0.2),
    0 12px 22px rgba(2, 7, 12, 0.5);
}
.floating-panel .h5 {
margin-top: 0;
margin-bottom: 0.5rem;
}
.floating-panel p + p {
margin-top: 0.45rem;
}
.modal-open {
overflow: hidden;
}
.cookie-modal {
position: fixed;
inset: 0;
z-index: 80;
display: grid;
place-items: center;
padding: 1.25rem;
}
.cookie-modal__backdrop {
position: absolute;
inset: 0;
background: rgba(3, 8, 12, 0.72);
backdrop-filter: blur(12px);
}
.cookie-modal__dialog {
position: relative;
z-index: 1;
width: min(720px, calc(100vw - 2rem));
padding: 1.5rem;
--box-highlight: rgba(var(--accent-turquoise-rgb), 0.18);
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.42);
background:
  linear-gradient(140deg, rgba(122, 193, 235, 0.12), rgba(122, 193, 235, 0) 42%),
  linear-gradient(180deg, rgba(6, 14, 20, 0.96), rgba(10, 18, 26, 0.94));
box-shadow:
  inset 0 0 0 1px rgba(166, 219, 248, 0.12),
  0 24px 70px rgba(0, 0, 0, 0.45),
  0 0 26px rgba(var(--accent-turquoise-rgb), 0.1);
}
.cookie-modal__close {
position: absolute;
top: 0.9rem;
right: 0.9rem;
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.4rem;
height: 2.4rem;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.22);
background: rgba(6, 14, 20, 0.7);
color: rgba(229, 239, 246, 0.84);
font-size: 1.35rem;
line-height: 1;
cursor: pointer;
transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}
.cookie-modal__close:hover {
border-color: rgba(var(--accent-turquoise-rgb), 0.52);
color: rgba(var(--accent-turquoise-rgb), 0.98);
background: rgba(8, 18, 26, 0.9);
}
.cookie-modal__title {
margin: 0.35rem 0 0.75rem;
padding-right: 3rem;
}
.cookie-modal__intro {
margin: 0;
color: rgba(227, 238, 246, 0.78);
}
.cookie-modal__sections {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: var(--box-gap);
margin-top: 1.4rem;
}
.cookie-modal__section {
position: relative;
padding: 1rem;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.16);
background: rgba(8, 18, 26, 0.6);
box-shadow: 0 0 18px rgba(var(--accent-turquoise-rgb), 0.06);
}
.cookie-modal__section-title {
margin: 0 0 0.45rem;
font-size: 0.82rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(var(--accent-turquoise-rgb), 0.92);
}
.cookie-modal__status {
margin: 1rem 0 0;
font-size: 0.76rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(161, 203, 221, 0.7);
}
.cookie-modal__actions {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 1rem;
}
.cookie-modal__button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.82rem 1.15rem;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.42);
background: rgba(var(--accent-turquoise-rgb), 0.14);
color: rgba(235, 244, 249, 0.96);
font: inherit;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}
.cookie-modal__button:hover {
transform: translateY(-1px);
border-color: rgba(var(--accent-turquoise-rgb), 0.68);
background: rgba(var(--accent-turquoise-rgb), 0.2);
}
.cookie-modal__button--ghost {
background: transparent;
color: rgba(229, 239, 246, 0.82);
}
.agent-modal {
position: fixed;
inset: 0;
z-index: 80;
display: grid;
place-items: center;
padding: 1.25rem;
}
.agent-modal__backdrop {
position: absolute;
inset: 0;
background: rgba(3, 8, 12, 0.72);
backdrop-filter: blur(12px);
}
.agent-modal__dialog {
position: relative;
z-index: 1;
width: min(560px, calc(100vw - 2rem));
padding: 1.5rem;
--box-highlight: rgba(var(--accent-turquoise-rgb), 0.18);
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.42);
background:
  linear-gradient(140deg, rgba(122, 193, 235, 0.12), rgba(122, 193, 235, 0) 42%),
  linear-gradient(180deg, rgba(6, 14, 20, 0.96), rgba(10, 18, 26, 0.94));
box-shadow:
  inset 0 0 0 1px rgba(166, 219, 248, 0.12),
  0 24px 70px rgba(0, 0, 0, 0.45),
  0 0 26px rgba(var(--accent-turquoise-rgb), 0.1);
}
.agent-modal__close {
position: absolute;
top: 0.9rem;
right: 0.9rem;
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.4rem;
height: 2.4rem;
border: 1px solid rgba(var(--accent-turquoise-rgb), 0.22);
background: rgba(6, 14, 20, 0.7);
color: rgba(229, 239, 246, 0.84);
font-size: 1.35rem;
line-height: 1;
cursor: pointer;
transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}
.agent-modal__close:hover {
border-color: rgba(var(--accent-turquoise-rgb), 0.52);
color: rgba(var(--accent-turquoise-rgb), 0.98);
background: rgba(8, 18, 26, 0.9);
}
.agent-modal__title {
margin: 0.35rem 0 0.75rem;
padding-right: 3rem;
}
.agent-modal__intro {
margin: 0;
color: rgba(227, 238, 246, 0.78);
}
.agent-modal__actions {
display: flex;
margin-top: 1.25rem;
}
.floating-icon--attention {
border-color: rgba(var(--accent-turquoise-rgb), 0.8);
box-shadow: 0 0 0 1px rgba(var(--accent-turquoise-rgb), 0.22), 0 0 20px rgba(var(--accent-turquoise-rgb), 0.18);
}
.p-4 {
padding: 2.8em !important;
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
margin-top: calc(-1 * var(--bs-gutter-y));
margin-right: calc(-0.5 * var(--bs-gutter-x));
margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.g-4 {
--bs-gutter-x: 1.3rem;
--bs-gutter-y: 1.3rem;
}
.h3 {
font-size: 2rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.h3::before {
content: "# ";
color: rgba(120, 190, 230, 0.45);
font-weight: 400;
}
.h4 {
font-size: 1.15rem;
letter-spacing: 0.03em;
font-weight: 600;
text-transform: uppercase;
}
.lower-section.row {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: var(--box-gap);
margin-right: 0;
margin-left: 0;
margin-top: 0;
}
.lower-section.row > * {
min-width: 0;
padding-right: 0;
padding-left: 0;
margin-top: 0;
width: auto;
max-width: none;
flex: initial;
}
.lower-section .aesthetic-box {
height: 100%;
}
@media (max-width: 767.98px) {
  .lower-section {
    grid-template-columns: 1fr;
  }
}
.floating-icon-svg {
width: 1.2rem;
height: 1.2rem;
display: block;
margin: 0 auto;
}
.h4::before {
content: "## ";
color: rgba(120, 190, 230, 0.38);
font-weight: 400;
}
.section-title::before {
content: "";
}
.h5 {
font-size: 0.98rem;
letter-spacing: 0.025em;
font-weight: 600;
text-transform: uppercase;
}
.h5::before {
content: "// ";
color: rgba(120, 190, 230, 0.38);
font-weight: 400;
}

/* About Page Styles */
.about-page-layout > section + section,
.about-page-layout > section + blockquote,
.about-page-layout > blockquote + section {
  margin-top: 3rem;
}

.about-intro-section {
  padding: 4rem 0 3rem;
}

.team-section {
  padding: 4rem 0 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--box-gap);
}

.team-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--team-border, var(--box-border));
}

.team-palette-sky {
  --team-primary: #7ac1eb;
  --team-secondary: #a5d8f3;
  --team-glow: rgba(122, 193, 235, 0.18);
  --team-border: rgba(122, 193, 235, 0.4);
  --team-dim: rgba(122, 193, 235, 0.65);
}

.team-palette-violet {
  --team-primary: #a78bfa;
  --team-secondary: #c084fc;
  --team-glow: rgba(167, 139, 250, 0.18);
  --team-border: rgba(167, 139, 250, 0.4);
  --team-dim: rgba(167, 139, 250, 0.65);
}

.team-palette-cyan {
  --team-primary: #06b6d4;
  --team-secondary: #22d3ee;
  --team-glow: rgba(6, 182, 212, 0.18);
  --team-border: rgba(6, 182, 212, 0.4);
  --team-dim: rgba(6, 182, 212, 0.65);
}

.team-palette-cyan-blue {
  --team-primary: #06b6d4;
  --team-secondary: #3b82f6;
  --team-glow: rgba(6, 182, 212, 0.18);
  --team-border: rgba(6, 182, 212, 0.4);
  --team-dim: rgba(6, 182, 212, 0.65);
}

.team-palette-silver {
  --team-primary: #e5e7eb;
  --team-secondary: #cbd5e1;
  --team-glow: rgba(226, 232, 240, 0.18);
  --team-border: rgba(226, 232, 240, 0.4);
  --team-dim: rgba(226, 232, 240, 0.65);
}

.team-palette-green {
  --team-primary: #10b981;
  --team-secondary: #34d399;
  --team-glow: rgba(16, 185, 129, 0.18);
  --team-border: rgba(16, 185, 129, 0.4);
  --team-dim: rgba(16, 185, 129, 0.65);
}

.team-palette-green-slate {
  --team-primary: #10b981;
  --team-secondary: #cbd5e1;
  --team-glow: rgba(16, 185, 129, 0.18);
  --team-border: rgba(16, 185, 129, 0.4);
  --team-dim: rgba(16, 185, 129, 0.65);
}

.team-palette-pink {
  --team-primary: #f472b6;
  --team-secondary: #fb7185;
  --team-glow: rgba(244, 114, 182, 0.18);
  --team-border: rgba(244, 114, 182, 0.4);
  --team-dim: rgba(244, 114, 182, 0.65);
}

.team-palette-teal {
  --team-primary: #14b8a6;
  --team-secondary: #2dd4bf;
  --team-glow: rgba(20, 184, 166, 0.18);
  --team-border: rgba(20, 184, 166, 0.4);
  --team-dim: rgba(20, 184, 166, 0.65);
}

.team-card--code {
  position: relative;
  gap: 0.55rem;
  padding: 1.5rem !important;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 22px),
    linear-gradient(145deg, rgba(8, 14, 26, 0.66), rgba(7, 11, 20, 0.42)),
    radial-gradient(circle at 15% 15%, var(--team-glow, rgba(120, 190, 230, 0.16)), transparent 48%);
  --box-border: var(--team-border, rgba(120, 190, 230, 0.35));
  --box-highlight: var(--team-glow, rgba(120, 190, 230, 0.16));
  --box-corner-line: color-mix(in srgb, var(--team-primary, #78bee6) 72%, transparent 28%);
  border-color: var(--team-border, rgba(120, 190, 230, 0.35));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px color-mix(in srgb, var(--team-glow, rgba(120, 190, 230, 0.16)) 78%, transparent 22%);
  overflow: hidden;
  transition: background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.team-card--code:hover {
  background:
    linear-gradient(145deg, rgba(10, 18, 32, 0.76), rgba(8, 14, 26, 0.54)),
    radial-gradient(circle at 15% 15%, var(--team-glow, rgba(120, 190, 230, 0.16)), transparent 52%);
  border-color: color-mix(in srgb, var(--team-border, rgba(120, 190, 230, 0.35)) 82%, #d9ecff 18%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 18px color-mix(in srgb, var(--team-glow, rgba(120, 190, 230, 0.16)) 45%, transparent 55%),
    0 0 32px color-mix(in srgb, var(--team-glow, rgba(120, 190, 230, 0.16)) 90%, transparent 10%);
  transform: translateY(-2px);
}

.team-name {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 0.7rem;
  color: rgba(229, 244, 255, 0.95);
}

.team-name::before {
  content: "// ";
  color: var(--team-dim, rgba(120, 190, 230, 0.65));
  font-weight: 400;
}

.team-name .card-leader::after {
  color: color-mix(in srgb, var(--team-primary, #78bee6) 65%, #9fb8cb 35%);
}

.team-num {
  flex-shrink: 0;
  position: relative;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--team-primary, #78bee6) 76%, #e7f2ff 24%);
  text-shadow: 0 0 8px color-mix(in srgb, var(--team-primary, #78bee6) 55%, transparent 45%);
  animation: team-num-glitch 2.8s steps(1, end) infinite;
}

.team-num::after {
  content: attr(data-idx);
  position: absolute;
  inset: 0;
  color: color-mix(in srgb, var(--team-secondary, #d6d95b) 80%, #ffffff 20%);
  opacity: 0.48;
  clip-path: inset(58% 0 12% 0);
  transform: translate(-0.04em, 0.03em);
  animation: team-num-scan 2.8s steps(1, end) infinite;
  pointer-events: none;
}

@keyframes team-num-glitch {
  0%, 78%, 100% {
    transform: translate(0, 0);
    opacity: 1;
  }
  80% {
    transform: translate(0.05em, -0.03em);
    opacity: 0.88;
  }
  82% {
    transform: translate(-0.06em, 0.03em);
    opacity: 1;
  }
  84% {
    transform: translate(0.03em, -0.01em);
    opacity: 0.92;
  }
}

@keyframes team-num-scan {
  0%, 76%, 100% {
    opacity: 0;
  }
  79%, 83% {
    opacity: 0.58;
  }
  81% {
    opacity: 0.22;
  }
}

.team-line {
  margin: 0;
  font-family: "IBM Plex Mono", "Cascadia Code", "Fira Code", monospace;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(229, 244, 255, 0.9);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  word-break: break-word;
}

.team-key {
  color: var(--team-dim, rgba(120, 190, 230, 0.65));
}

.team-value {
  color: rgba(229, 244, 255, 0.95);
}

.team-role {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--accent-turquoise-rgb), 0.7);
  margin: 0 0 0.8rem;
  font-weight: 600;
}

/* Fundamentals Section */
.fundamentals-section {
  padding: 4rem 0 3rem;
}

.fundamentals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--box-gap);
}

.fundamental-card {
  min-height: auto;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--box-gap);
  align-items: start;
}

.phase-card {
  min-height: auto;
}

.phase-card .code-card-desc {
  margin-bottom: 0;
}

.code-card-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(198, 214, 226, 0.72);
  margin-top: 0.25rem;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.vision-mission-section {
  padding: 4rem 0 3rem;
}

.values-section {
  padding: 4rem 0 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--box-gap);
}

.value-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--box-border);
  padding: 2.8rem !important;
}

.cta-section {
  padding: 3rem 0;
}

/* Contact Page */
.contact-main-section {
  padding: 3rem 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: max(1.3rem, var(--box-gap));
}

.contact-form-card,
.contact-info-card {
  min-height: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
  margin-top: 1.5rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-field span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--accent-turquoise-rgb), 0.76);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(var(--accent-turquoise-rgb), 0.24);
  background: rgba(6, 14, 20, 0.58);
  color: rgba(229, 239, 246, 0.94);
  font: inherit;
  padding: 0.9rem 0.95rem;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(var(--accent-turquoise-rgb), 0.72);
  box-shadow: 0 0 0 1px rgba(var(--accent-turquoise-rgb), 0.28);
  background: rgba(8, 18, 26, 0.68);
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-form-actions {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.contact-form-status {
  margin: 0;
  min-height: 1.15rem;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(2px);
  color: rgba(var(--accent-turquoise-rgb), 0.82);
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease, color 200ms ease;
}

.contact-form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.contact-form-status.is-pending {
  color: rgba(var(--accent-turquoise-rgb), 0.9);
}

.contact-form-status.is-success {
  color: rgba(130, 236, 186, 0.98);
}

.contact-form-status.is-error {
  color: rgba(255, 139, 173, 0.96);
}

.contact-side-grid {
  display: grid;
  gap: 1.3rem;
}

.contact-info-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.contact-info-intro {
  margin: 0;
  color: rgba(227, 238, 246, 0.76);
}

.contact-info-list {
  display: grid;
  gap: 0.75rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(var(--accent-turquoise-rgb), 0.14);
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(var(--accent-turquoise-rgb), 0.22);
  border-radius: 999px;
  color: rgba(var(--accent-turquoise-rgb), 0.92);
  background: rgba(6, 14, 20, 0.62);
  box-shadow: inset 0 0 18px rgba(var(--accent-pink-rgb), 0.06);
}

.contact-info-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-info-body {
  display: grid;
  gap: 0.16rem;
}

.contact-info-link {
  color: inherit;
  text-decoration: none;
}

.contact-info-link:hover {
  color: rgba(var(--accent-turquoise-rgb), 0.96);
}

.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(161, 203, 221, 0.62);
}

.contact-info-value {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(229, 239, 246, 0.92);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(var(--accent-turquoise-rgb), 0.2);
  border-radius: 999px;
  color: rgba(229, 239, 246, 0.82);
  text-decoration: none;
  background: rgba(6, 14, 20, 0.44);
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-social-link svg {
  width: 1rem;
  height: 1rem;
}

.contact-social-link:hover {
  color: rgba(var(--accent-turquoise-rgb), 0.98);
  border-color: rgba(var(--accent-turquoise-rgb), 0.44);
  background: rgba(8, 18, 26, 0.72);
  transform: translateY(-1px);
}

/* Service Detail Page */
.service-page-hero {
  padding: 5rem 0 3rem;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 1.3rem;
  align-items: end;
}

.service-hero-copy {
  padding-right: 1rem;
}

.service-side-card {
  border: 1px solid rgba(var(--accent-turquoise-rgb), 0.22);
  background: rgba(var(--accent-turquoise-rgb), 0.04);
}

.service-side-label {
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--accent-turquoise-rgb), 0.78);
}

.service-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.service-meta-list li {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(var(--accent-turquoise-rgb), 0.14);
}

.service-meta-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-meta-list span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(161, 203, 221, 0.62);
}

.service-meta-list strong {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(227, 238, 246, 0.92);
}

.service-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--silver-core);
  border-top: 1px solid var(--silver-core);
  margin-top: 2.8rem;
}

.service-stat {
  border-right: 1px solid var(--silver-core);
  border-bottom: 1px solid var(--silver-core);
}

.service-stat .h4 {
  margin: 0 0 0.5rem;
}

.service-story-section,
.service-deliverables-section,
.service-engagement-section,
.service-fit-section {
  padding: 3rem 0;
}

.service-split-grid,
.service-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.service-copy-block {
  min-height: 100%;
}

.service-copy-block .h4 {
  margin: 0 0 0.8rem;
}

.service-copy-block p + p {
  margin-top: 1rem;
}

.service-point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.service-point-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(198, 210, 220, 0.8);
}

.service-point-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(var(--accent-turquoise-rgb), 0.78);
}

.service-point-list-compact a {
  text-decoration: none;
}

.service-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--silver-core);
  border-top: 1px solid var(--silver-core);
}

.deliverable-card {
  border-right: 1px solid var(--silver-core);
  border-bottom: 1px solid var(--silver-core);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.deliverable-card .h5 {
  margin: 0 0 0.7rem;
}

.engagement-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--silver-core);
  border-top: 1px solid var(--silver-core);
}

.engagement-step {
  padding: 2rem 1.6rem 1.8rem;
  border-right: 1px solid var(--silver-core);
  border-bottom: 1px solid var(--silver-core);
  background: rgba(7, 18, 26, 0.18);
}

.engagement-step-num {
  margin: 0 0 0.9rem;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(var(--accent-turquoise-rgb), 0.42);
}

.engagement-step .h5 {
  margin: 0 0 0.75rem;
}

.engagement-step p {
  font-size: 0.76rem;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  width: 1.5rem;
  height: 2px;
  background-color: rgba(var(--accent-turquoise-rgb), 0.9);
  transition: transform 280ms ease, opacity 280ms ease;
  display: block;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.8rem);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.3rem, -0.6rem);
}

.site-nav {
  position: relative;
}

.nav-links.mobile-open {
  display: flex !important;
}

@media (max-width: 767.98px) {
.hamburger-menu {
    display: flex;
}

.nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 12, 17, 0.95);
    border-bottom: 1px solid var(--silver-core);
    padding: 1rem 1.2rem;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 19;
    backdrop-filter: blur(10px);
}

  .nav-links > li {
    width: 100%;
  }

.nav-links li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(var(--accent-turquoise-rgb), 0.2);
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links a {
    display: block;
    font-size: 0.85rem;
}

.nav-parent-link {
  justify-content: space-between;
}

.mega-menu {
  position: static;
  transform: none;
  width: 100%;
  margin-top: 0.75rem;
  grid-template-columns: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: none;
  border-color: rgba(var(--accent-turquoise-rgb), 0.18);
  box-shadow: inset 0 0 0 1px rgba(166, 219, 248, 0.05);
}

.mega-menu::before {
  content: none;
}

.nav-item-with-panel.is-open .mega-menu {
  display: grid;
}

.mega-menu-column,
.mega-menu-highlight {
  padding: 1rem 0;
}

.mega-menu-column {
  border-right: 0;
  border-bottom: 1px solid rgba(var(--accent-turquoise-rgb), 0.12);
}

.mega-menu-highlight {
  padding-bottom: 0.2rem;
}

.mega-menu-preview-title {
  font-size: 1rem;
}

.mega-menu-preview {
  gap: 0.85rem;
  padding-top: 1rem;
  padding-bottom: 0.2rem;
}

.mega-menu-preview-top {
  grid-template-columns: 1fr;
  row-gap: 0.65rem;
}

.mega-menu-preview-copy {
  margin-top: 0;
  padding-top: 0;
}

.mega-menu-preview-header {
  gap: 0.4rem;
  padding-top: 0;
}
}

@media (min-width: 768px) {
.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.team-card--code {
  min-height: auto;
}
.values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fundamentals-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.methodology-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1200px) {
.fundamentals-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
@media (max-width: 767.98px) {
.container {
  width: 100%;
  padding-inline: 1rem;
}
.site-nav {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.site-nav .h3.m-0,
.site-nav .h3.m-0 a {
  gap: 0.35rem;
  font-size: 1.02rem;
  letter-spacing: 0.09em;
}
.logo-icon {
  height: 1.45rem;
}
.welcome-block {
  grid-template-columns: 1fr;
  gap: 0;
}
.main-layout {
  gap: 1rem;
}
.above-fold {
  padding-top: 3.4rem;
  padding-bottom: 0;
  margin-bottom: 1.25rem;
}
.intro-eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}
.intro-heading {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 11vw, 3.35rem);
  line-height: 1.02;
}
.intro-sub {
  font-size: 0.8rem;
  line-height: 1.65;
}
.welcome-empty {
  display: none;
}
.intro-service-cloud {
  max-width: none;
  gap: 0.4rem;
}
.intro-service-cloud a {
  padding: 0.35rem 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}
.contact-main-grid {
  grid-template-columns: 1fr;
}
.contact-main-section {
  padding: 1.7rem 0;
}
.contact-form-grid {
  grid-template-columns: 1fr;
}
.contact-form-actions {
  align-items: flex-start;
}
.contact-form-status {
  flex-basis: 100%;
}
.service-page-hero {
  padding-top: 3.2rem;
  padding-bottom: 2rem;
}
.service-hero-grid,
.service-stat-grid,
.service-split-grid,
.service-fit-grid,
.service-deliverables-grid,
.engagement-rail {
  grid-template-columns: 1fr;
}
.service-hero-copy {
  padding-right: 0;
}
.service-stat-grid {
  margin-top: 1.6rem;
}
.service-story-section,
.service-deliverables-section,
.service-engagement-section,
.service-fit-section {
  padding: 1.7rem 0;
}
.deliverable-card,
.engagement-step {
  min-height: auto;
}
.services-section {
    margin-top: 1.35rem;
    margin-bottom: 1.35rem;
}
.pull-quote {
  padding: 2rem 0 1.4rem;
}
.pull-quote p {
  font-size: 1rem;
  line-height: 1.55;
}
.pull-quote cite {
  font-size: 0.68rem;
}
.lower-section {
  margin-top: 1.4rem;
}
.aesthetic-box,
.team-card--code,
.cta-highlight,
.cookie-modal__dialog,
.cookie-modal__section,
.agent-modal__dialog {
  --box-corner-size: 11px;
}
.bottom-cta {
    margin-top: 1.1rem;
    margin-bottom: 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.95rem;
}
.cta-copy .h4 {
  font-size: 1.05rem;
  line-height: 1.35;
}
.callback-cta {
    justify-self: stretch;
    width: 100%;
}
.callback-cta > a {
  width: 100%;
}
.callback-submit {
  min-height: 2.9rem;
}
.callback-form {
    grid-template-columns: 1fr;
}
.floating-tools {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.5rem;
}
.floating-icon {
    width: 2.55rem;
    height: 2.55rem;
}
.floating-panel {
    right: 0.75rem;
    bottom: 4rem;
    width: min(320px, calc(100vw - 1.5rem));
}
.cookie-modal {
  padding: 0.75rem;
}
.cookie-modal__dialog {
  width: min(720px, calc(100vw - 1.5rem));
  padding: 1.15rem;
}
.cookie-modal__sections {
  grid-template-columns: 1fr;
}
.cookie-modal__actions {
  flex-direction: column;
}
.cookie-modal__button {
  width: 100%;
}
.agent-modal {
  padding: 0.75rem;
}
.agent-modal__dialog {
  width: min(560px, calc(100vw - 1.5rem));
  padding: 1.15rem;
}
.agent-modal__actions {
  flex-direction: column;
}
.footer-inner {
  gap: 0.7rem;
  padding-top: 1.9rem;
  padding-bottom: 1.8rem;
}
.footer-socials {
  gap: 0.9rem;
}
.footer-copy,
.footer-tagline,
.footer-links {
  font-size: 0.72rem;
}
}


