:root {
  --color-primary: #1e2a50;
  --color-accent: #5e17eb;
  --color-bg: #ffffff;
  --color-soft: #f7f8fc;
  --color-border: #e6e8f2;
  --color-muted: #303866;
  --color-ink: #1e2a50;
  --color-mist: #f1f5ff;
  --color-warm: #f8f6ff;
  --color-blush: #f4f1ff;
  --gradient-ia: linear-gradient(135deg, #540ce4 0%, #00b0ff 100%);
  --gradient-soft-blue: linear-gradient(135deg, #ffffff 0%, #f7f8fc 48%, #eef4ff 100%);
  --shadow-soft: 0 16px 38px rgba(33, 42, 89, 0.07);
  --radius: 8px;
  --container: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-structure: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-primary);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-accent);
}

p {
  margin: 0 0 1rem;
  color: var(--color-primary);
}

strong {
  color: var(--color-primary);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(33, 42, 89, 0.18);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-primary);
}

.brand-name-light .brand-core {
  color: #fff;
}

.brand-core {
  color: currentColor;
}

.brand-ia {
  color: #00b0ff;
  background: var(--gradient-ia);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header .brand-ia {
  color: #0077dd;
  background: linear-gradient(135deg, #0077dd 0%, #00b0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  position: fixed;
  inset: 68px 0 auto 0;
  display: grid;
  gap: 0;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-120%);
  transition: transform 0.24s ease;
  font-family: var(--font-structure);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.95rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  white-space: nowrap;
}

.nav-dropdown-toggle {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

.main-nav a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu {
  display: none;
  padding: 0.35rem 0 0.55rem;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding-left: 1.6rem;
  font-size: 0.74rem;
  pointer-events: auto;
}

.nav-open .main-nav {
  transform: translateY(0);
}

.main-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--color-accent);
}

.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--color-accent);
}

.nav-toggle {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-primary);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 3.25rem 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-tight {
  padding: 2.6rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at 90% 18%, rgba(94, 23, 235, 0.08), transparent 34%),
    var(--color-soft);
}

.section-mist {
  background:
    radial-gradient(circle at 12% 84%, rgba(94, 23, 235, 0.07), transparent 34%),
    linear-gradient(135deg, #f7f8fc 0%, #ffffff 52%, #eef4ff 100%);
}

main > .section:not(.conversion-band):not(.section-soft):not(.section-mist):not(.section-warm):not(.positioning-section):not(.location-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 88% 14%, rgba(94, 23, 235, 0.055), transparent 34%);
  pointer-events: none;
}

.positioning-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(94, 23, 235, 0.1), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(0, 176, 255, 0.08), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #fbfaff 48%, #eef4ff 100%);
}

.section-warm {
  background: linear-gradient(135deg, #ffffff 0%, #fbfaff 52%, #f1f5ff 100%);
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--font-structure);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-primary);
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1,
.display-title {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 400;
}

h2 {
  max-width: 820px;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 400;
}

h3 {
  font-family: var(--font-structure);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
}

.title-with-icon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.title-pictogram {
  display: block;
  flex: none;
  object-fit: contain;
}

.section-title-with-icon {
  column-gap: 0.7rem;
}

.section-title-pictogram {
  width: 30px;
  height: 30px;
  margin-top: 0.08em;
}

.card-title-with-icon {
  column-gap: 0.65rem;
}

.card-title-pictogram {
  width: 21px;
  height: 21px;
  margin-top: 0.02em;
}

:where(h1, h2) + :where(p, .section-intro) {
  margin-top: 1.2rem;
}

.section-intro {
  max-width: 780px;
  margin-top: 1.2rem;
  font-size: 1rem;
  color: var(--color-primary);
}

.section .container > .eyebrow + h2 {
  margin-top: 0.25rem;
}

.section .container > h2 + h3,
.section .container > p + h3,
.section .container > ul + h3,
.section .container > ol + h3 {
  margin-top: 1.75rem;
}

.section .container > h3 + p,
.section .container > h2 + p,
.section .container > h2 + ul,
.section .container > h2 + ol,
.section .container > p + ul,
.section .container > p + ol {
  margin-top: 1rem;
}

.section .container > ul,
.section .container > ol {
  margin-bottom: 1.15rem;
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 22%, rgba(84, 12, 228, 0.14), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(0, 176, 255, 0.12), transparent 38%),
    linear-gradient(135deg, #11183d 0%, #1e2a50 58%, #27347c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 18, 48, 0.9), rgba(22, 30, 72, 0.72), rgba(33, 42, 89, 0.38)),
    linear-gradient(0deg, rgba(15, 20, 47, 0.55), rgba(15, 20, 47, 0.1));
}

.hero-inner {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  padding: 2.45rem 0;
}

.hero-content {
  max-width: 870px;
}

.home-hero .hero-content {
  max-width: 820px;
}

.home-hero h1 {
  max-width: 820px;
  font-size: 1.95rem;
  line-height: 1.1;
}

.hero-cube-hero .hero-inner {
  position: relative;
  z-index: 1;
}

.hero-cube-hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero-tech-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  overflow: hidden;
  pointer-events: none;
}

.hero-tech-backdrop::before,
.hero-tech-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-tech-backdrop::before {
  background:
    radial-gradient(ellipse at 82% 68%, rgba(0, 176, 255, 0.12), transparent 27%),
    radial-gradient(ellipse at 70% 54%, rgba(84, 12, 228, 0.11), transparent 38%);
}

