:root {
  --brand-primary: #17001f;
  --brand-secondary: #6b1ca4;
  --brand-accent: #f000a8;
  --brand-support: #ff4fd2;
  --brand-coral: #ff6e70;
  --brand-gradient-text: linear-gradient(92deg, #ff736b 0%, #ff4cae 48%, #d84eff 100%);
  --brand-dark: #08000d;
  --ink: #ffffff;
  --muted: #d9c9df;
  --surface: rgba(43, 0, 54, 0.58);
  --surface-strong: rgba(78, 10, 89, 0.68);
  --panel: rgba(34, 7, 43, 0.82);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
  --glow: 0 18px 45px rgba(240, 0, 168, 0.22);
  --site-bg:
    radial-gradient(circle at 12% 12%, rgba(118, 0, 91, 0.64), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(107, 28, 164, 0.44), transparent 34%),
    linear-gradient(135deg, #09000d 0%, #2b0038 58%, #3b0f49 100%);
  --radius: 12px;
  --container: 1200px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--site-bg);
  background-attachment: fixed;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--brand-dark);
  border-radius: var(--radius);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: #000000;
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 148px;
  height: 54px;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.brand-name,
.brand-note {
  display: block;
}

.brand-name {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.05;
}

.brand-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 12px 10px;
  color: var(--brand-accent);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:not(:last-child) {
  color: transparent;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav a:last-child {
  margin-left: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-accent), #9b00d8);
  box-shadow: 0 10px 24px rgba(240, 0, 168, 0.18);
}

.site-nav a:last-child:hover,
.site-nav a:last-child:focus-visible,
.site-nav a:last-child.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff2ec0, #aa14e2);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-support));
  border-radius: 99px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  padding: 76px 0 62px;
  color: #ffffff;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(240, 0, 168, 0.28);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent), var(--brand-support));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 0, 13, 0.72) 0%, rgba(23, 0, 31, 0.42) 34%, rgba(107, 28, 164, 0.04) 68%, rgba(240, 0, 168, 0.04) 100%),
    radial-gradient(circle at 18% 28%, rgba(240, 0, 168, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(8, 0, 13, 0), rgba(8, 0, 13, 0.18));
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(0, 0.65fr);
  align-items: end;
  min-height: 540px;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 720px;
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h1 {
  max-width: 720px;
  color: transparent;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.55rem, 4.3vw, 4.55rem);
  font-weight: 800;
  text-shadow: none;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.75rem);
}

.section-header h2,
.cta-panel h2 {
  color: transparent;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
}

h3 {
  font-size: 1.22rem;
}

.hero-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(240, 0, 168, 0.22);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-accent), #b000d4);
  box-shadow: var(--glow);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background-color: var(--brand-dark);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.06) hue-rotate(305deg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media img {
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 0, 13, 0.74) 0%, rgba(8, 0, 13, 0.38) 38%, rgba(8, 0, 13, 0.02) 72%),
    linear-gradient(135deg, rgba(240, 0, 168, 0.08), rgba(107, 28, 164, 0.04));
  pointer-events: none;
}

.section {
  padding: 76px 0;
}

body[data-page="home"] .home-panel,
body[data-page="home"] .cta-section {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: 72px;
  scroll-margin-top: var(--header-height);
}

body[data-page="home"] .home-positioning {
  min-height: min(680px, calc(100svh - var(--header-height)));
}

body[data-page="home"] .cta-section {
  padding-top: 72px;
}

.surface-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 0, 168, 0.18), transparent 32%),
    var(--surface);
  border-block: 1px solid var(--border);
}

.section-header {
  max-width: 790px;
  margin-bottom: 32px;
}

.section-header p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.prose {
  color: var(--muted);
}

.prose p {
  margin: 0 0 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.large {
  gap: 22px;
}

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

.card-grid.four .info-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px;
  border-top-width: 5px;
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 0, 168, 0.14), transparent 34%),
    var(--panel);
}

.card-grid.four .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
}

.card-grid.four .info-card h3 {
  min-height: 3.1em;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  line-height: 1.18;
}

.card-grid.four .info-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.58;
}

.info-card,
.project-card,
.bullet-panel,
.team-card,
.contact-form,
.contact-placeholder {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card {
  min-height: 204px;
  padding: 22px;
  border-top: 4px solid rgba(240, 0, 168, 0.8);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 0, 168, 0.44);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.card-grid.large .info-card {
  min-height: 260px;
}

.identity-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 9vw, 126px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.identity-section::before {
  content: "";
  position: absolute;
  inset: 8% 5% auto;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(240, 0, 168, 0.28), transparent 32%),
    radial-gradient(circle at 72% 38%, rgba(216, 78, 255, 0.18), transparent 36%);
  filter: blur(4px);
}

.identity-cards {
  position: relative;
  counter-reset: identity-card;
  gap: clamp(18px, 2.4vw, 28px);
}

.identity-cards .info-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 31vw, 470px);
  padding: clamp(30px, 3.2vw, 42px);
  overflow: hidden;
  border-top: 0;
  border-color: rgba(240, 0, 168, 0.24);
  background:
    linear-gradient(148deg, rgba(63, 0, 74, 0.95), rgba(26, 2, 34, 0.9) 56%),
    var(--panel);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.identity-cards .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--brand-accent), var(--brand-support), rgba(216, 78, 255, 0.4)) top / 100% 6px no-repeat,
    radial-gradient(circle at 18% 14%, rgba(240, 0, 168, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.identity-cards .info-card::after {
  counter-increment: identity-card;
  content: "0" counter(identity-card);
  position: absolute;
  right: clamp(22px, 2.4vw, 34px);
  bottom: 12px;
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(5.8rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 1;
}

.identity-cards .info-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 79, 210, 0.58);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.44),
    0 0 36px rgba(240, 0, 168, 0.18);
}

.identity-cards .card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  padding: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(240, 0, 168, 0.95), rgba(107, 28, 164, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(240, 0, 168, 0.2);
}

.identity-cards .info-card h3 {
  max-width: 12ch;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.identity-cards .info-card p {
  max-width: 29rem;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.22vw, 1.12rem);
  line-height: 1.62;
}

.identity-cards .info-card > * {
  position: relative;
  z-index: 1;
}

.synergy-platform {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 0, 13, 0.98) 0%, rgba(8, 0, 13, 0.88) 42%, rgba(47, 0, 63, 0.72) 100%),
    url("../img/photo-home.webp?v=2") center / cover no-repeat;
  border-block: 1px solid rgba(255, 79, 210, 0.18);
}

.synergy-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(240, 0, 168, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(240, 0, 168, 0.16), transparent 28%, rgba(8, 0, 13, 0.9));
}

.synergy-platform::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(8, 0, 13, 0.96));
}

.synergy-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.synergy-copy {
  max-width: 560px;
}

.synergy-copy h2 {
  max-width: 10ch;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.synergy-copy h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-support), transparent);
  border-radius: 999px;
}

.synergy-copy p:not(.eyebrow) {
  max-width: 52rem;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.72;
}

.synergy-copy .button {
  margin-top: 28px;
}

.synergy-map {
  position: relative;
  display: grid;
  gap: 28px;
  padding: clamp(18px, 2.6vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(18, 0, 25, 0.76);
  border: 1px solid rgba(255, 79, 210, 0.28);
  border-radius: var(--radius);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.synergy-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 79, 210, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 79, 210, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 66% 38%, black, transparent 76%);
}

.synergy-node,
.synergy-message {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2.1vw, 28px);
  background:
    radial-gradient(circle at 0 0, rgba(240, 0, 168, 0.2), transparent 38%),
    rgba(8, 0, 13, 0.78);
  border: 1px solid rgba(255, 79, 210, 0.36);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.synergy-node .card-icon,
.synergy-message .card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  padding: 12px;
  color: var(--brand-support);
  background: rgba(240, 0, 168, 0.12);
  border: 1px solid rgba(255, 79, 210, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(240, 0, 168, 0.22);
}

.synergy-top {
  max-width: 620px;
  margin-inline: auto;
}

.synergy-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -29px;
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--brand-accent), rgba(255, 79, 210, 0.24));
}

.synergy-node h3 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.synergy-node p,
.synergy-message p:not(.eyebrow) {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.synergy-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 28px;
}