.hero-tech-backdrop::after {
  z-index: 4;
  background: linear-gradient(90deg, rgba(17, 24, 61, 0.5) 0%, rgba(17, 24, 61, 0.3) 25%, rgba(17, 24, 61, 0.11) 44%, rgba(17, 24, 61, 0.035) 58%, transparent 70%);
}

.hero-tech-plane {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 18%, rgba(0, 0, 0, 0.48) 31%, rgba(0, 0, 0, 0.68) 51%, rgba(0, 0, 0, 0.88) 72%, #000 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 18%, rgba(0, 0, 0, 0.48) 31%, rgba(0, 0, 0, 0.68) 51%, rgba(0, 0, 0, 0.88) 72%, #000 100%);
}

.hero-tech-plane-far {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 16, 80, 0.72), rgba(50, 16, 135, 0.5)) 27% 24% / 9px 4px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.7), rgba(84, 12, 228, 0.42)) 30% 69% / 22px 5px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.82), rgba(36, 72, 199, 0.42)) 33% 43% / 7px 7px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.76), rgba(94, 23, 235, 0.46)) 35% 47% / 14px 4px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.76), rgba(0, 119, 221, 0.44)) 38% 82% / 31px 4px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.86), rgba(84, 12, 228, 0.5)) 41% 17% / 12px 5px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.82), rgba(36, 72, 199, 0.5)) 43% 63% / 38px 5px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.82), rgba(94, 23, 235, 0.48)) 46% 33% / 8px 8px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.9), rgba(50, 16, 135, 0.58)) 48% 36% / 17px 5px no-repeat,
    linear-gradient(90deg, rgba(36, 72, 199, 0.58), rgba(84, 12, 228, 0.44)) 51% 75% / 28px 4px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.86), rgba(0, 119, 221, 0.52)) 54% 52% / 42px 5px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.9), rgba(94, 23, 235, 0.58)) 57% 21% / 13px 6px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.88), rgba(36, 72, 199, 0.6)) 60% 68% / 34px 5px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.88), rgba(0, 119, 221, 0.58)) 63% 42% / 10px 9px no-repeat,
    linear-gradient(90deg, rgba(36, 72, 199, 0.64), rgba(84, 12, 228, 0.54)) 66% 85% / 45px 5px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.9), rgba(0, 176, 255, 0.58)) 69% 14% / 18px 6px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.92), rgba(94, 23, 235, 0.62)) 73% 58% / 37px 6px no-repeat,
    linear-gradient(90deg, rgba(0, 119, 221, 0.7), rgba(84, 12, 228, 0.58)) 78% 79% / 24px 5px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.94), rgba(0, 176, 255, 0.64)) 84% 30% / 43px 7px no-repeat,
    linear-gradient(90deg, rgba(94, 23, 235, 0.72), rgba(67, 217, 255, 0.5)) 91% 70% / 29px 6px no-repeat;
  filter: blur(0.65px);
  opacity: 0.4;
}

.hero-tech-plane-mid {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(36, 16, 111, 0.46), rgba(94, 23, 235, 0.24)) 29% 73% / 19px 1px no-repeat,
    linear-gradient(0deg, rgba(36, 16, 111, 0.1), rgba(50, 16, 135, 0.46)) 31% 69% / 1px 17px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.72), rgba(36, 72, 199, 0.48)) 34% 39% / 11px 5px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.72), rgba(84, 12, 228, 0.42)) 36% 42% / 23px 1px no-repeat,
    linear-gradient(0deg, rgba(36, 16, 111, 0.12), rgba(94, 23, 235, 0.42)) 38% 37% / 1px 14px no-repeat,
    linear-gradient(90deg, rgba(36, 72, 199, 0.52), rgba(50, 16, 135, 0.36)) 41% 83% / 31px 1px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.8), rgba(84, 12, 228, 0.56)) 44% 61% / 9px 7px no-repeat,
    linear-gradient(90deg, rgba(50, 16, 135, 0.78), rgba(0, 119, 221, 0.48)) 46% 64% / 26px 1px no-repeat,
    linear-gradient(0deg, rgba(36, 16, 111, 0.14), rgba(0, 119, 221, 0.48)) 49% 59% / 1px 22px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.84), rgba(94, 23, 235, 0.6)) 52% 27% / 14px 6px no-repeat,
    linear-gradient(90deg, rgba(36, 72, 199, 0.58), rgba(84, 12, 228, 0.42)) 55% 30% / 35px 1px no-repeat,
    linear-gradient(0deg, rgba(50, 16, 135, 0.16), rgba(94, 23, 235, 0.54)) 58% 54% / 1px 19px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.86), rgba(0, 119, 221, 0.62)) 61% 71% / 12px 8px no-repeat,
    linear-gradient(90deg, rgba(94, 23, 235, 0.64), rgba(0, 176, 255, 0.32)) 64% 74% / 39px 1px no-repeat,
    linear-gradient(0deg, rgba(84, 12, 228, 0.16), rgba(94, 23, 235, 0.58)) 68% 64% / 1px 27px no-repeat,
    linear-gradient(90deg, rgba(36, 16, 111, 0.88), rgba(0, 176, 255, 0.68)) 72% 35% / 18px 9px no-repeat,
    linear-gradient(90deg, rgba(0, 119, 221, 0.68), rgba(67, 217, 255, 0.24)) 76% 58% / 43px 1px no-repeat,
    linear-gradient(0deg, rgba(0, 119, 221, 0.16), rgba(0, 176, 255, 0.6)) 81% 51% / 1px 31px no-repeat,
    linear-gradient(90deg, rgba(21, 16, 80, 0.92), rgba(84, 12, 228, 0.74)) 87% 20% / 29px 10px no-repeat,
    linear-gradient(90deg, rgba(94, 23, 235, 0.7), rgba(0, 176, 255, 0.28)) 93% 78% / 47px 1px no-repeat;
  filter: drop-shadow(0 0 2px rgba(0, 119, 221, 0.18));
  opacity: 0.48;
}