.synergy-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 79, 210, 0.08), var(--brand-accent), rgba(255, 79, 210, 0.08));
}

.synergy-branches .synergy-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -29px;
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--brand-accent), rgba(255, 79, 210, 0.24));
}

.synergy-node ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.synergy-node li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.synergy-node li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(240, 0, 168, 0.75);
}

.synergy-message {
  background:
    linear-gradient(90deg, rgba(240, 0, 168, 0.22), rgba(8, 0, 13, 0.8)),
    rgba(8, 0, 13, 0.9);
  border-color: rgba(255, 79, 210, 0.5);
}

.synergy-message .eyebrow {
  color: var(--brand-support);
}

/* UI/UX refinement: executive platform map, not a cramped slide clone. */
.synergy-platform {
  padding-block: clamp(84px, 9vw, 128px);
  background:
    linear-gradient(90deg, rgba(8, 0, 13, 0.98) 0%, rgba(8, 0, 13, 0.9) 38%, rgba(58, 0, 69, 0.72) 100%),
    url("../img/photo-home.webp?v=2") center / cover no-repeat;
}

.synergy-platform .container {
  width: min(calc(100% - 48px), 1500px);
}

.synergy-layout {
  grid-template-columns: minmax(300px, 0.55fr) minmax(720px, 1.45fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
}

.synergy-copy {
  max-width: 520px;
}

.synergy-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 4.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.synergy-copy p:not(.eyebrow) {
  max-width: 480px;
  font-size: clamp(1rem, 1.04vw, 1.12rem);
  line-height: 1.68;
}

.synergy-map {
  gap: 30px;
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 0, 168, 0.14), transparent 34%),
    rgba(10, 0, 16, 0.42);
  border-color: rgba(255, 79, 210, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.synergy-node,
.synergy-message {
  border-color: rgba(255, 79, 210, 0.28);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.synergy-top {
  width: min(100%, 620px);
  min-height: 150px;
  padding: 28px 34px;
}

.synergy-branches {
  gap: 28px;
}

.synergy-branches .synergy-node {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 330px;
  padding: clamp(26px, 2.4vw, 34px);
}

.synergy-branches .synergy-node .card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
}

.synergy-node h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  font-size: clamp(1.55rem, 1.75vw, 2rem);
  line-height: 1.12;
}

.synergy-branches .synergy-node h3 {
  max-width: none;
}

.synergy-node ul {
  gap: 10px;
  margin-top: 22px;
}

.synergy-node li {
  padding-left: 20px;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

.synergy-message {
  align-items: start;
  padding: 26px 30px;
}

.synergy-message p:not(.eyebrow) {
  max-width: 760px;
  line-height: 1.62;
}

.pillar-card {
  min-height: 300px;
}

.card-detail {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.solutions-showcase {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 9vw, 132px);
  background:
    linear-gradient(90deg, rgba(4, 0, 11, 0.98) 0%, rgba(9, 0, 22, 0.92) 42%, rgba(55, 0, 70, 0.7) 100%),
    url("../img/photo-solutions.webp?v=2") center / cover no-repeat;
}

.solutions-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 50%, rgba(240, 0, 168, 0.22), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.solutions-system {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(720px, 1.42fr);
  gap: clamp(44px, 4.6vw, 72px);
  align-items: center;
}

.solutions-intro-panel {
  max-width: 560px;
}

.solutions-intro-panel h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 4.35vw, 4.95rem);
  line-height: 1.02;
}

.solutions-intro-panel h2::after {
  content: "";
  display: block;
  width: 104px;
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--brand-support), var(--brand-accent), transparent);
  border-radius: 99px;
}

.solutions-intro-panel p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.08vw, 1.15rem);
  line-height: 1.62;
}

.solutions-intro-panel strong {
  color: #ffffff;
}

.solutions-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  column-gap: clamp(190px, 14vw, 270px);
  row-gap: 28px;
  min-height: 680px;
  padding: clamp(22px, 2.4vw, 34px);
}

.solutions-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(260px, 25vw, 390px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 46, 192, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 46, 192, 0.035),
    0 0 58px rgba(255, 46, 192, 0.15);
}