.hero-tech-plane-near {
  z-index: 3;
  background:
    linear-gradient(90deg, #24106f, rgba(84, 12, 228, 0.76)) 61% 83% / 24px 9px no-repeat,
    linear-gradient(90deg, rgba(0, 176, 255, 0.68), rgba(67, 217, 255, 0.12)) 66% 69% / 96px 1px no-repeat,
    linear-gradient(0deg, rgba(0, 176, 255, 0.12), rgba(67, 217, 255, 0.62)) 70% 61% / 1px 52px no-repeat,
    linear-gradient(90deg, #151050, rgba(94, 23, 235, 0.82)) 76% 87% / 38px 12px no-repeat,
    linear-gradient(90deg, rgba(94, 23, 235, 0.7), rgba(0, 176, 255, 0.12)) 82% 73% / 115px 1px no-repeat,
    linear-gradient(0deg, rgba(84, 12, 228, 0.1), rgba(94, 23, 235, 0.62)) 88% 66% / 1px 46px no-repeat,
    linear-gradient(90deg, #321087, rgba(0, 176, 255, 0.8)) 93% 88% / 31px 11px no-repeat,
    radial-gradient(circle at 65% 69%, rgba(67, 217, 255, 0.82) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 82% 73%, rgba(142, 75, 255, 0.86) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 94% 55%, rgba(238, 246, 255, 0.76) 0 1px, transparent 2px);
  filter: drop-shadow(0 0 5px rgba(0, 176, 255, 0.24));
  opacity: 0.56;
}

.hero-cube-stage {
  --cube-size: clamp(200px, 14.75vw, 236px);
  --cube-zone: clamp(390px, 28vw, 420px);
  --cube-half: calc(var(--cube-size) / 2);
  --cube-tilt-x: 0deg;
  --cube-tilt-y: 0deg;
  position: absolute;
  top: 50%;
  right: -48px;
  z-index: 1;
  display: none;
  width: var(--cube-zone);
  height: var(--cube-zone);
  place-items: center;
  overflow: visible;
  pointer-events: none;
  perspective: 1200px;
  transform: translateY(-50%);
}

.hero-cube-stage::before,
.hero-cube-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero-cube-stage::before {
  bottom: 0;
  width: 108%;
  height: 52%;
  background:
    url("../assets/images/brand/circuit-landscape.svg") center / contain no-repeat,
    radial-gradient(ellipse, rgba(0, 176, 255, 0.22), rgba(84, 12, 228, 0.14) 42%, transparent 72%);
  filter:
    drop-shadow(0 0 7px rgba(0, 176, 255, 0.42))
    drop-shadow(0 0 15px rgba(84, 12, 228, 0.26));
  opacity: 0.9;
  transform: translateX(-50%) perspective(540px) rotateX(63deg);
  transform-origin: center bottom;
  -webkit-mask-image: radial-gradient(ellipse, #000 0 34%, rgba(0, 0, 0, 0.74) 54%, transparent 78%);
  mask-image: radial-gradient(ellipse, #000 0 34%, rgba(0, 0, 0, 0.74) 54%, transparent 78%);
}

.hero-cube-stage::after {
  bottom: 12%;
  width: 72%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.3) 0%, rgba(0, 176, 255, 0.52) 18%, rgba(84, 12, 228, 0.46) 46%, transparent 76%);
  filter: blur(18px);
  opacity: 0.9;
  transform: translateX(-50%);
}

.hero-cube-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-cube-effects::before,
.hero-cube-effects::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-cube-effects::before {
  inset: 28% 2% 5%;
  background:
    linear-gradient(14deg, transparent 0 48.8%, rgba(0, 176, 255, 0.48) 49.2% 49.7%, transparent 50.1%) 3% 66% / 42% 20% no-repeat,
    linear-gradient(-19deg, transparent 0 48.8%, rgba(94, 23, 235, 0.44) 49.2% 49.7%, transparent 50.1%) 2% 83% / 47% 18% no-repeat,
    linear-gradient(23deg, transparent 0 48.7%, rgba(67, 217, 255, 0.36) 49.2% 49.6%, transparent 50.1%) 94% 63% / 45% 22% no-repeat,
    linear-gradient(-12deg, transparent 0 48.8%, rgba(84, 12, 228, 0.42) 49.2% 49.7%, transparent 50.1%) 96% 84% / 39% 17% no-repeat;
  filter: drop-shadow(0 0 5px rgba(84, 12, 228, 0.28));
  opacity: 0.58;
}

.hero-cube-effects::after {
  inset: 27% 5% 8%;
  background:
    linear-gradient(90deg, #24106f, #00b0ff) 12% 82% / 9px 4px no-repeat,
    linear-gradient(90deg, #151050, #5e17eb) 32% 66% / 13px 5px no-repeat,
    linear-gradient(90deg, #321087, #43d9ff) 72% 86% / 11px 4px no-repeat,
    linear-gradient(90deg, #151050, #540ce4) 91% 71% / 14px 5px no-repeat,
    radial-gradient(circle at 8% 72%, #00b0ff 0 2px, transparent 3px),
    radial-gradient(circle at 17% 51%, #7c45ff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 27% 81%, rgba(255, 255, 255, 0.86) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 76%, #00b0ff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 88% 54%, #8f55ff 0 2px, transparent 3px),
    radial-gradient(circle at 94% 83%, rgba(255, 255, 255, 0.78) 0 1px, transparent 2px);
  filter: drop-shadow(0 0 5px rgba(0, 176, 255, 0.8));
  opacity: 0.82;
}

.hero-cube-beam {
  position: absolute;
  top: 1%;
  width: 1px;
  height: 33%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 176, 255, 0.16) 18%, rgba(0, 229, 255, 0.92) 72%, transparent 100%);
  box-shadow: 0 0 8px rgba(0, 176, 255, 0.66);
  opacity: 0.78;
}

.hero-cube-beam-one {
  left: 42%;
}

.hero-cube-beam-two {
  left: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(94, 23, 235, 0.2) 18%, rgba(142, 75, 255, 0.9) 72%, transparent 100%);
  box-shadow: 0 0 8px rgba(94, 23, 235, 0.62);
}

.hero-cube-beam-three {
  left: 67%;
  opacity: 0.62;
}

.hero-cube-tilt {
  position: relative;
  z-index: 2;
  width: var(--cube-size);
  height: var(--cube-size);
  transform-style: preserve-3d;
  transform: rotateX(var(--cube-tilt-x)) rotateY(var(--cube-tilt-y));
  transition: transform 0.6s cubic-bezier(0.2, 0.72, 0.28, 1);
}

.hero-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: hero-cube-spin 24s linear infinite;
  will-change: transform;
}

.hero-cube-face {
  --face-base: #070b24;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(67, 217, 255, 0.6);
  background:
    radial-gradient(circle at 50% 48%, rgba(58, 45, 170, 0.32), transparent 38%),
    linear-gradient(145deg, rgba(0, 176, 255, 0.22), transparent 34%),
    linear-gradient(325deg, rgba(94, 23, 235, 0.4), transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 7px),
    var(--face-base);
  box-shadow:
    inset 0 0 28px rgba(0, 176, 255, 0.18),
    inset 0 0 68px rgba(84, 12, 228, 0.34),
    0 0 11px rgba(0, 176, 255, 0.3),
    0 0 30px rgba(84, 12, 228, 0.22);
  backface-visibility: hidden;
}

.hero-cube-face::before,
.hero-cube-face::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-cube-face::before {
  inset: 5%;
  background: url("../assets/images/brand/circuit-face.svg") center / cover no-repeat;
  filter:
    drop-shadow(0 0 4px rgba(0, 176, 255, 0.42))
    drop-shadow(0 0 7px rgba(94, 23, 235, 0.26));
  opacity: 0.7;
}

.hero-cube-face::after {
  inset: 6%;
  border: 1px solid rgba(122, 168, 255, 0.16);
  background:
    radial-gradient(circle at 17% 24%, #00b0ff 0 2px, transparent 3px),
    radial-gradient(circle at 68% 72%, #8c63ff 0 2px, transparent 3px),
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.88) 0 1.5px, transparent 2.5px);
  filter: drop-shadow(0 0 4px rgba(0, 176, 255, 0.46));
}

.hero-cube-face-front {
  --face-base: #070b24;
  transform: translateZ(var(--cube-half));
}

.hero-cube-face-back {
  --face-base: #030617;
  transform: rotateY(180deg) translateZ(var(--cube-half));
}

.hero-cube-face-right {
  --face-base: #0b1233;
  transform: rotateY(90deg) translateZ(var(--cube-half));
}

.hero-cube-face-left {
  --face-base: #030617;
  transform: rotateY(-90deg) translateZ(var(--cube-half));
}

.hero-cube-face-top {
  --face-base: #151050;
  background:
    radial-gradient(circle at 48% 42%, rgba(238, 246, 255, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(67, 217, 255, 0.34), transparent 38%),
    linear-gradient(325deg, rgba(94, 23, 235, 0.42), transparent 56%),
    #151050;
  box-shadow:
    inset 0 0 24px rgba(238, 246, 255, 0.17),
    inset 0 0 58px rgba(0, 176, 255, 0.24),
    0 0 16px rgba(67, 217, 255, 0.28);
  transform: rotateX(90deg) translateZ(var(--cube-half));
}

.hero-cube-face-top::before {
  opacity: 0.82;
}

.hero-cube-face-bottom {
  --face-base: #030617;
  transform: rotateX(-90deg) translateZ(var(--cube-half));
}

.hero-cube-brand,
.hero-cube-monogram {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.92),
    0 0 14px rgba(0, 176, 255, 0.76),
    0 0 26px rgba(94, 23, 235, 0.56);
}

.hero-cube-brand {
  isolation: isolate;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
}

.hero-cube-brand::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.28em;
  z-index: -1;
  width: 1.75em;
  height: 1.9em;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(67, 217, 255, 0.34) 0%, rgba(0, 176, 255, 0.22) 38%, rgba(84, 12, 228, 0.12) 62%, transparent 78%);
  filter: blur(8px);
  opacity: 0.72;
  transform: translateY(-50%);
}

.hero-cube-brand span {
  display: inline-block;
  color: #43d9ff;
  background: linear-gradient(90deg, #eef6ff 0%, #fff 34%, #43d9ff 72%, #00b0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 4px rgba(238, 246, 255, 0.9),
    0 0 13px rgba(0, 176, 255, 0.92),
    0 0 23px rgba(67, 217, 255, 0.48);
  -webkit-text-fill-color: transparent;
}

.hero-cube-monogram {
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.95),
    0 0 15px rgba(0, 176, 255, 0.82),
    0 0 28px rgba(84, 12, 228, 0.58);
}

.hero-cube-monogram {
  font-size: clamp(2.45rem, 3.6vw, 3.7rem);
}

@keyframes hero-cube-spin {
  0% {
    transform: rotateX(-13deg) rotateY(24deg);
  }

  25% {
    transform: rotateX(8deg) rotateY(114deg);
  }

  50% {
    transform: rotateX(-7deg) rotateY(204deg);
  }

  75% {
    transform: rotateX(9deg) rotateY(294deg);
  }

  100% {
    transform: rotateX(-13deg) rotateY(384deg);
  }
}

.hero h1,
.hero .eyebrow,
.hero p {
  color: #fff;
}

.hero .eyebrow {
  color: #d9e5ff;
}

.hero-wordmark {
  white-space: nowrap;
}

.hero p {
  max-width: 730px;
  margin-top: 1rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.home-hero .hero-actions {
  align-items: stretch;
  gap: 0.78rem;
  margin-top: 1.55rem;
}

.hero .hero-proof {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 1.25rem 0 0;
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-structure);
  font-size: clamp(0.62rem, 2.45vw, 0.82rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-brand::before {
  background-image: none;
  opacity: 0;
}

.hero-brand::after {
  background:
    linear-gradient(90deg, rgba(12, 18, 48, 0.94), rgba(22, 30, 72, 0.78) 52%, rgba(33, 42, 89, 0.56)),
    linear-gradient(0deg, rgba(15, 20, 47, 0.48), rgba(15, 20, 47, 0.08));
}

.proof-pill {
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-structure);
  font-size: 0.74rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-structure);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn {
  width: 100%;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient-ia);
  box-shadow: 0 16px 30px rgba(0, 176, 255, 0.18);
}

.btn-primary:hover {
  color: #fff;
  background: var(--gradient-ia);
}

.btn-secondary {
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-border);
}

.btn-secondary:hover {
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.conversion-card .btn-secondary {
  color: #fff;
  background: var(--gradient-ia);
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(0, 176, 255, 0.18);
}

.conversion-card .btn-secondary:hover {
  color: #fff;
  background: var(--gradient-ia);
}

.btn-ghost {
  color: #fff;
  border-color: transparent;
  background: var(--gradient-ia);
  box-shadow: 0 16px 30px rgba(0, 176, 255, 0.18);
}

.btn-ghost:hover {
  color: #fff;
  background: var(--gradient-ia);
}

.home-hero .btn-primary,
.home-hero .btn-ghost {
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #3923b8 0%, #435bd8 50%, #1fa4dd 100%);
  box-shadow: 0 14px 28px rgba(17, 40, 106, 0.28);
}

.home-hero .btn-primary:hover,
.home-hero .btn-ghost:hover {
  background: linear-gradient(135deg, #3923b8 0%, #435bd8 50%, #1fa4dd 100%);
  box-shadow: 0 18px 34px rgba(17, 40, 106, 0.34);
}

.positioning-section .section-intro {
  color: var(--color-primary);
}

.positioning-section .card {
  border-color: rgba(94, 23, 235, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(30, 42, 80, 0.08);
}

.home-process,
.safety-grid {
  margin-top: 2rem;
}

.home-problems .home-problem-grid {
  margin-top: 1.65rem;
}

.problem-card {
  border-color: rgba(94, 23, 235, 0.12);
}

.transition-note {
  max-width: 900px;
  margin: 1.5rem auto 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(94, 23, 235, 0.22);
  font-weight: 500;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.75rem;
}

.offer-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid rgba(94, 23, 235, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.offer-card h3 {
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.offer-card p {
  font-size: 0.96rem;
}

.offer-card > p:not(.offer-result) {
  margin-bottom: 0;
}

.offer-result {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--color-border);
}

.offer-result strong,
.deliverable strong {
  color: var(--color-accent);
}

.home-engagements .engagement-grid {
  align-items: stretch;
  margin-top: 1.75rem;
}

.engagement-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.engagement-card .deliverable {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
}

.home-process .process-step p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.home-safety .card p {
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card,
.sector-card,
.conversion-card,
.legal-box {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.45rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card h3,
.sector-card h3,
.conversion-card h3,
.contact-option h3,
.faq-item h3,
.service-row h3 {
  color: var(--color-accent);
}

.card p,
.card li {
  font-size: 0.96rem;
}

.number-card {
  display: grid;
  gap: 0.7rem;
}

.number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-accent);
  font-family: var(--font-structure);
  font-weight: 600;
}

.sector-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.sector-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 23, 235, 0.42);
  box-shadow: 0 22px 48px rgba(33, 42, 89, 0.12);
}

.sector-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  background:
    radial-gradient(circle at 85% 18%, rgba(94, 23, 235, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8f6ff 50%, #eef4ff 100%);
}

.sector-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.sector-card h3 {
  margin-bottom: 0.7rem;
  min-height: 0;
}

.sector-card p {
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.55rem;
  color: var(--color-accent);
  font-family: var(--font-structure);
  font-size: 0.82rem;
  font-weight: 600;
}

.sector-side-band {
  display: grid;
  gap: 1.1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(94, 23, 235, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 48%, #eef4ff 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sector-side-band:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 23, 235, 0.32);
  box-shadow: 0 22px 48px rgba(33, 42, 89, 0.11);
}

.sector-side-band-media {
  aspect-ratio: 3 / 2;
  min-height: 180px;
  border: 1px solid rgba(94, 23, 235, 0.12);
  border-radius: var(--radius);
  background: #eef4ff;
  overflow: hidden;
}

.sector-side-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sector-side-band h3 {
  margin-bottom: 0.65rem;
  color: var(--color-accent);
}

.sector-side-band p {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.sector-side-band p:last-child {
  margin-bottom: 0;
}

.sector-side-band .text-link {
  margin-top: 0;
  padding-top: 0;
}

.behind-section {
  padding: 2.8rem 0;
}

.behind-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
  max-width: 1040px;
}

.behind-media {
  width: min(100%, 320px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.behind-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
}

.behind-content {
  max-width: 660px;
}

.behind-content h2 {
  max-width: 640px;
}

.behind-content p {
  margin-top: 1rem;
  margin-bottom: 0;
}

.subtle-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--color-accent);
  font-family: var(--font-structure);
  font-size: 0.88rem;
  font-weight: 600;
}

.subtle-link:hover {
  color: var(--color-primary);
}

.feature-list,
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--color-primary);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.founder-photo {
  width: min(310px, 78vw);
  height: min(390px, 98vw);
  object-fit: cover;
  object-position: center 58%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}

.quote-box {
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quote-box p {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.22;
}

.process-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
}

.process-step {
  min-height: 160px;
  padding: 1.2rem;
  background: #fff;
}

.process-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(94, 23, 235, 0.18);
  border-radius: 50%;
  color: var(--color-accent);
  background: var(--color-blush);
}

.process-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--color-accent);
  font-family: var(--font-structure);
  font-size: 0.78rem;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 0.55rem;
}

.reassurance-note {
  max-width: 780px;
  margin: 1.4rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(94, 23, 235, 0.16);
  border-radius: var(--radius);
  color: var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.faq-section h2 {
  margin-bottom: 1.55rem;
}

.faq-group + .faq-group {
  margin-top: 2.2rem;
}

.faq-group-title {
  margin-bottom: 0.85rem;
  color: var(--color-accent);
}

.faq-accordion {
  border-top: 1px solid var(--color-border);
}

.faq-accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-accordion-item summary {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--color-accent);
  font-family: var(--font-structure);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-accordion-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 0 1.1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--color-primary);
}