.solution-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(210px, 18vw, 278px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 46, 192, 0.2), rgba(8, 0, 17, 0.94) 62%),
    rgba(8, 0, 17, 0.94);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 36px rgba(255, 46, 192, 0.55),
    inset 0 0 32px rgba(255, 46, 192, 0.12);
  text-align: center;
  font-size: clamp(1.28rem, 1.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
}

.solution-orbit-card {
  position: relative;
  min-height: 292px;
  padding: clamp(26px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 14% 9%, rgba(255, 46, 192, 0.18), transparent 34%),
    rgba(8, 0, 18, 0.76);
  border: 1px solid rgba(255, 46, 192, 0.54);
  border-radius: 20px;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.solution-orbit-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 46, 192, 0.95), rgba(255, 46, 192, 0));
}

.solution-card-1::after,
.solution-card-3::after {
  right: -76px;
}

.solution-card-2::after,
.solution-card-4::after {
  left: -76px;
  transform: rotate(180deg);
}

.solution-card-top {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.solution-card-top .card-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0;
  padding: 15px;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
    rgba(240, 0, 168, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 46, 192, 0.24);
}

.solution-card-top h3 {
  max-width: none;
  font-size: clamp(1.42rem, 1.8vw, 2rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.solution-rule {
  display: block;
  width: 54px;
  height: 3px;
  margin: 22px 0 0 96px;
  background: linear-gradient(90deg, var(--brand-support), var(--brand-accent), transparent);
  border-radius: 99px;
}

.solution-headline {
  margin-top: 28px;
  color: var(--brand-support);
  font-size: clamp(1.05rem, 1.08vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
}

.solution-orbit-card p:not(.solution-headline) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.56;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pillar-tile {
  display: grid;
  align-content: center;
  min-height: 176px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 5px solid var(--brand-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillar-tile h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.card-icon {
  margin-bottom: 18px;
  color: var(--brand-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card p,
.project-card p,
.team-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.bullet-panel {
  padding: 26px;
}

.bullet-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.bullet-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand-accent);
  border-radius: 50%;
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 26px;
}

.pillar-row span,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-accent);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 178px;
  padding: 24px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-step span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--brand-accent);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 51px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-accent), transparent);
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
}

.project-highlight {
  align-items: stretch;
}

.project-card {
  padding: 30px;
  border-top: 5px solid var(--brand-accent);
}

.large-project {
  min-height: 260px;
}

.pipeline-list {
  display: grid;
  gap: 18px;
}

.opportunity-card {
  display: grid;
  grid-template-columns: 88px minmax(260px, 1fr) minmax(340px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.opportunity-number {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(180deg, var(--brand-accent), var(--brand-secondary));
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.opportunity-main {
  padding: 26px 0;
}

.opportunity-main p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.opportunity-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-left: 1px solid var(--border);
}

.opportunity-meta div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 170px;
  padding: 22px 18px;
  border-right: 1px solid var(--border);
}

.opportunity-meta div:last-child {
  border-right: 0;
}

.opportunity-meta dt {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.opportunity-meta dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.review-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(240, 0, 168, 0.16);
  border: 1px solid rgba(255, 79, 210, 0.36);
  border-radius: 999px;
  font-weight: 800;
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 40px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 0, 168, 0.4), transparent 36%),
    linear-gradient(135deg, rgba(8, 0, 13, 0.98), rgba(48, 0, 64, 0.94));
  border-radius: var(--radius);
}

.cta-panel h2,
.cta-panel .eyebrow {
  color: #ffffff;
}

.cta-panel p {
  max-width: 740px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.team-card {
  padding: 20px;
}

.portrait {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(240, 0, 168, 0.18), rgba(107, 28, 164, 0.18)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(23, 0, 31, 0.05) 14px 16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.role {
  color: var(--brand-accent) !important;
  font-weight: 800;
}

.structure-platform-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 0, 13, 0.98) 0%, rgba(8, 0, 13, 0.9) 34%, rgba(47, 0, 63, 0.7) 100%),
    url("../img/photo-team.webp?v=2") center / cover no-repeat;
  border-block: 1px solid rgba(255, 79, 210, 0.18);
}

.structure-platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 58% 16%, rgba(240, 0, 168, 0.22), transparent 28%),
    radial-gradient(circle at 94% 76%, rgba(240, 0, 168, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(8, 0, 13, 0.22), rgba(8, 0, 13, 0.96));
}

.structure-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.56fr) minmax(760px, 1.44fr);
  gap: clamp(44px, 4.6vw, 74px);
  align-items: center;
}

.structure-copy h2 {
  max-width: 15ch;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(3rem, 4.45vw, 4.9rem);
  line-height: 1.02;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.structure-copy {
  max-width: 560px;
}

.structure-copy h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-support), transparent);
  border-radius: 999px;
}

.structure-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.7;
}

.org-chart {
  position: relative;
  display: grid;
  gap: 34px;
  padding: clamp(18px, 2vw, 24px);
}

.org-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 79, 210, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 79, 210, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 58% 38%, black, transparent 72%);
}

.org-node {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2.7vw, 34px);
  background:
    radial-gradient(circle at 14% 12%, rgba(240, 0, 168, 0.16), transparent 36%),
    rgba(8, 0, 13, 0.74);
  border: 1px solid rgba(255, 79, 210, 0.42);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255, 79, 210, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.42),
    inset 0 0 34px rgba(240, 0, 168, 0.07);
  backdrop-filter: blur(15px);
}

.org-parent {
  max-width: 660px;
  margin-inline: auto;
  padding-top: 50px;
  text-align: center;
}

.org-icon-badge {
  position: absolute;
  left: 50%;
  top: -45px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  transform: translateX(-50%);
  background: rgba(8, 0, 13, 0.92);
  border: 1px solid rgba(255, 79, 210, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(240, 0, 168, 0.28);
}

.org-icon-badge .card-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  color: var(--brand-support);
}

.org-parent h3 {
  margin-top: 4px;
  color: #ffffff;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: 0.96;
}

.org-parent h3::after,
.org-company h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-support), transparent);
  border-radius: 999px;
}

.org-parent::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -35px;
  width: 2px;
  height: 35px;
  background: linear-gradient(180deg, var(--brand-accent), rgba(255, 79, 210, 0.18));
  box-shadow: 0 0 16px rgba(240, 0, 168, 0.78);
}

.org-node p:not(.eyebrow) {
  max-width: 48rem;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.function-grid {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.function-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 79, 210, 0.2);
  border-radius: calc(var(--radius) - 2px);
}

.service-item {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 116px;
  padding: 18px 12px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item:last-child {
  border-right: 0;
}

.service-item .card-icon {
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--brand-accent);
}

.service-item strong {
  max-width: 9rem;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.18;
}

.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
}

.org-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 79, 210, 0.12), var(--brand-accent), rgba(255, 79, 210, 0.12));
  box-shadow: 0 0 16px rgba(240, 0, 168, 0.7);
}

.org-company {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.org-company::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -33px;
  width: 2px;
  height: 33px;
  background: linear-gradient(180deg, var(--brand-accent), rgba(255, 79, 210, 0.18));
  box-shadow: 0 0 16px rgba(240, 0, 168, 0.78);
}

.org-company > .card-icon {
  width: 72px;
  height: 72px;
  margin: 0;
  padding: 14px;
  color: var(--brand-support);
  background: rgba(240, 0, 168, 0.1);
  border: 1px solid rgba(255, 79, 210, 0.48);
  border-radius: 50%;
}

.org-company h3 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

.org-company h3::after {
  margin-inline: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-full {
  display: grid;
  gap: 28px;
}

.contact-full .section-header {
  max-width: 820px;
  margin-bottom: 0;
}

.contact-placeholder {
  padding: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  width: 100%;
}

.contact-form label:has(textarea),
.contact-form label:has(select),
.contact-form .button,
.form-status,
.spam-field {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #ffffff;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form select option {
  color: #17001f;
}

.contact-form textarea {
  resize: vertical;
}

.spam-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-accent);
  outline: 3px solid rgba(240, 0, 168, 0.18);
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.8);
  background: #000000;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 36px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 28px;
  align-content: start;
}

.footer-contact-block {
  justify-self: end;
  max-width: 360px;
}

.site-footer .brand-name,
.site-footer h2 {
  color: #ffffff;
}