.faq-item {
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item h3 {
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin-bottom: 0;
}

.resources-hero .hero-content {
  max-width: 900px;
}

.resources-intro {
  max-width: 920px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.resource-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid rgba(94, 23, 235, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.resource-card h3 {
  margin: 1rem 0 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.16;
}

.resource-card p {
  max-width: 760px;
}

.resource-card .text-link {
  margin-top: auto;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  color: rgba(30, 42, 80, 0.72);
  font-family: var(--font-structure);
  font-size: 0.76rem;
  line-height: 1.4;
}

.resource-category {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(94, 23, 235, 0.16);
  border-radius: 999px;
  color: var(--color-accent);
  background: var(--color-blush);
  font-family: var(--font-structure);
  font-size: 0.74rem;
  font-weight: 600;
}

.resource-cta .button-row,
.article-cta .button-row {
  align-items: stretch;
}

.resource-cta .btn,
.article-cta .btn {
  min-height: 58px;
}

.breadcrumb {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  margin: 0 auto;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  list-style: none;
  color: rgba(30, 42, 80, 0.72);
  font-size: 0.78rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  color: rgba(30, 42, 80, 0.42);
}

.breadcrumb a {
  color: var(--color-accent);
  font-weight: 600;
}

.article-shell {
  width: min(760px, calc(100% - 28px));
  margin-right: auto;
  margin-left: auto;
}

.article-header {
  padding: 2.8rem 0;
}

.article-header h1 {
  margin-top: 1rem;
  font-size: 2.05rem;
  line-height: 1.08;
}

.article-lead {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-top: 1.35rem;
  color: rgba(30, 42, 80, 0.72);
  font-family: var(--font-structure);
  font-size: 0.8rem;
}

.article-content {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.article-content > p,
.article-content section p,
.article-content li {
  line-height: 1.78;
}

.article-content section {
  margin-top: 3.2rem;
  scroll-margin-top: 100px;
}

.article-content section h2 {
  margin-bottom: 1.15rem;
  font-size: 1.75rem;
  line-height: 1.12;
}

.article-content section h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.article-content section ul,
.article-content section ol {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.3rem;
}

.article-content a:not(.btn) {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-toc {
  margin: 2.4rem 0 3rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-soft);
}

.article-toc h2 {
  font-size: 1.5rem;
}

.article-toc ol {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.article-toc a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
}

.editorial-callout {
  margin: 3rem 0;
  padding: 1.25rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-soft);
}

.editorial-callout p {
  margin-bottom: 0;
}

.editorial-callout .callout-label {
  margin-bottom: 0.55rem;
  color: var(--color-accent);
  font-family: var(--font-structure);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.article-steps {
  counter-reset: article-step;
  padding-left: 0 !important;
  list-style: none;
}

.article-steps li {
  position: relative;
  padding-left: 2.7rem;
  counter-increment: article-step;
}

.article-steps li::before {
  content: counter(article-step);
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-accent);
  font-family: var(--font-structure);
  font-size: 0.78rem;
  font-weight: 600;
}

.article-sources {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.conversion-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 22%, rgba(84, 12, 228, 0.14), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(0, 176, 255, 0.12), transparent 38%),
    linear-gradient(135deg, #11183d 0%, #1e2a50 58%, #27347c 100%);
}

.conversion-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 48, 0.9), rgba(22, 30, 72, 0.72), rgba(33, 42, 89, 0.38)),
    linear-gradient(0deg, rgba(15, 20, 47, 0.55), rgba(15, 20, 47, 0.1));
  pointer-events: none;
}

.conversion-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}

.conversion-band h2 + p {
  margin-top: 1.45rem;
}

.conversion-band h2,
.conversion-band p,
.conversion-band .eyebrow {
  color: #fff;
}

.conversion-band p {
  color: rgba(255, 255, 255, 0.82);
}

.conversion-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.conversion-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  color: var(--color-primary);
  box-shadow: none;
}

.conversion-card h3 {
  margin-bottom: 0.65rem;
}

.conversion-card p {
  color: var(--color-primary);
  font-size: 0.94rem;
}

.conversion-card .btn {
  width: 100%;
  min-height: 62px;
  margin-top: auto;
}

.location-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(94, 23, 235, 0.1), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(0, 176, 255, 0.07), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #fbfaff 50%, #eef4ff 100%);
}

.location-heading {
  max-width: 780px;
}

.location-heading h2 {
  margin-bottom: 1.15rem;
}

.location-heading p {
  max-width: 620px;
  margin-bottom: 1.1rem;
}

.location-heading a:not(.btn) {
  color: var(--color-primary);
  overflow-wrap: anywhere;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 2.55rem;
}

.location-photo,
.location-map {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(30, 42, 80, 0.08);
}

.location-photo {
  object-fit: cover;
  object-position: center center;
}

.location-map {
  position: relative;
  background: var(--color-soft);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: auto;
  min-height: 46px;
  padding: 0.78rem 1rem;
  background: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-cube-tilt {
    transition: none;
    transform: none;
  }

  .hero-cube {
    animation: none;
    transform: rotateX(-14deg) rotateY(28deg);
  }
}

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