.site-footer h2 {
  font-size: 1.15rem;
}

.site-footer .brand-note,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address,
.contact-placeholder address {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.55;
}

.site-footer address {
  max-width: 340px;
}

.footer-contact-info {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-info h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-contact-info p {
  margin: 0;
}

.footer-contact-info a {
  color: var(--brand-support);
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 34px;
  align-items: center;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact-block a {
  display: inline-flex;
  margin-top: 22px;
}

.footer-contact-block .footer-contact-info a {
  margin-top: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand-support);
}

@media (max-width: 1280px) {
  .solutions-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 18px;
    min-height: auto;
    padding: 0;
  }

  .solutions-orbit::before,
  .solution-orbit-card::after {
    display: none;
  }

  .solution-hub {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    order: -1;
    width: 100%;
    min-height: 148px;
    aspect-ratio: auto;
    transform: none;
    border-radius: var(--radius);
  }

  .solution-orbit-card {
    min-height: auto;
  }
}

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

  .hero-media {
    max-width: none;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 14px;
  }

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

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

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

  .structure-layout {
    grid-template-columns: 1fr;
  }

  .structure-copy {
    max-width: 760px;
  }

  .structure-copy h2 {
    max-width: 14ch;
  }

  .org-branches {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .org-branches::before,
  .org-company::before {
    display: none;
  }

  .synergy-layout {
    grid-template-columns: 1fr;
  }

  .synergy-copy {
    max-width: 760px;
  }

  .solutions-system {
    grid-template-columns: 1fr;
  }

  .solutions-intro-panel {
    max-width: 820px;
  }

  .solutions-intro-panel h2 {
    max-width: 14ch;
  }

  .opportunity-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
  }

  .opportunity-meta {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .opportunity-meta div {
    min-height: 120px;
    padding: 18px 12px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) - 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #000000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-grid {
    min-height: 560px;
    grid-template-columns: 1fr;
  }

  .split,
  .contact-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-block {
    justify-self: start;
  }

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

  .identity-cards.card-grid {
    grid-template-columns: 1fr;
  }

  .identity-cards .info-card {
    min-height: 280px;
  }

  .opportunity-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .org-branches {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .org-company {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .synergy-branches {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .synergy-top::after,
  .synergy-branches::before,
  .synergy-branches .synergy-node::before {
    display: none;
  }

  .solutions-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 0;
  }

  .solutions-orbit::before,
  .solution-orbit-card::after {
    display: none;
  }

  .solution-hub {
    position: relative;
    left: auto;
    top: auto;
    order: -1;
    width: 100%;
    min-height: 136px;
    aspect-ratio: auto;
    transform: none;
    border-radius: var(--radius);
    font-size: clamp(1.3rem, 5vw, 1.85rem);
  }

  .solution-orbit-card {
    min-height: auto;
    border-radius: var(--radius);
  }

  .org-parent::after,
  .org-branches::before,
  .org-company::before {
    display: none;
  }

  .opportunity-number {
    min-height: 68px;
  }

  .opportunity-main {
    padding: 22px;
  }

  .opportunity-meta {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunity-meta div {
    min-height: 104px;
  }

  .cta-actions {
    margin-top: 0;
  }

  body[data-page="home"] .home-panel,
  body[data-page="home"] .cta-section {
    display: block;
    min-height: auto;
    padding-block: 58px;
  }

  body[data-page="home"] .home-panel .section-header {
    margin-bottom: 22px;
  }

  body[data-page="home"] .home-panel .card-grid,
  body[data-page="home"] .home-panel .process {
    gap: 12px;
  }

  body[data-page="home"] .home-panel .info-card,
  body[data-page="home"] .home-panel .project-card,
  body[data-page="home"] .home-panel .process-step {
    min-height: auto;
    padding: 18px;
  }

  body[data-page="home"] .home-panel .card-icon {
    margin-bottom: 12px;
  }

  body[data-page="home"] .home-panel .process-step span {
    margin-bottom: 14px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
  }

  .brand-note {
    display: none;
  }

  .hero,
  .section {
    padding-block: 48px;
  }

  .hero {
    min-height: 620px;
  }

  body[data-page="home"] .home-panel,
  body[data-page="home"] .cta-section {
    padding-block: 48px;
  }

  body[data-page="home"] .home-panel .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-panel .card-grid.four,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    grid-template-columns: repeat(2, max-content);
    gap: 10px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .card-grid.four .info-card {
    min-height: 220px;
    padding: 24px;
  }

  .card-grid.four .info-card h3 {
    min-height: 0;
  }

  .identity-section {
    padding-block: 56px;
  }

  .identity-cards .info-card {
    min-height: 250px;
    padding: 26px;
  }

  .identity-cards .card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
  }

  .identity-cards .info-card::after {
    font-size: 5.4rem;
  }

  .function-grid,
  .function-grid.compact {
    grid-template-columns: 1fr;
  }

  .function-row {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .structure-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .org-chart {
    padding-inline: 0;
  }

  .org-parent {
    padding-top: 44px;
  }

  .org-icon-badge {
    width: 72px;
    height: 72px;
    top: -36px;
  }

  .org-company {
    grid-template-columns: 1fr;
  }

  .org-company > .card-icon {
    width: 58px;
    height: 58px;
  }

  .pillar-strip {
    grid-template-columns: 1fr;
  }

  .pillar-tile {
    min-height: 136px;
    padding: 22px;
  }

  .solutions-showcase {
    padding-block: 56px;
  }

  .solutions-intro-panel h2 {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .solutions-intro-panel p:not(.eyebrow) {
    font-size: 1rem;
  }

  .solution-card-top {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .solution-card-top .card-icon {
    width: 58px;
    height: 58px;
    padding: 12px;
  }

  .solution-card-top h3 {
    max-width: none;
    font-size: clamp(1.32rem, 7vw, 1.75rem);
  }

  .solution-rule {
    margin-left: 74px;
  }

  body[data-page="home"] .home-panel .info-card h3,
  body[data-page="home"] .home-panel .project-card h3,
  body[data-page="home"] .home-panel .process-step h3 {
    font-size: 1rem;
  }

  body[data-page="home"] .home-panel .info-card p,
  body[data-page="home"] .home-panel .project-card p,
  body[data-page="home"] .home-panel .process-step p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .opportunity-meta {
    grid-template-columns: 1fr;
  }

  .opportunity-meta div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .opportunity-meta div:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    gap: 28px;
    min-height: 520px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 18px 0;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(1.9rem, 10.5vw, 2.65rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  .hero-intro {
    max-width: 350px;
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .synergy-platform {
    background-position: 58% center;
  }

  .synergy-layout {
    gap: 24px;
  }

  .synergy-copy h2 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .synergy-map {
    gap: 16px;
    padding: 14px;
  }

  .synergy-node,
  .synergy-message {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .synergy-node .card-icon,
  .synergy-message .card-icon {
    width: 50px;
    height: 50px;
  }

  .card-grid,
  .process,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .project-card,
  .bullet-panel,
  .contact-form,
  .cta-panel {
    padding: 22px;
  }

  .process-step {
    min-height: unset;
  }

  .footer-grid nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final layout hardening: stable web sections, no slide-style overlap. */
.solutions-system {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
}

.solutions-intro-panel {
  max-width: 420px;
}

.solutions-intro-panel h2 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 4vw, 4.45rem);
  line-height: 1.04;
}

.solutions-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 0;
  padding: 0;
}

.solutions-orbit::before,
.solution-orbit-card::after {
  display: none;
}

.solution-hub {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 126px;
  aspect-ratio: auto;
  transform: none;
  border-radius: var(--radius);
  border-width: 1px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.solution-orbit-card {
  min-height: 268px;
  border-radius: var(--radius);
}

.solution-card-top {
  grid-template-columns: 68px minmax(0, 1fr);
}

.solution-card-top .card-icon {
  width: 68px;
  height: 68px;
}

.solution-card-top h3 {
  max-width: none;
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  overflow-wrap: normal;
  word-break: normal;
}

.structure-layout {
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
}

.structure-copy {
  max-width: 380px;
}

.structure-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 4vw, 4.4rem);
  line-height: 1.04;
}

.org-chart {
  gap: 22px;
  padding: 0;
}

.org-parent {
  max-width: none;
  padding: 38px 30px 28px;
}

.org-icon-badge {
  width: 72px;
  height: 72px;
  top: -36px;
}

.org-parent h3 {
  font-size: clamp(2.8rem, 4vw, 4.1rem);
}

.org-parent::after,
.org-branches::before,
.org-company::before {
  display: none;
}

.org-branches {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 0;
}

.org-company {
  min-height: 260px;
  align-content: start;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
}

.org-company > .card-icon {
  width: 64px;
  height: 64px;
}

.org-company h3 {
  max-width: none;
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1180px) {
  .solutions-system,
  .structure-layout {
    grid-template-columns: 1fr;
  }

  .solutions-intro-panel,
  .structure-copy {
    max-width: 760px;
  }

  .solutions-intro-panel h2,
  .structure-copy h2 {
    max-width: 15ch;
  }

  .org-branches {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .solutions-orbit {
    grid-template-columns: 1fr;
  }

  .solution-orbit-card,
  .org-company {
    min-height: auto;
  }

  .solution-card-top,
  .org-company {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .solution-card-top .card-icon,
  .org-company > .card-icon {
    width: 58px;
    height: 58px;
  }
}

/* Purpose, Vision, Mission: executive identity board */
.identity-section {
  padding-block: clamp(72px, 8vw, 112px);
}

.identity-section::before {
  inset: 0 0 auto;
  height: 240px;
  opacity: 0.48;
  background:
    radial-gradient(circle at 16% 48%, rgba(240, 0, 168, 0.26), transparent 30%),
    radial-gradient(circle at 82% 42%, rgba(216, 78, 255, 0.16), transparent 32%);
}

.identity-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: stretch;
}

.identity-lead {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 3.5vw, 38px) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.identity-lead h2 {
  max-width: 12ch;
  margin: 12px 0 0;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.75rem, 5vw, 5.35rem);
  line-height: 0.98;
}

.identity-lead p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: clamp(18px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.6;
}

.identity-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 48px);
}

.identity-proof span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 14px 16px;
  border-left: 3px solid var(--brand-accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.identity-statements {
  display: grid;
  gap: 14px;
}

.identity-row {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  min-height: 154px;
  padding: clamp(22px, 2.8vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 79, 210, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(240, 0, 168, 0.11), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022) 46%, rgba(0, 0, 0, 0.18)),
    rgba(6, 0, 10, 0.74);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.identity-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-coral), var(--brand-accent), var(--brand-support));
}