.page-hero .hero-content {
  max-width: 880px;
}

.page-hero:not(.hero-brand)::after {
  background:
    linear-gradient(90deg, rgba(12, 18, 48, 0.82), rgba(22, 30, 72, 0.62), rgba(33, 42, 89, 0.28)),
    linear-gradient(0deg, rgba(15, 20, 47, 0.42), rgba(15, 20, 47, 0.08));
}

.pme-hero {
  background: linear-gradient(135deg, #11183d 0%, #1e2a50 62%, #25336f 100%);
}

.pme-hero::before {
  background-image: var(--hero-image, none);
}

.pme-hero::after {
  background:
    linear-gradient(90deg, rgba(12, 18, 48, 0.84), rgba(22, 30, 72, 0.66), rgba(18, 24, 55, 0.36)),
    linear-gradient(0deg, rgba(15, 20, 47, 0.46), rgba(15, 20, 47, 0.1));
}

.pme-page > .section:not(.conversion-band)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(94, 23, 235, 0.08), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(84, 12, 228, 0.045), transparent 32%);
  pointer-events: none;
}

.service-table {
  display: grid;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
}

.service-row + .service-row {
  border-top: 1px solid var(--color-border);
}

.service-row > div {
  padding: 1.2rem;
  background: #fff;
}

.service-row > div + div {
  border-top: 1px solid var(--color-border);
}

.service-row h3 {
  margin-bottom: 0.35rem;
}

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

.contact-option {
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.placeholder-line {
  display: block;
  margin-top: 0.45rem;
  padding: 0.7rem 0.8rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  background: var(--color-soft);
  font-family: var(--font-structure);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.legal-box {
  padding: 2rem;
  box-shadow: none;
}

.legal-box h2 {
  font-size: 1.7rem;
}

.legal-box h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
}

.site-footer {
  padding: 3.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-primary);
  color: #fff;
}

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

.footer-column {
  min-width: 0;
}

.footer-logo,
.footer-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1.05rem;
  font-size: 1.65rem;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer .footer-logo {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.1;
}

.site-footer p,
.site-footer address {
  margin: 0;
}

.footer-brand p {
  max-width: 300px;
}

.footer-signature {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-copyright {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  width: fit-content;
  padding: 0.22rem 0;
}

.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-contact address {
  font-style: normal;
}

.footer-social {
  margin-top: 0.25rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer a:focus-visible {
  outline: 2px solid #00b0ff;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (min-width: 721px) {
  .nav-shell,
  .container,
  .hero-inner {
    width: min(var(--container), calc(100% - 40px));
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-tight {
    padding: 3.2rem 0;
  }

  h1,
  .display-title {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-title-with-icon {
    column-gap: 0.8rem;
  }

  .section-title-pictogram {
    width: 36px;
    height: 36px;
  }

  .card-title-with-icon {
    column-gap: 0.7rem;
  }

  .card-title-pictogram {
    width: 23px;
    height: 23px;
  }

  .section-intro {
    font-size: 1.05rem;
  }

  .article-shell {
    width: min(760px, calc(100% - 40px));
  }

  .article-header {
    padding: 4rem 0;
  }

  .article-header h1 {
    font-size: 3.05rem;
  }

  .article-lead {
    font-size: 1.12rem;
  }

  .resource-card {
    padding: 1.8rem;
  }

  .resource-card h3 {
    font-size: 1.75rem;
  }

  .home-problems .home-problem-grid,
  .home-offers .offer-grid,
  .home-engagements .engagement-grid {
    margin-top: 2rem;
  }

  .offer-result {
    min-height: 5.1rem;
  }

  .engagement-card .deliverable {
    min-height: 6rem;
  }

  .transition-note {
    margin-top: 2rem;
    text-align: center;
  }

  .hero-inner {
    padding: 4rem 0;
  }

  .home-hero .hero-inner {
    padding: 3.35rem 0;
  }

  .home-hero h1 {
    font-size: 2.55rem;
    line-height: 1.08;
  }

  .home-hero .hero-actions {
    gap: 0.9rem;
    margin-top: 1.85rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .proof-pill {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
  }

  .hero-actions,
  .button-row {
    flex-direction: row;
  }

  .btn {
    width: auto;
  }

  .home-hero .btn-primary {
    min-width: 220px;
  }

  .home-hero .btn-ghost {
    min-width: 300px;
  }

  .sector-card img {
    height: 280px;
  }

  .sector-card h3 {
    min-height: 2.35rem;
  }

  .sector-card-content p:first-of-type {
    min-height: 6.4rem;
  }

  .behind-section {
    padding: 3.2rem 0;
  }

  .behind-media {
    width: min(100%, 360px);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .offer-grid,
  .sector-grid,
  .process-strip,
  .conversion-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-side-band {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.65rem 1.8rem;
  }

  .sector-side-band-media {
    height: clamp(240px, 34vw, 300px);
    min-height: 0;
  }

  .sector-side-band .text-link {
    grid-column: auto;
    justify-self: start;
  }

  .location-photo,
  .location-map {
    height: 400px;
  }

  .service-row {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .service-row > div + div {
    border-top: 0;
  }

  .quote-box p {
    font-size: 1.9rem;
  }

  .legal-box h2 {
    font-size: 2.15rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.4rem;
    row-gap: 2.2rem;
  }
}

@media (min-width: 1051px) {
  .section-title-pictogram {
    width: 42px;
    height: 42px;
  }

  .card-title-with-icon {
    column-gap: 0.75rem;
  }

  .card-title-pictogram {
    width: 24px;
    height: 24px;
  }

  .nav-shell {
    min-height: 76px;
    gap: 1.5rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .main-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    border-bottom: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .main-nav a {
    padding: 0.55rem 0;
    border-bottom: 0;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -0.75rem;
    right: -0.75rem;
    height: 0.95rem;
  }

  .nav-dropdown-toggle {
    width: auto;
    padding: 0.55rem 0;
    border-bottom: 0;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    z-index: 60;
    min-width: 240px;
    padding: 0.78rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transform: translateX(-50%);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 0.55rem 0.65rem;
    border-bottom: 0;
    font-size: 0.74rem;
  }

  .main-nav a::after {
    display: block;
  }

  .nav-dropdown-toggle::after {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-tight {
    padding: 3.5rem 0;
  }

  h1,
  .display-title {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .hero {
    min-height: min(720px, 78svh);
  }

  .home-hero {
    min-height: min(560px, 62svh);
  }

  .hero-inner {
    padding: 3.8rem 0;
  }

  .home-hero .hero-inner {
    padding: 3.6rem 0;
  }

  .home-hero h1 {
    font-size: 3.05rem;
    line-height: 1.06;
  }

  .sector-card img {
    height: 330px;
  }

  .sector-card h3 {
    min-height: 3.3rem;
  }

  .sector-card-content p:first-of-type {
    min-height: 8rem;
  }

  .sector-side-band {
    grid-template-columns: minmax(340px, 0.42fr) minmax(0, 1fr);
    gap: 1.65rem;
  }

  .sector-side-band-media {
    height: auto;
    min-height: 230px;
  }

  .sector-side-band .text-link {
    grid-column: 2;
  }

  .home-hero .hero-actions {
    margin-top: 2.15rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-brand::before {
    background-image: none;
    opacity: 0;
  }

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

  .grid-4,
  .sector-grid,
  .process-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-problems .home-problem-grid,
  .home-offers .offer-grid,
  .home-engagements .engagement-grid {
    margin-top: 2.5rem;
  }

  .home-offers .offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .offer-result {
    min-height: 6.3rem;
  }

  .engagement-card .deliverable {
    min-height: 9rem;
  }

  .split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
  }

  .behind-inner {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    gap: 3rem;
  }

  .behind-media {
    width: 100%;
    max-width: 340px;
    margin: 0;
  }

  .conversion-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
  }

  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .location-photo,
  .location-map {
    height: 460px;
  }

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

  .page-hero {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.78fr) minmax(0, 1.12fr) minmax(0, 0.82fr);
    gap: 2.4rem;
  }
}

@media (min-width: 1180px) {
  .hero-tech-backdrop {
    display: block;
  }

  .hero-cube-stage {
    display: grid;
  }
}

@media (min-width: 1180px) and (max-width: 1279px) {
  .hero-tech-plane-far {
    opacity: 0.2;
  }

  .hero-tech-plane-mid {
    opacity: 0.3;
  }

  .hero-tech-plane-near {
    opacity: 0.4;
  }

  .hero-cube-beam-three {
    display: none;
  }

  .hero-cube-stage::before {
    opacity: 0.72;
  }
}