.identity-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.34;
}

.identity-row-feature {
  min-height: 198px;
  border-color: rgba(255, 79, 210, 0.42);
  background:
    radial-gradient(circle at 94% 20%, rgba(216, 78, 255, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(240, 0, 168, 0.14), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026) 46%, rgba(0, 0, 0, 0.2)),
    rgba(7, 0, 12, 0.78);
}

.identity-row-marker,
.identity-row-copy {
  position: relative;
  z-index: 1;
}

.identity-row-marker {
  display: grid;
  gap: 18px;
  align-content: start;
}

.identity-index {
  color: rgba(255, 255, 255, 0.46);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: 0;
}

.identity-row-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 79, 210, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
    rgba(240, 0, 168, 0.12);
  box-shadow: 0 0 24px rgba(240, 0, 168, 0.16);
}

.identity-row-icon .card-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--brand-support);
}

.identity-row-copy .eyebrow {
  margin: 0;
}

.identity-row-copy h3 {
  max-width: 45rem;
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.48rem, 2.1vw, 2.35rem);
  line-height: 1.14;
}

.identity-row-copy p:not(.eyebrow) {
  max-width: 45rem;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.58;
}

@media (max-width: 1060px) {
  .identity-board {
    grid-template-columns: 1fr;
  }

  .identity-lead {
    padding-top: 0;
  }

  .identity-lead h2 {
    max-width: 15ch;
  }

  .identity-proof {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .identity-lead h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .identity-proof {
    grid-template-columns: 1fr;
  }

  .identity-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .identity-row-marker {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .identity-row-icon {
    width: 56px;
    height: 56px;
  }

  .identity-row-icon .card-icon {
    width: 30px;
    height: 30px;
  }
}
