/*
Theme Name: Uhurutec
Theme URI: https://uhurutec.de/
Author: On The Wall
Author URI: https://onthewall.de/
Description: Custom hybrid WordPress theme for the Uhurutec relaunch.
Version: 1.6.43
Requires at least: 6.6
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: uhurutec
*/

@font-face {
  font-family: "Baloo 2";
  src: url("assets/fonts/Baloo2-VariableFont_wght-subset.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont_opsz,wght-subset.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Hero";
  src: url("assets/fonts/Inter-Regular-Hero.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/JetBrainsMono-VariableFont_wght-subset.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-background: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-strong: #ffffff;
  --color-surface-soft: rgba(248, 250, 252, 0.88);
  --color-border: #e2e8f0;
  --color-border-strong: rgba(15, 23, 42, 0.14);
  --color-text: #0f172a;
  --color-text-soft: #64748b;
  --color-text-muted: #94a3b8;
  --color-accent: #00b2e2;
  --color-accent-bright: #06dce9;
  --color-accent-strong: #1f4de7;
  --color-danger: #ef4444;
  --color-success: #22c55e;
  --color-black: #000000;
  --gradient-brand: linear-gradient(135deg, #06dce9 0%, #00b2e2 55%, #1f4de7 100%);
  --gradient-glow: radial-gradient(circle at top left, rgba(6, 220, 233, 0.16), transparent 38%);
  --radius-s: 0.9rem;
  --radius-m: 1.4rem;
  --radius-l: 2rem;
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 18px 48px rgba(15, 23, 42, 0.08);
  --content-width: min(72rem, calc(100vw - 2.5rem));
  --wide-width: min(82rem, calc(100vw - 2.5rem));
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --font-headline: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(31, 77, 231, 0.08), transparent 30%),
    radial-gradient(circle at left center, rgba(6, 220, 233, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(0, 178, 226, 0.18);
}

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

a {
  color: var(--color-accent-strong);
  text-decoration-color: rgba(31, 77, 231, 0.28);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  text-decoration-color: currentColor;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-s);
  background: #ffffff;
  color: var(--color-text);
  padding: 0.9rem 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 178, 226, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 178, 226, 0.14);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

code,
pre,
.eyebrow,
.chip,
.card__meta,
.detail-meta,
.metric-list__item strong,
.contact-form small {
  font-family: var(--font-mono);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
}

body.admin-bar {
  --site-header-sticky-top: 32px;
}

body.has-nav-open {
  overflow: hidden;
}

@media (max-width: 782px) {
  body.admin-bar {
    --site-header-sticky-top: 46px;
  }
}

.site-header {
  position: sticky;
  top: var(--site-header-sticky-top, 0px);
  z-index: 30;
  backdrop-filter: blur(22px) saturate(138%);
  -webkit-backdrop-filter: blur(22px) saturate(138%);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.78), rgba(255, 255, 255, 0.62));
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.site-header__inner,
.site-footer__inner,
.page-shell,
.content-section,
.archive-hero,
.detail-shell,
.footer-legal {
  width: var(--wide-width);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: min(17.5rem, 50vw);
  height: auto;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
  background: rgba(0, 178, 226, 0.08);
  color: var(--color-accent-strong);
  box-shadow: inset 0 0 0 1px rgba(0, 178, 226, 0.14);
  transform: translateY(-1px);
}

.site-main {
  padding: 0 0 5rem;
}

.home .site-main {
  padding-top: 2.5rem;
}

.page-shell,
.archive-hero,
.detail-shell {
  --breadcrumb-lift: clamp(2rem, 4vw, 3rem);
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  background:
    var(--gradient-glow),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.home .page-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #0f172a 0%, #133a73 18%, #00b2e2 64%, #06dce9 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 32px 72px rgba(31, 77, 231, 0.16);
}

.home .page-shell a,
.home .page-shell .lead,
.home .page-shell .has-lead-font-size {
  color: rgba(255, 255, 255, 0.92);
}

.home .page-shell .eyebrow,
.home .page-shell .eyebrow::before {
  color: rgba(255, 255, 255, 0.82);
  background: currentColor;
}

.page-shell + .content-section,
.archive-hero + .content-section,
.detail-shell + .content-section {
  margin-top: 2rem;
}

.page-shell__content,
.entry-content {
  max-width: 46rem;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.simple-page {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2rem) 0 5rem;
  isolation: isolate;
}

.simple-page__ambient {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(28px);
  opacity: 0.72;
  z-index: -1;
}

.simple-page__ambient--one {
  top: 0.75rem;
  left: max(1rem, calc((100vw - var(--content-width)) / 2));
  width: clamp(14rem, 24vw, 22rem);
  height: clamp(14rem, 24vw, 22rem);
  background: radial-gradient(circle, rgba(6, 220, 233, 0.22), transparent 72%);
}

.simple-page__ambient--two {
  right: max(1rem, calc((100vw - var(--content-width)) / 2));
  bottom: 1rem;
  width: clamp(16rem, 26vw, 24rem);
  height: clamp(16rem, 26vw, 24rem);
  background: radial-gradient(circle, rgba(31, 77, 231, 0.16), transparent 72%);
}

.simple-page__shell {
  --breadcrumb-lift: clamp(1.5rem, 4vw, 2.35rem);
  position: relative;
  width: min(var(--content-width), calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border: 1px solid rgba(179, 197, 220, 0.42);
  border-radius: calc(var(--radius-l) + 0.35rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.84)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 34%);
  box-shadow:
    0 26px 68px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.simple-page__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 220, 233, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(31, 77, 231, 0.08), transparent 30%);
  pointer-events: none;
}

.simple-page__hero,
.simple-page__content {
  position: relative;
  z-index: 1;
}

.simple-page__hero {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.simple-page__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.simple-page__eyebrow::before {
  content: none;
}

.simple-page__headline {
  margin: 0;
  color: transparent;
  background: linear-gradient(120deg, #0f172a 0%, #1f4de7 48%, #00b2e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
}

.simple-page__content {
  max-width: min(62rem, 100%);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(191, 210, 232, 0.56);
  border-radius: calc(var(--radius-m) + 0.2rem);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.simple-page__content > :first-child {
  margin-top: 0;
}

.simple-page__content > :last-child {
  margin-bottom: 0;
}

.simple-page__content p,
.simple-page__content li {
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.78;
}

.simple-page__content h2,
.simple-page__content h3,
.simple-page__content h4 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  color: var(--color-text);
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  line-height: 1.08;
}

.simple-page__content ul,
.simple-page__content ol {
  padding-left: 1.35rem;
}

.simple-page__content a {
  color: var(--color-accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.simple-page__content strong {
  color: var(--color-text);
}

.simple-page__content blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid rgba(0, 178, 226, 0.5);
  background: rgba(0, 178, 226, 0.06);
}

.simple-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
}

.simple-page__content th,
.simple-page__content td {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(191, 210, 232, 0.72);
  text-align: left;
}

.simple-page__content th {
  color: var(--color-text);
  background: rgba(15, 23, 42, 0.04);
}

.error404-page {
  position: relative;
  display: grid;
  gap: clamp(2.4rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.2rem) 0 clamp(4.5rem, 8vw, 7rem);
  isolation: isolate;
}

.error404-page::before,
.error404-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.error404-page::before {
  top: 2rem;
  left: max(-8rem, calc((100vw - var(--wide-width)) / 2 - 8rem));
  width: clamp(18rem, 32vw, 34rem);
  height: clamp(18rem, 32vw, 34rem);
  background: radial-gradient(circle, rgba(6, 220, 233, 0.18), transparent 68%);
  filter: blur(22px);
}

.error404-page::after {
  right: max(-10rem, calc((100vw - var(--wide-width)) / 2 - 10rem));
  bottom: 4rem;
  width: clamp(20rem, 36vw, 38rem);
  height: clamp(20rem, 36vw, 38rem);
  background: radial-gradient(circle, rgba(31, 77, 231, 0.13), transparent 70%);
  filter: blur(28px);
}

.error404-hero,
.error404-diagnostics,
.error404-blog {
  width: var(--wide-width);
  margin: 0 auto;
}

.error404-hero__grid,
.error404-blog__panel {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
}

.error404-hero__grid {
  grid-template-columns: 1fr;
}

.error404-blog__panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.82fr);
}

.error404-hero__copy {
  min-height: 0;
  padding: clamp(2rem, 5vw, 4.4rem);
  border: 1px solid rgba(191, 210, 232, 0.58);
  border-radius: calc(var(--radius-l) + 0.45rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 250, 255, 0.7)),
    radial-gradient(circle at 20% 18%, rgba(6, 220, 233, 0.15), transparent 34%),
    radial-gradient(circle at 82% 86%, rgba(31, 77, 231, 0.12), transparent 34%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.error404-hero__eyebrow,
.error404-hero__status,
.error404-section-heading p,
.error404-terminal,
.error404-root-card p,
.error404-fix,
.error404-blog__kicker,
.error404-blog__meta {
  font-family: var(--font-mono);
}

.error404-hero__eyebrow {
  margin: 0 0 1.1rem;
  color: var(--color-accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.error404-hero__status {
  display: inline-flex;
  margin: 0 0 1.4rem;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.error404-hero h1 {
  max-width: 16ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 0.96;
}

.error404-hero__lede {
  max-width: 42rem;
  color: var(--color-text-soft);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.68;
}

.error404-terminal {
  position: relative;
  overflow: hidden;
  max-width: 66rem;
  min-height: 0;
  margin-top: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgba(0, 178, 226, 0.24);
  border-radius: 1.45rem;
  background:
    linear-gradient(135deg, rgba(5, 10, 18, 0.96), rgba(6, 17, 27, 0.98)),
    radial-gradient(circle at top right, rgba(6, 220, 233, 0.18), transparent 36%);
  color: #d8e6f5;
  box-shadow:
    0 30px 78px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.error404-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 8px),
    linear-gradient(120deg, rgba(0, 178, 226, 0.12), transparent 46%);
  opacity: 0.45;
  pointer-events: none;
}

.error404-terminal__bar,
.error404-terminal__body {
  position: relative;
  z-index: 1;
}

.error404-terminal__bar {
  display: flex;
  gap: 0.42rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.error404-terminal__bar span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 18px rgba(6, 220, 233, 0.42);
}

.error404-terminal__bar span:nth-child(2) {
  background: #1f4de7;
}

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

.error404-terminal__body {
  padding: clamp(1.15rem, 2.6vw, 1.75rem);
}

.error404-terminal__body p {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.error404-terminal__body .error404-terminal__label {
  color: #6ce8f1;
  text-transform: uppercase;
}

.error404-terminal pre {
  max-width: 100%;
  margin: 0;
  overflow: auto;
  color: #b7c8dd;
  font-size: clamp(0.68rem, 1vw, 0.8rem);
  line-height: 1.75;
  white-space: pre;
}

.error404-diagnostics {
  display: grid;
  gap: 1.15rem;
}

.error404-section-heading {
  display: grid;
  gap: 0.5rem;
}

.error404-section-heading p,
.error404-blog__kicker {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.error404-section-heading h2,
.error404-blog h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.error404-root-card {
  min-height: 11rem;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  border: 1px solid rgba(191, 210, 232, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.72)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 45%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.error404-root-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 178, 226, 0.56);
  box-shadow: 0 26px 58px rgba(0, 178, 226, 0.12);
}

.error404-root-card p {
  margin: 0 0 0.75rem;
  color: var(--color-accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error404-root-card span {
  display: block;
  color: var(--color-text-soft);
  line-height: 1.62;
}

.error404-fixes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.45rem;
}

.error404-fix {
  display: grid;
  gap: 0.45rem;
  min-height: 6.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.error404-fix:hover,
.error404-fix:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 77, 231, 0.28);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.error404-fix code {
  color: var(--color-accent-strong);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.error404-fix span {
  color: var(--color-text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.error404-blog__panel {
  position: relative;
  overflow: hidden;
  align-items: center;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(191, 210, 232, 0.66);
  border-radius: calc(var(--radius-l) + 0.45rem);
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.82));
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.08);
}

.error404-blog__copy {
  display: grid;
  gap: 0.75rem;
  padding: clamp(0.4rem, 2vw, 1.6rem);
}

.error404-blog__panel--no-media {
  grid-template-columns: 1fr;
}

.error404-blog h2,
.error404-blog h3 {
  margin: 0;
}

.error404-blog h3 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.error404-blog h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.error404-blog__copy > p:not(.error404-blog__kicker) {
  max-width: 38rem;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.68;
}

.error404-blog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error404-blog__meta span + span::before {
  content: "/";
  margin-right: 0.55rem;
  color: var(--color-accent);
}

.error404-blog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.error404-blog__media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(191, 210, 232, 0.54);
  background: rgba(15, 23, 42, 0.06);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.12);
  text-decoration: none;
}

.error404-blog__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.error404-blog__media:hover img,
.error404-blog__media:focus-visible img {
  transform: scale(1.035);
}

.thankyou-page .error404-hero__copy {
  border-color: rgba(34, 197, 94, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 255, 0.74)),
    radial-gradient(circle at 18% 16%, rgba(34, 197, 94, 0.12), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(6, 220, 233, 0.14), transparent 36%);
}

.thankyou-page .error404-hero__eyebrow,
.thankyou-log__level--ok,
.thankyou-page .error404-root-card p {
  color: var(--color-success);
}

.thankyou-page .error404-hero h1 {
  max-width: 20ch;
  font-size: clamp(2.45rem, 4.65vw, 4.35rem);
  line-height: 1.01;
}

.thankyou-page .error404-hero__lede {
  max-width: 60rem;
}

.thankyou-terminal {
  max-width: 100%;
}

.thankyou-log {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thankyou-log li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: start;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.035);
}

.thankyou-log__time,
.thankyou-log__message,
.thankyou-log__status {
  color: #b7c8dd;
  font-size: clamp(0.64rem, 0.9vw, 0.78rem);
  line-height: 1.5;
}

.thankyou-log__level {
  margin-right: 0.4rem;
  color: #6ce8f1;
  font-weight: 900;
}

.thankyou-log__level--info {
  color: #6ce8f1;
}

.thankyou-log__level--pend {
  color: #fbbf24;
}

.thankyou-log__status {
  color: #8ca0bb;
  font-weight: 900;
  justify-self: end;
}

.thankyou-diagnostics {
  scroll-margin-top: 7rem;
}

.thankyou-page .error404-fix:nth-child(1):hover,
.thankyou-page .error404-fix:nth-child(1):focus-visible {
  border-color: rgba(34, 197, 94, 0.42);
  box-shadow: 0 18px 46px rgba(34, 197, 94, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--color-accent-strong);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.home .page-shell h1,
.home .page-shell h2,
.home .page-shell h3 {
  color: #ffffff;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

p,
ul,
ol {
  margin: 0 0 1.1rem;
}

.has-lead-font-size,
.lead {
  color: var(--color-text-soft);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.content-section {
  margin-top: 2rem;
  padding: clamp(1.7rem, 4vw, 2.3rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.section-heading p {
  max-width: 42rem;
  color: var(--color-text-soft);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(12, 1fr);
}

.card,
.contact-panel,
.detail-panel,
.notice {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.card {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
}

.card--wide {
  grid-column: span 6;
}

.card--full {
  grid-column: 1 / -1;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: calc(var(--radius-m) - 0.35rem);
  background: var(--color-surface);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 178, 226, 0.08);
  color: var(--color-accent-strong);
  font-size: 0.76rem;
  font-weight: 600;
}

.button-row,
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button-link,
.wp-block-button__link,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 178, 226, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button-link:hover,
.button-link:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow: 0 16px 40px rgba(31, 77, 231, 0.24);
}

.button-link--ghost,
.is-style-outline .wp-block-button__link {
  background: #ffffff;
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px var(--color-border-strong);
}

.button-link--ghost:hover,
.button-link--ghost:focus-visible,
.is-style-outline .wp-block-button__link:hover,
.is-style-outline .wp-block-button__link:focus-visible {
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px rgba(31, 77, 231, 0.2);
}

.home .page-shell .button-link--ghost,
.home .page-shell .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-block {
  display: grid;
  gap: 1.4rem;
}

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

.archive-list,
.blog-list {
  display: grid;
  gap: 1.2rem;
}

.detail-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  gap: 1.5rem;
}

.detail-layout .entry-content,
.contact-grid .entry-content {
  max-width: none;
}

.detail-panel h3,
.contact-panel h3 {
  margin-bottom: 0.6rem;
}

.metric-list {
  display: grid;
  gap: 1rem;
}

.metric-list__item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.team-card {
  display: grid;
  gap: 1rem;
}

.team-card__avatar {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: linear-gradient(135deg, rgba(6, 220, 233, 0.25), rgba(31, 77, 231, 0.12));
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-text);
  font-family: var(--font-headline);
  font-size: 2.6rem;
  font-weight: 700;
}

.notice {
  margin-bottom: 1.2rem;
}

.notice--success {
  border-left: 4px solid var(--color-success);
}

.notice--error {
  border-left: 4px solid var(--color-danger);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--color-text-soft);
  font-weight: 600;
}

.contact-form small {
  color: var(--color-text-muted);
  font-size: 0.74rem;
}

.is-hidden {
  display: none !important;
}

.site-footer {
  width: 100%;
  margin-top: 0;
  padding: 0;
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  gap: 2.2rem;
  padding: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(1.15rem, 3vw, 1.6rem);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  position: relative;
  overflow: hidden;
}

.site-footer__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(6, 220, 233, 0.8), rgba(31, 77, 231, 0.2), transparent 84%);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 6rem);
  width: 100%;
  max-width: 88rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.site-footer__identity {
  display: grid;
  gap: 1.9rem;
}

.site-footer__brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.site-footer__logo {
  width: auto;
  height: auto;
  max-width: min(18rem, 100%);
  max-height: 4.75rem;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.site-footer__logo--dark {
  display: none;
}

.site-footer__contacts {
  display: grid;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
}

.site-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  color: #0f172a;
}

.site-footer__contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer__contact-copy {
  display: grid;
  gap: 0.15rem;
  color: #1e293b;
  font-size: 1.06rem;
  line-height: 1.45;
}

.site-footer__contact-copy span,
.site-footer__contact-copy a {
  color: inherit;
  text-decoration: none;
}

.site-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.site-footer__menu-column {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.site-footer__menu-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__menu {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  color: #1e293b;
  font-size: 1.02rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  color: var(--color-accent-strong);
  transform: translateX(2px);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.15rem;
  width: 100%;
  max-width: 88rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.site-footer__legal,
.site-footer__credit {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
}

.site-footer__credit a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: var(--color-accent-strong);
}

.empty-state {
  color: var(--color-text-muted);
}

pre {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-m);
  overflow: auto;
  background: var(--color-black);
  color: #ffffff;
}

@media (max-width: 960px) {
  .card,
  .card--wide,
  .detail-layout,
  .contact-grid,
  .team-grid {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-main {
    padding-top: 1.6rem;
  }

  h1 {
    font-size: clamp(2.6rem, 10vw, 4.2rem);
  }

  .site-header__inner,
  .page-shell,
  .archive-hero,
  .detail-shell,
  .content-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-nav__list {
    gap: 0.2rem;
  }

  .site-nav__list a {
    padding-inline: 0.75rem;
  }
}

@media (max-width: 1080px) {
  .site-footer__main,
  .site-footer__menus {
    grid-template-columns: 1fr;
  }

  .site-footer__menus {
    gap: 1.4rem;
  }
}

@media (max-width: 760px) {
  .site-footer__bottom {
    flex-direction: column;
  }
}

.service-page,
.service-archive-page {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.uhurutec-breadcrumb {
  position: relative;
  margin: 0 0 clamp(1.45rem, 2.8vw, 2.15rem);
  padding-bottom: 0.95rem;
}

.uhurutec-breadcrumb:first-child {
  margin-top: calc(var(--breadcrumb-lift, 0rem) * -1);
}

.uhurutec-breadcrumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(6, 220, 233, 0.82), rgba(31, 77, 231, 0.38), rgba(31, 77, 231, 0));
}

.uhurutec-breadcrumb__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}

.uhurutec-breadcrumb__back,
.uhurutec-breadcrumb__current {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.uhurutec-breadcrumb__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8ea0b7;
  text-decoration: none;
}

.uhurutec-breadcrumb__back:hover,
.uhurutec-breadcrumb__back:focus-visible {
  color: var(--color-accent-strong);
}

.uhurutec-breadcrumb__current {
  color: #9daec1;
}

.service-hero,
.service-section {
  width: var(--wide-width);
  margin: 0 auto;
}

.service-hero {
  --breadcrumb-lift: 4.75rem;
  padding: 4.75rem 0 3.5rem;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.service-hero__copy {
  max-width: 34rem;
}

.service-kicker,
.service-section__label,
.service-component-tag,
.service-contact-band__label,
.service-terminal__prefix,
.service-terminal__command,
.service-specs__label {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hero__title {
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 6.8vw, 5.8rem);
  line-height: 0.94;
}

.service-hero__title span {
  display: block;
}

.service-hero__title-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-hero__lede {
  max-width: 32rem;
  margin-bottom: 1rem;
  color: var(--color-text-soft);
  font-size: 1.15rem;
}

.service-component-tag {
  display: inline-flex;
  color: var(--color-text-muted);
}

.service-hero__actions {
  margin-top: 1.6rem;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.28);
  background: #ffffff;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.service-button:hover,
.service-button:focus-visible {
  transform: translateY(-1px);
  color: var(--color-accent-strong);
  border-color: rgba(31, 77, 231, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.service-button--icon {
  gap: 0.7rem;
}

.service-button--outline {
  min-width: 8.6rem;
}

.service-button--filled {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(31, 77, 231, 0.18);
}

.service-button--filled:hover,
.service-button--filled:focus-visible {
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(31, 77, 231, 0.22);
}

.service-archive-page {
  display: grid;
  gap: 0;
}

.service-archive__hero,
.service-archive__teasers,
.service-archive__catalog {
  width: var(--wide-width);
  margin: 0 auto;
}

.service-archive__hero {
  --breadcrumb-lift: clamp(4rem, 7vw, 6rem);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
}

.service-archive__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.service-archive__hero-copy {
  max-width: 38rem;
}

.service-archive__hero-title {
  margin: 0 0 1.3rem;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: 0.92;
}

.service-archive__hero-title span,
.service-promo-card__title span {
  display: block;
}

.service-archive__hero-accent,
.service-promo-card__accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-archive__hero-intro {
  max-width: 35rem;
  margin: 0 0 1rem;
  color: #6c7e97;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.6;
}

.service-archive__hero-meta {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.service-archive__hero-meta .service-component-tag {
  margin: 0;
}

.service-archive__hero-art {
  display: grid;
  place-items: center;
}

.service-archive__hero-art img {
  width: min(24rem, 100%);
  opacity: 0.92;
}

.service-archive__teasers {
  padding: 0 0 clamp(3rem, 5vw, 4.6rem);
}

.service-archive__section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.service-archive__section-head--compact {
  margin-bottom: 1.5rem;
}

.service-archive__section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.service-archive__section-head p:last-child {
  margin: 0;
  color: #6f819b;
}

.service-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.1rem);
}

.service-promo-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.service-promo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.service-promo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gradient-brand);
}

.service-promo-card__media {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(circle at center, rgba(6, 220, 233, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 247, 250, 0.94));
  text-decoration: none;
}

.service-promo-card__media img {
  width: min(14rem, 100%);
  height: auto;
  object-fit: contain;
}

.service-promo-card__body {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.service-promo-card__eyebrow,
.service-promo-card__component,
.service-archive-card__meta,
.service-promo-card__spec strong,
.service-archive-card__cta {
  font-family: var(--font-mono);
}

.service-promo-card__eyebrow,
.service-promo-card__component,
.service-archive-card__meta {
  margin: 0;
  color: #8ea0b7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-promo-card__title {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.96;
}

.service-promo-card__summary {
  margin: 0;
  color: #61748f;
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-promo-card__specs {
  display: grid;
  gap: 0.6rem;
}

.service-promo-card__spec {
  display: grid;
  gap: 0.14rem;
}

.service-promo-card__spec strong {
  color: var(--color-accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-promo-card__spec span {
  color: #24344f;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-promo-card .service-button {
  justify-self: start;
  margin-top: 0.25rem;
}

.service-archive__catalog {
  padding: 0 0 clamp(4rem, 6vw, 5.5rem);
}

.service-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-archive-card {
  min-height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-archive-card:hover,
.service-archive-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(31, 77, 231, 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-archive-card__link {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.4rem 1.45rem 1.5rem;
  color: inherit;
  text-decoration: none;
}

.service-archive-card__meta {
  color: var(--color-accent);
}

.service-archive-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.service-archive-card p {
  margin: 0;
  color: #6c7d95;
  line-height: 1.65;
}

.service-archive-card__cta {
  display: inline-flex;
  margin-top: auto;
  color: var(--color-text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
 }

.service-hero__media {
  display: grid;
  place-items: center;
}

.service-hero__media img {
  width: min(30rem, 100%);
  opacity: 0.26;
}

.service-section {
  padding: 2rem 0 4rem;
}

.service-section--growth {
  padding-top: 0;
}

.service-section__head {
  max-width: 30rem;
  margin-bottom: 2rem;
}

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

.service-feature-card {
  display: grid;
  grid-template-rows: auto 2.2rem minmax(3.4rem, auto) auto;
  gap: 0.8rem;
  align-content: start;
  align-items: start;
}

.service-feature-card__topline {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.62);
}

.service-feature-card__icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  height: 2.2rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1;
}

.service-feature-card__icon img {
  width: 2.8rem;
  height: 1.8rem;
  object-fit: contain;
  object-position: left top;
}

.service-feature-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
  align-self: start;
}

.service-feature-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.83rem;
  line-height: 1.55;
}

.service-feature-card__copy {
  display: grid;
  gap: 0.55rem;
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.83rem;
  line-height: 1.55;
}

.service-feature-card__copy ul,
.service-feature-card__copy ol {
  margin: 0;
  padding-left: 1.1rem;
}

.service-feature-card__copy li + li {
  margin-top: 0.28rem;
}

.service-feature-card__copy a {
  color: var(--color-accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.service-section--specs {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.2rem 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(242, 246, 250, 0.98));
}

.service-specs {
  width: var(--wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3.6rem;
}

.service-specs__intro {
  max-width: 27rem;
}

.service-specs__intro p {
  color: var(--color-text-soft);
}

.service-specs__table {
  display: grid;
}

.service-specs__row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.9fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.service-specs__row:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.26);
}

.service-specs__value {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.6;
  text-transform: none;
}

.service-section--story {
  padding-bottom: 0;
}

.service-story__head {
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

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

.service-story__column p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
}

.service-story__column p + p {
  margin-top: 1rem;
}

.service-story__column a {
  color: var(--color-accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.service-story__column a:hover,
.service-story__column a:focus-visible {
  color: var(--color-accent);
}

.service-grass-band {
  margin-top: 2.8rem;
  overflow: hidden;
}

.service-grass-band img {
  width: 100%;
  height: auto;
  opacity: 0.18;
}

.service-contact-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 7rem 0 8rem;
  background: #000000;
}

.service-contact-band__inner {
  width: min(32rem, calc(100vw - 2rem));
  margin: 0 auto;
}

.service-contact-band__head {
  margin-bottom: 2rem;
  text-align: center;
}

.service-contact-band__head h2 {
  color: #ffffff;
}

.service-contact-band__label {
  color: rgba(148, 163, 184, 0.76);
}

.service-terminal {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(28, 28, 28, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.service-terminal__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-terminal__prefix {
  color: var(--color-accent);
}

.service-terminal__command {
  color: #ffffff;
}

.service-terminal__notice {
  margin-top: 1rem;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.service-terminal__form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.service-terminal__field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
}

.service-terminal__field span {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.service-terminal__field input,
.service-terminal__field textarea {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 0.6rem 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.service-terminal__field input::placeholder,
.service-terminal__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.service-terminal__field input:focus,
.service-terminal__field textarea:focus {
  border-color: rgba(6, 220, 233, 0.8);
  box-shadow: none;
}

.service-terminal__field--textarea {
  align-items: start;
}

.service-terminal__field textarea {
  min-height: 8.5rem;
}

.service-button--terminal {
  width: 100%;
  margin-top: 0.5rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
}

.service-button--terminal:hover,
.service-button--terminal:focus-visible {
  color: #ffffff;
  border-color: rgba(6, 220, 233, 0.6);
  box-shadow: 0 16px 36px rgba(0, 178, 226, 0.12);
}

@media (max-width: 960px) {
  .service-archive__hero-grid,
  .service-promo-grid,
  .service-promo-card,
  .service-archive__grid,
  .service-hero__grid,
  .service-growth-grid,
  .service-specs,
  .service-story__grid {
    grid-template-columns: 1fr;
  }

  .service-specs__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .service-section--specs {
    padding-inline: 0.85rem;
  }

  .service-specs {
    width: min(100%, calc(100vw - 1.7rem));
    gap: 2rem;
    padding-inline: 0.18rem;
  }

  .service-archive__hero,
  .service-hero {
    padding-top: 3.2rem;
  }
}

@media (max-width: 760px) {
  .service-archive__hero,
  .service-archive__teasers,
  .service-archive__catalog,
  .service-hero,
  .service-section {
    width: min(100%, calc(100vw - 2rem));
  }

  .service-archive__hero-title,
  .service-hero__title {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .service-contact-band {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

html[data-theme="dark"] {
  --color-background: #040b12;
  --color-surface: #08131d;
  --color-surface-strong: #0d1b28;
  --color-surface-soft: rgba(8, 19, 29, 0.9);
  --color-border: rgba(148, 163, 184, 0.18);
  --color-border-strong: rgba(148, 163, 184, 0.28);
  --color-text: #f8fafc;
  --color-text-soft: #c7d2e4;
  --color-text-muted: #94a3b8;
  --shadow-soft: 0 28px 80px rgba(2, 6, 23, 0.56);
  --shadow-card: 0 20px 48px rgba(2, 6, 23, 0.46);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top right, rgba(31, 77, 231, 0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(6, 220, 233, 0.12), transparent 28%),
    linear-gradient(180deg, #040b12 0%, #08131d 100%);
}

html[data-theme="dark"] .site-footer__inner {
  border-top-color: rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 19, 29, 0.96), rgba(10, 22, 34, 0.98));
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .site-footer__inner::before,
html[data-theme="dark"] .site-footer__bottom {
  border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .site-footer__logo--light {
  display: none;
}

html[data-theme="dark"] .site-footer__logo--dark {
  display: inline-block;
}

html[data-theme="dark"] .site-footer__contact-icon,
html[data-theme="dark"] .site-footer__menu-title,
html[data-theme="dark"] .site-footer__contact-copy,
html[data-theme="dark"] .site-footer__menu a,
html[data-theme="dark"] .site-footer__credit a {
  color: #f8fbff;
}

html[data-theme="dark"] .site-footer__legal,
html[data-theme="dark"] .site-footer__credit {
  color: #a8b7ca;
}

html[data-theme="dark"] .site-footer__menu a:hover,
html[data-theme="dark"] .site-footer__menu a:focus-visible,
html[data-theme="dark"] .site-footer__credit a:hover,
html[data-theme="dark"] .site-footer__credit a:focus-visible {
  color: #7be7ff;
}

html[data-theme="dark"] a {
  color: #7be7ff;
  text-decoration-color: rgba(6, 220, 233, 0.28);
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea {
  background: rgba(8, 19, 29, 0.94);
  color: var(--color-text);
  border-color: var(--color-border);
}

html[data-theme="dark"] .page-shell,
html[data-theme="dark"] .archive-hero,
html[data-theme="dark"] .detail-shell {
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(8, 19, 29, 0.96), rgba(13, 27, 40, 0.98));
}

html[data-theme="dark"] .simple-page__ambient--one {
  background: radial-gradient(circle, rgba(6, 220, 233, 0.18), transparent 72%);
}

html[data-theme="dark"] .simple-page__ambient--two {
  background: radial-gradient(circle, rgba(31, 77, 231, 0.22), transparent 72%);
}

html[data-theme="dark"] .simple-page__shell {
  border-color: rgba(75, 105, 138, 0.36);
  background:
    linear-gradient(135deg, rgba(7, 18, 29, 0.92), rgba(11, 25, 38, 0.84)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 34%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .simple-page__shell::before {
  background:
    linear-gradient(120deg, rgba(6, 220, 233, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(31, 77, 231, 0.14), transparent 32%);
}

html[data-theme="dark"] .simple-page__eyebrow {
  color: #8ca0bb;
}

html[data-theme="dark"] .simple-page__headline {
  background: linear-gradient(120deg, #f8fbff 0%, #86cbff 46%, #06dce9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-theme="dark"] .simple-page__content {
  border-color: rgba(75, 105, 138, 0.36);
  background: rgba(7, 18, 29, 0.68);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .simple-page__content p,
html[data-theme="dark"] .simple-page__content li {
  color: #b8c6d8;
}

html[data-theme="dark"] .simple-page__content h2,
html[data-theme="dark"] .simple-page__content h3,
html[data-theme="dark"] .simple-page__content h4,
html[data-theme="dark"] .simple-page__content strong {
  color: #f8fbff;
}

html[data-theme="dark"] .simple-page__content a {
  color: #86cbff;
}

html[data-theme="dark"] .simple-page__content blockquote {
  border-left-color: rgba(6, 220, 233, 0.56);
  background: rgba(6, 220, 233, 0.08);
}

html[data-theme="dark"] .simple-page__content th,
html[data-theme="dark"] .simple-page__content td {
  border-color: rgba(75, 105, 138, 0.38);
}

html[data-theme="dark"] .simple-page__content th {
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .error404-page::before {
  background: radial-gradient(circle, rgba(6, 220, 233, 0.16), transparent 68%);
}

html[data-theme="dark"] .error404-page::after {
  background: radial-gradient(circle, rgba(31, 77, 231, 0.18), transparent 70%);
}

html[data-theme="dark"] .error404-hero__copy {
  border-color: rgba(75, 105, 138, 0.36);
  background:
    linear-gradient(135deg, rgba(7, 18, 29, 0.84), rgba(10, 25, 39, 0.7)),
    radial-gradient(circle at 20% 18%, rgba(6, 220, 233, 0.13), transparent 34%),
    radial-gradient(circle at 82% 86%, rgba(31, 77, 231, 0.18), transparent 34%);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .error404-hero__eyebrow,
html[data-theme="dark"] .error404-root-card p,
html[data-theme="dark"] .error404-fix code {
  color: #6ce8f1;
}

html[data-theme="dark"] .error404-hero__status,
html[data-theme="dark"] .error404-section-heading p,
html[data-theme="dark"] .error404-blog__kicker,
html[data-theme="dark"] .error404-blog__meta {
  color: #8ca0bb;
}

html[data-theme="dark"] .error404-hero__lede,
html[data-theme="dark"] .error404-root-card span,
html[data-theme="dark"] .error404-fix span,
html[data-theme="dark"] .error404-blog__copy > p:not(.error404-blog__kicker) {
  color: #b8c6d8;
}

html[data-theme="dark"] .error404-terminal {
  border-color: rgba(6, 220, 233, 0.28);
  background:
    linear-gradient(135deg, rgba(3, 8, 14, 0.98), rgba(5, 15, 25, 0.98)),
    radial-gradient(circle at top right, rgba(6, 220, 233, 0.2), transparent 36%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .error404-root-card,
html[data-theme="dark"] .error404-fix,
html[data-theme="dark"] .error404-blog__panel {
  border-color: rgba(75, 105, 138, 0.34);
  background:
    linear-gradient(135deg, rgba(7, 18, 29, 0.82), rgba(11, 25, 38, 0.66)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.08), transparent 45%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .error404-root-card:hover,
html[data-theme="dark"] .error404-fix:hover,
html[data-theme="dark"] .error404-fix:focus-visible {
  border-color: rgba(6, 220, 233, 0.45);
  background:
    linear-gradient(135deg, rgba(8, 22, 34, 0.92), rgba(12, 31, 47, 0.78)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 45%);
  box-shadow: 0 28px 66px rgba(0, 178, 226, 0.1);
}

html[data-theme="dark"] .error404-blog h3 a {
  color: #f8fbff;
}

html[data-theme="dark"] .error404-blog__media {
  border-color: rgba(75, 105, 138, 0.34);
  background: rgba(3, 8, 14, 0.5);
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .thankyou-page .error404-hero__copy {
  border-color: rgba(34, 197, 94, 0.32);
  background:
    linear-gradient(135deg, rgba(6, 18, 28, 0.9), rgba(9, 24, 37, 0.76)),
    radial-gradient(circle at 18% 16%, rgba(34, 197, 94, 0.13), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(6, 220, 233, 0.16), transparent 36%);
}

html[data-theme="dark"] .thankyou-page .error404-hero__eyebrow,
html[data-theme="dark"] .thankyou-page .error404-root-card p,
html[data-theme="dark"] .thankyou-log__level--ok {
  color: #5ee685;
}

html[data-theme="dark"] .thankyou-log li {
  border-color: rgba(108, 232, 241, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

html[data-theme="dark"] .thankyou-log__time,
html[data-theme="dark"] .thankyou-log__message {
  color: #c5d4e5;
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .service-growth-card,
html[data-theme="dark"] .service-terminal,
html[data-theme="dark"] .service-specs__table,
html[data-theme="dark"] .service-promo-card,
html[data-theme="dark"] .service-archive-card,
html[data-theme="dark"] .notice {
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .content-section,
html[data-theme="dark"] .card,
html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .detail-panel,
html[data-theme="dark"] .notice {
  border-color: rgba(75, 105, 138, 0.28);
  background:
    linear-gradient(180deg, rgba(8, 19, 29, 0.92), rgba(11, 24, 37, 0.96)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.08), transparent 36%);
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.28);
}

html[data-theme="dark"] .lead,
html[data-theme="dark"] .detail-layout .entry-content,
html[data-theme="dark"] .detail-panel,
html[data-theme="dark"] .metric-list__item span,
html[data-theme="dark"] .content-section p,
html[data-theme="dark"] .content-section li {
  color: #b8c6d8;
}

html[data-theme="dark"] .detail-panel h3,
html[data-theme="dark"] .card h3,
html[data-theme="dark"] .content-section h2,
html[data-theme="dark"] .content-section h3,
html[data-theme="dark"] .content-section strong {
  color: #f8fbff;
}

html[data-theme="dark"] .detail-panel a,
html[data-theme="dark"] .content-section a {
  color: #86cbff;
}

html[data-theme="dark"] .service-archive__hero-intro,
html[data-theme="dark"] .service-archive__section-head p:last-child,
html[data-theme="dark"] .service-promo-card__summary,
html[data-theme="dark"] .service-archive-card p,
html[data-theme="dark"] .service-promo-card__spec span {
  color: #b8c6d8;
}

html[data-theme="dark"] .service-promo-card,
html[data-theme="dark"] .service-archive-card {
  background: rgba(8, 19, 29, 0.9);
}

html[data-theme="dark"] .service-promo-card__media {
  background:
    radial-gradient(circle at center, rgba(6, 220, 233, 0.16), transparent 56%),
    linear-gradient(180deg, rgba(11, 27, 40, 0.94), rgba(6, 15, 24, 0.98));
}

html[data-theme="dark"] .service-promo-card__title,
html[data-theme="dark"] .service-archive-card h3,
html[data-theme="dark"] .service-archive-card__cta {
  color: #f8fbff;
}

html[data-theme="dark"] .service-promo-card__eyebrow,
html[data-theme="dark"] .service-promo-card__component,
html[data-theme="dark"] .service-archive-card__meta {
  color: #8ea2bb;
}

html[data-theme="dark"] .service-section--specs {
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(8, 19, 29, 0.97), rgba(11, 24, 37, 0.99));
}

html[data-theme="dark"] .service-specs__intro h2,
html[data-theme="dark"] .service-specs__value {
  color: #f8fbff;
}

html[data-theme="dark"] .service-specs__intro p,
html[data-theme="dark"] .service-specs__label {
  color: #a8b7ca;
}

html[data-theme="dark"] .service-specs__table {
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-right: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  border-left: 0;
  background: rgba(8, 19, 29, 0.92);
  box-shadow: 0 22px 52px rgba(2, 6, 23, 0.32);
}

html[data-theme="dark"] .service-specs__row {
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .service-specs__row:first-child {
  border-top-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .service-section--specs .service-button {
  border-color: rgba(0, 178, 226, 0.78);
  background: linear-gradient(135deg, rgba(0, 153, 199, 0.98), rgba(0, 178, 226, 0.98));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 178, 226, 0.2);
}

html[data-theme="dark"] .service-section--specs .service-button:hover,
html[data-theme="dark"] .service-section--specs .service-button:focus-visible {
  border-color: rgba(103, 215, 255, 0.84);
  background: linear-gradient(135deg, rgba(0, 178, 226, 1), rgba(31, 77, 231, 0.98));
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 178, 226, 0.24);
}

.site-header {
  top: var(--site-header-sticky-top, 0px);
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

html[data-theme="dark"] .site-header {
  background: linear-gradient(135deg, rgba(8, 19, 29, 0.78), rgba(11, 27, 41, 0.56));
  border-bottom-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.36);
}

.site-header__frame {
  width: min(calc(100vw - 2.5rem), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  padding: 1rem 0 0.85rem;
}

.site-header__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1.625rem;
}

.site-header__mobile-top {
  display: none;
}

.site-header__utility,
.site-header__nav-bar {
  width: 100%;
}

.site-header__utility-inner,
.site-header__nav-inner {
  width: 100%;
  margin: 0;
}

.site-header__backdrop {
  display: none;
}

.site-header__utility-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.header-cluster {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 1.12rem;
}

.header-cluster + .header-cluster {
  padding-left: 0.9rem;
}

.header-cluster + .header-cluster::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.12rem;
  background: var(--color-border);
  transform: translate(-0.45rem, -50%);
}

.header-meta__label,
.header-location,
.header-status,
.header-language__item,
.header-mode-switch__button {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-meta__label,
.header-location {
  color: var(--color-text-muted);
}

.header-mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.header-mode-switch__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  text-transform: none;
}

.header-mode-switch__button::before,
.header-mode-switch__button::after,
.header-language__item::before,
.header-language__item::after {
  opacity: 0;
  color: var(--color-accent-bright);
  transition: opacity 160ms ease;
}

.header-mode-switch__button::before,
.header-language__item::before {
  content: "{";
}

.header-mode-switch__button::after,
.header-language__item::after {
  content: "}";
}

.header-mode-switch__button.is-active,
html[data-theme="dark"] .header-mode-switch__button[data-theme-choice="dark"],
html[data-theme="light"] .header-mode-switch__button[data-theme-choice="light"] {
  color: var(--color-text);
}

.header-mode-switch__button.is-active::before,
.header-mode-switch__button.is-active::after,
html[data-theme="dark"] .header-mode-switch__button[data-theme-choice="dark"]::before,
html[data-theme="dark"] .header-mode-switch__button[data-theme-choice="dark"]::after,
html[data-theme="light"] .header-mode-switch__button[data-theme-choice="light"]::before,
html[data-theme="light"] .header-mode-switch__button[data-theme-choice="light"]::after,
.header-language__item.is-current::before,
.header-language__item.is-current::after {
  opacity: 1;
}

.header-mode-switch__icon {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.header-mode-switch__icon--moon {
  mask-image: url("assets/images/logo-dark.svg");
  -webkit-mask-image: url("assets/images/logo-dark.svg");
}

.header-mode-switch__icon--sun {
  mask-image: url("assets/images/logo-light.svg");
  -webkit-mask-image: url("assets/images/logo-light.svg");
}

.header-social__icon {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
}

.header-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.9;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.header-social__link:hover,
.header-social__link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(0, 178, 226, 0.08);
}

.header-social__link.is-placeholder {
  opacity: 0.46;
}

.header-language__item {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: var(--color-text-muted);
  text-decoration: none;
}

.header-language__item.is-current {
  color: var(--color-text);
}

.header-language__item.is-placeholder {
  cursor: default;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-text-soft);
}

.header-status__dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.header-status--warning .header-status__dot {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.header-status--offline .header-status__dot {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.site-header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  min-width: 0;
}

.brand__logo {
  width: clamp(7.75rem, 9.35vw, 11rem);
  height: auto;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  justify-self: end;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface-strong);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.site-header__toggle-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header__toggle-icon {
  display: grid;
  gap: 0.2rem;
}

.site-header__toggle-icon span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  width: 100%;
  justify-self: end;
}

.site-nav__list {
  gap: clamp(1rem, 2vw, 2.8rem);
  justify-content: flex-end;
}

.site-nav__list > li {
  position: relative;
}

.site-nav__list .menu-item-has-children > a {
  padding-right: 1rem;
}

.site-nav__list .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.75;
}

.site-nav__list a {
  position: relative;
  min-height: auto;
  padding: 0.2rem 0;
  border-radius: 0;
  color: #19294b;
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
  background: transparent;
  box-shadow: none;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
  transform: scaleX(1);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
  background: transparent;
  color: var(--color-accent-strong);
  box-shadow: none;
  transform: none;
}

.site-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 15rem;
  gap: 0.2rem;
  margin: 0;
  padding: 0.95rem 1rem;
  list-style: none;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav__list > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  width: max(100%, 12rem);
  height: 1rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__list .sub-menu li {
  margin: 0;
}

.site-nav__list .sub-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  color: #4f627e;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav__list .sub-menu a::before,
.site-nav__list .sub-menu a::after {
  display: none;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible,
.site-nav__list .sub-menu .current-menu-item > a,
.site-nav__list .sub-menu .current_page_item > a {
  background: rgba(6, 220, 233, 0.1);
  color: var(--color-accent-strong);
  box-shadow: inset 0 0 0 1px rgba(6, 220, 233, 0.18);
}

html[data-theme="dark"] .site-nav__list a {
  color: var(--color-text);
}

html[data-theme="dark"] .site-nav__list .sub-menu {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(8, 19, 29, 0.98);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.36);
}

html[data-theme="dark"] .site-nav__list .sub-menu a {
  color: #b9c7d9;
}

html[data-theme="dark"] .site-nav__list .sub-menu a:hover,
html[data-theme="dark"] .site-nav__list .sub-menu a:focus-visible,
html[data-theme="dark"] .site-nav__list .sub-menu .current-menu-item > a,
html[data-theme="dark"] .site-nav__list .sub-menu .current_page_item > a {
  background: rgba(6, 220, 233, 0.12);
  color: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(105, 217, 247, 0.24);
}

html[data-theme="dark"] .header-social__icon {
  filter: brightness(1.42);
}

@media (max-width: 1180px) {
  .site-header__frame {
    gap: 2rem;
  }

  .site-header__utility-inner {
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  .site-header__frame {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand mobile-status mobile-toggle"
      "utility utility utility";
    gap: 0.9rem 1rem;
    align-items: center;
    position: relative;
  }

  .brand {
    grid-area: brand;
    align-self: center;
  }

  .site-header__content {
    display: contents;
  }

  .site-header__mobile-top {
    display: contents;
  }

  .site-header__utility {
    grid-area: utility;
  }

  .site-header__nav-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    box-sizing: border-box;
    top: var(--uhurutec-mobile-nav-top, calc(var(--site-header-sticky-top, 0px) + 7rem));
    z-index: 80;
    pointer-events: none;
  }

  .site-header__utility-inner {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
  }

  .site-header__backdrop {
    position: fixed;
    inset: 0;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(226, 232, 240, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease;
    backdrop-filter: blur(10px) saturate(118%);
    -webkit-backdrop-filter: blur(10px) saturate(118%);
  }

  html[data-theme="dark"] .site-header__backdrop {
    background: rgba(4, 11, 18, 0.42);
  }

  .site-header__nav-inner {
    position: relative;
    justify-content: flex-start;
    min-height: 0;
  }

  .site-header__toggle {
    display: inline-flex;
    gap: 0.7rem;
    padding: 0.55rem 0.75rem;
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    backdrop-filter: blur(12px);
  }

  html[data-theme="dark"] .site-header__toggle {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(11, 24, 37, 0.76);
  }

  .site-header__mobile-status {
    grid-area: mobile-status;
    min-width: 0;
    font-size: 0.72rem;
    white-space: nowrap;
    justify-self: center;
    align-self: center;
    text-align: center;
  }

  .site-header__toggle {
    grid-area: mobile-toggle;
    justify-self: end;
  }

  .header-cluster--status {
    display: none;
  }

  .has-js .site-nav {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    margin-top: 0;
    padding: 1rem 1.05rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-m);
    background: var(--color-surface-strong);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition:
      opacity 0.22s ease,
      transform 0.24s ease,
      visibility 0.24s ease;
    max-height: var(--uhurutec-mobile-nav-max-height, calc(100dvh - var(--site-header-sticky-top, 0px) - 9rem));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .has-js .site-header.is-nav-open .site-header__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .has-js .site-header.is-nav-open .site-header__nav-bar {
    pointer-events: auto;
  }

  .has-js .site-header.is-nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .has-js .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .has-js .site-nav__list a {
    font-size: 1.35rem;
    transform: none;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  }

  .has-js .site-nav__list a:hover,
  .has-js .site-nav__list a:focus-visible,
  .has-js .site-nav__list a:active,
  .has-js .site-nav__list .current-menu-item > a,
  .has-js .site-nav__list .current_page_item > a {
    transform: none;
  }

  .has-js .site-nav__list .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    gap: 0.35rem;
    margin: 0.25rem 0 0;
    padding: 0.25rem 0 0 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .has-js .site-nav__list .sub-menu a {
    padding: 0.2rem 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.88rem;
    transform: none;
    transition: color 160ms ease;
  }

  .has-js .site-nav__list .sub-menu a:hover,
  .has-js .site-nav__list .sub-menu a:focus-visible,
  .has-js .site-nav__list .sub-menu .current-menu-item > a,
  .has-js .site-nav__list .sub-menu .current_page_item > a {
    background: transparent;
    color: var(--color-accent-strong);
    box-shadow: none;
    transform: none;
  }

  html[data-theme="dark"] .has-js .site-nav__list .sub-menu a:hover,
  html[data-theme="dark"] .has-js .site-nav__list .sub-menu a:focus-visible,
  html[data-theme="dark"] .has-js .site-nav__list .sub-menu .current-menu-item > a,
  html[data-theme="dark"] .has-js .site-nav__list .sub-menu .current_page_item > a {
    background: transparent;
    color: #69d9f7;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .site-header__frame {
    width: min(calc(100vw - 1.5rem), 100%);
    padding-top: 0.85rem;
    gap: 0.85rem 0.9rem;
  }

  .header-cluster {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .header-cluster + .header-cluster {
    padding-left: 0.8rem;
  }

  .header-cluster + .header-cluster::before {
    transform: translate(-0.4rem, -50%);
  }

  .header-meta__label,
  .header-location,
  .header-status,
  .header-language__item,
  .header-mode-switch__button {
    font-size: 0.7rem;
  }

  .brand__logo {
    width: clamp(6.75rem, 32vw, 8.75rem);
  }

  .header-cluster--mode .header-meta__label {
    display: none;
  }

  .site-header__mobile-status {
    font-size: 0.68rem;
    letter-spacing: 0.045em;
  }

  .site-header__toggle {
    gap: 0.58rem;
    padding: 0.5rem 0.65rem;
  }

  .site-header__toggle-label {
    font-size: 0.76rem;
  }

  .site-header__toggle-icon span {
    width: 0.95rem;
  }

  .has-js .site-nav {
    width: 100%;
  }

  .site-nav__list a {
    font-size: 1.1rem;
  }
}

@media (max-width: 430px) {
  .site-header__utility {
    overflow: hidden;
  }

  .site-header__utility-inner {
    display: grid;
    grid-template-columns: max-content minmax(5.6rem, 1fr) max-content;
    align-items: center;
    gap: 0.85rem;
  }

  .header-cluster {
    flex-wrap: nowrap;
    gap: 0.28rem;
    min-width: 0;
  }

  .header-cluster + .header-cluster {
    padding-left: 0;
  }

  .header-cluster + .header-cluster::before {
    display: none;
  }

  .header-cluster--mode,
  .header-cluster--language {
    gap: 0.22rem;
  }

  .header-cluster--mode {
    position: relative;
  }

  .header-cluster--mode::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.425rem;
    width: 1px;
    height: 0.95rem;
    background: var(--color-border);
    transform: translateY(-50%);
  }

  .header-cluster--social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding-inline: 0.9rem;
    gap: 0.42rem;
  }

  .header-cluster--social::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 0.95rem;
    background: var(--color-border);
    transform: translateY(-50%);
  }

  .header-cluster--social::after {
    right: 0;
  }

  .header-social__link {
    width: 1.18rem;
    height: 1.18rem;
  }

  .header-social__icon {
    width: 0.8rem;
    height: 0.8rem;
  }

  .header-mode-switch {
    gap: 0.22rem;
  }

  .header-mode-switch__button {
    gap: 0.18rem;
  }

  .header-language__item,
  .header-mode-switch__button {
    font-size: 0.67rem;
  }
}

.team-card__avatar,
.home-person-card__avatar {
  position: relative;
}

.team-card__fallback,
.home-person-card__fallback {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-accent-strong);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.home-page {
  position: relative;
  display: grid;
  gap: 0;
  padding-top: clamp(1.25rem, 2vw, 2rem);
}

.home-hero,
.home-customer-fit,
.home-sovereignty,
.home-mentioned,
.home-comparison,
.home-architecture,
.home-alliance,
.home-news,
.home-connect {
  position: relative;
  width: var(--wide-width);
  margin: 0 auto;
  z-index: 1;
}

.home-hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(5rem, 9vw, 7.5rem);
}

.home-hero__grid,
.home-sovereignty,
.home-connect {
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: minmax(0, 0.96fr) minmax(19rem, 1.04fr);
  align-items: center;
}

.home-hero__copy {
  max-width: 34rem;
}

.home-kicker,
.home-layer-card__kicker,
.home-news-card__date,
.home-project__field span {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.home-kicker {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-kicker--dark {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero__title {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 5.85rem);
  line-height: 0.94;
}

.home-hero__title span {
  display: block;
}

@media (min-width: 821px) {
  .home-hero__title span {
    white-space: nowrap;
  }
}

@media (min-width: 1121px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(17rem, 0.86fr);
  }

  .home-hero__copy {
    max-width: 44rem;
  }

  .home-hero__title {
    font-size: clamp(4.15rem, 5.7vw, 5.3rem);
  }
}

.home-hero__title-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero__lede {
  max-width: 29rem;
  margin: 1.3rem 0 0;
  color: #70819a;
  font-family: "Inter Hero", "Inter", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
  line-height: 1.45;
}

.home-hero__terminal {
  display: grid;
  gap: 0.28rem;
  margin: 1.65rem 0 1.8rem;
}

.home-hero__terminal p {
  margin: 0;
  color: #8b9ab1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
}

.home-hero .service-button {
  min-width: 11rem;
  padding-inline: 1.75rem;
  border-radius: 0;
}

.home-hero__visual {
  position: relative;
  min-height: min(44rem, 78vh);
  display: grid;
  place-items: center;
}

.home-hero__glow {
  position: absolute;
  inset: 18% 6% 12%;
  background:
    radial-gradient(circle at 52% 44%, rgba(6, 220, 233, 0.18), transparent 42%),
    radial-gradient(circle at 64% 64%, rgba(31, 77, 231, 0.12), transparent 34%);
  filter: blur(8px);
}

.home-hero__deer {
  position: relative;
  z-index: 1;
  display: block;
  width: min(30rem, 100%);
  height: auto;
  aspect-ratio: 480 / 772;
}

.home-hero__dot {
  position: absolute;
  color: #9ba8ba;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1;
}

.home-hero__dot::before {
  content: "+";
}

.home-hero__dot--one {
  top: 22%;
  left: 12%;
}

.home-hero__dot--two {
  top: 32%;
  right: 9%;
}

.home-hero__dot--three {
  bottom: 19%;
  left: 22%;
}

.home-customer-fit {
  padding: 0 0 clamp(4rem, 7vw, 6.5rem);
}

.home-customer-fit__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 0.64fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(0, 178, 226, 0.2);
  border-radius: clamp(1.35rem, 3vw, 2.35rem);
  background:
    radial-gradient(circle at 4% 12%, rgba(0, 178, 226, 0.15), transparent 34%),
    radial-gradient(circle at 96% 12%, rgba(53, 97, 255, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 253, 0.84));
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.08);
}

.home-customer-fit__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 178, 226, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(148, 163, 184, 0.08) 6rem 6.04rem);
  opacity: 0.48;
}

.home-customer-fit__intro,
.home-customer-fit__list {
  position: relative;
  z-index: 1;
}

.home-customer-fit__intro h2 {
  max-width: 26rem;
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.45rem);
  line-height: 0.96;
}

.home-customer-fit__intro p:last-child {
  margin: 1rem 0 0;
  color: #70819a;
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.22rem);
  line-height: 1.55;
}

.home-customer-fit__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.65rem) clamp(1.3rem, 4vw, 3rem);
  align-self: center;
}

.home-customer-fit__item {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  align-items: flex-start;
  min-height: 4.2rem;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.5);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-customer-fit__item:hover {
  transform: translateY(-0.18rem);
  border-color: rgba(0, 178, 226, 0.34);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.home-customer-fit__item strong {
  color: var(--color-text);
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.12rem);
  line-height: 1.22;
}

.home-customer-fit__check {
  position: relative;
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.05rem;
}

.home-customer-fit__check::before {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.18rem;
  width: 1.15rem;
  height: 1.75rem;
  border-right: 0.42rem solid var(--color-accent);
  border-bottom: 0.42rem solid var(--color-accent);
  transform: rotate(45deg);
  opacity: 0.78;
}

.home-sovereignty {
  min-height: clamp(28rem, 42vw, 42rem);
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  overflow: clip;
}

.home-sovereignty__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-sovereignty__birds-image {
  position: absolute;
  left: 50%;
  bottom: clamp(0.65rem, 1vw, 1rem);
  width: min(100%, 96rem);
  transform: translateX(-50%);
  opacity: 0.88;
}

.home-sovereignty__copy {
  grid-column: 2;
  position: relative;
  z-index: 1;
  max-width: 31rem;
  margin-left: auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4.5rem, 10vw, 7rem);
}

.home-sovereignty__cards {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.home-sovereignty--double {
  grid-template-columns: 1fr;
  min-height: 0;
}

.home-sovereignty--double .home-sovereignty__copy {
  grid-column: 1;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.home-sovereignty--double .home-sovereignty__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.home-sovereignty--double .home-sovereignty__panel {
  height: 100%;
}

.home-sovereignty__panel {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.65rem);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: clamp(1.35rem, 2vw, 1.8rem);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.74), rgba(255, 255, 255, 0.54));
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px) saturate(138%);
  -webkit-backdrop-filter: blur(22px) saturate(138%);
}

.home-sovereignty h2,
.home-section-head h2,
.home-project h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.04;
}

.home-sovereignty__panel > p:last-of-type,
.home-section-head p:last-of-type {
  margin-top: 0.9rem;
  color: #70819a;
}

.home-bullet-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.home-bullet-list__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #1c2944;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  font-weight: 700;
}

.home-bullet-list__item strong {
  color: var(--color-text);
}

.home-grass {
  position: relative;
  width: 100vw;
  margin: calc(clamp(4.5rem, 9vw, 7rem) * -1) 0 0 calc(50% - 50vw);
  z-index: 0;
  overflow: hidden;
}

.home-grass img {
  width: 100%;
  height: clamp(4.2rem, 10vw, 7.4rem);
  object-fit: cover;
  opacity: 0.14;
}

.home-grass--soft img {
  opacity: 0.12;
}

.home-mentioned {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.home-mentioned__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(0, 178, 226, 0.24);
  border-radius: clamp(1.35rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 178, 226, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 253, 0.82));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.home-mentioned__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 178, 226, 0.24), transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 5.5rem, rgba(148, 163, 184, 0.08) 5.5rem 5.55rem);
  opacity: 0.48;
}

.home-mentioned__media,
.home-mentioned__copy {
  position: relative;
  z-index: 1;
}

.home-mentioned__media {
  justify-self: start;
  width: min(15rem, 100%);
  transform: rotate(-1.6deg);
}

.home-mentioned__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.home-mentioned__copy {
  display: grid;
  gap: 1rem;
}

.home-mentioned__source {
  margin: 0;
  color: var(--color-accent-strong);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-mentioned h2 {
  max-width: 54rem;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 0.96;
}

.home-mentioned__text {
  display: grid;
  gap: 0.9rem;
  max-width: 64rem;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.24rem);
  line-height: 1.65;
}

.home-mentioned__text > * {
  margin: 0;
}

.home-mentioned__text a {
  color: var(--color-accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.home-mentioned .service-button {
  justify-self: end;
  margin-top: clamp(0.5rem, 2vw, 1.3rem);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.home-comparison {
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.home-comparison__header {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.home-comparison__header .home-section-head {
  max-width: 62rem;
}

.home-comparison__matrix {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 178, 226, 0.18);
  border-radius: clamp(1.15rem, 2vw, 1.9rem);
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 97, 255, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 252, 0.9));
  box-shadow: 0 30px 78px rgba(15, 23, 42, 0.08);
}

.home-comparison__matrix::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 178, 226, 0.2), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(148, 163, 184, 0.08) 6rem 6.04rem);
  opacity: 0.55;
}

.home-comparison__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(17rem, 1.55fr) minmax(8rem, 0.72fr) minmax(8rem, 0.72fr);
  min-height: clamp(5.4rem, 7vw, 6.7rem);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.home-comparison__row:first-child {
  border-top: 0;
}

.home-comparison__row > * {
  display: flex;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.6vw, 2rem);
}

.home-comparison__row--head {
  min-height: auto;
  background: rgba(5, 17, 31, 0.04);
  color: #8da0b8;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-comparison__row--head > :nth-child(n + 2) {
  justify-content: center;
  text-align: center;
}

.home-comparison__criterion {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
}

.home-comparison__criterion strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.55rem);
  line-height: 1.08;
}

.home-comparison__criterion span {
  display: block;
  color: var(--color-text-soft);
  font-size: clamp(0.95rem, 0.45vw + 0.86rem, 1.14rem);
  line-height: 1.42;
}

.home-comparison__rating {
  justify-content: center;
  border-left: 1px solid rgba(148, 163, 184, 0.14);
}

.home-comparison__rating--own {
  background: linear-gradient(90deg, rgba(0, 178, 226, 0.04), rgba(53, 97, 255, 0.05));
}

.home-comparison__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.35rem;
  min-height: 3.05rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: #718197;
  font-family: var(--font-mono);
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.home-comparison__score--plus,
.home-comparison__score--double {
  color: #18a65c;
}

.home-comparison__score--double {
  min-width: 4.8rem;
}

.home-comparison__score--minus {
  color: #ef3f3f;
}

.home-comparison__score--neutral {
  font-size: clamp(0.68rem, 0.45vw + 0.62rem, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-comparison__button {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.home-architecture {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(5.5rem, 8vw, 7rem);
  padding-inline: max(1.25rem, calc((100vw - var(--wide-width)) / 2));
  overflow: clip;
}

.home-architecture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243, 247, 251, 0.92), rgba(238, 244, 249, 0.96));
  z-index: -2;
}

.home-architecture__dot {
  position: absolute;
  color: #96a8bf;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1;
  opacity: 0.86;
  pointer-events: none;
  z-index: 0;
}

.home-architecture__dot::before {
  content: "+";
}

.home-architecture__dot--one {
  top: 7.5rem;
  right: 3rem;
}

.home-architecture__dot--two {
  top: 21rem;
  left: 47%;
}

.home-architecture__dot--three {
  bottom: 3.1rem;
  left: 2.6rem;
}

.home-architecture__dot--four {
  bottom: 9rem;
  right: 8.5rem;
}

.home-section-head {
  max-width: 31rem;
}

.home-section-head--compact {
  max-width: 24rem;
}

.home-architecture .home-section-head,
.home-layers {
  position: relative;
  z-index: 1;
}

.home-layers {
  --home-layer-rail-offset: 4.85rem;
  --home-layer-index-column: 3.2rem;
  display: grid;
  gap: 1.35rem;
  width: min(62rem, 100%);
  margin: 3rem 0 0 auto;
  padding-left: var(--home-layer-rail-offset);
}

.home-layers::before {
  content: "";
  position: absolute;
  top: 0.775rem;
  bottom: calc(clamp(5.5rem, 8vw, 7rem) * -1);
  left: calc(var(--home-layer-rail-offset) + (var(--home-layer-index-column) / 2));
  width: 1px;
  background: linear-gradient(180deg, rgba(207, 219, 232, 0.9), rgba(229, 236, 244, 0.58));
}

.home-layer-row {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.home-layer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.6rem;
  align-items: center;
  min-height: 6.7rem;
  padding: 1.55rem 1.8rem 1.45rem;
  border: 1px solid rgba(223, 231, 239, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
  color: inherit;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-layer-card--linked {
  cursor: pointer;
}

.home-layer-card:hover,
.home-layer-card:focus-visible,
.home-layer-row:active .home-layer-card {
  transform: translateY(-2px);
  border-color: rgba(0, 178, 226, 0.38);
  box-shadow: 0 0 0 1px rgba(0, 178, 226, 0.14), 0 18px 38px rgba(15, 23, 42, 0.08), 0 0 34px rgba(0, 178, 226, 0.12);
}

.home-layer-card:focus-visible {
  outline: none;
}

.home-layer-card__index {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  align-self: start;
  justify-self: center;
  border: 1px solid rgba(220, 230, 239, 0.96);
  background: rgba(255, 255, 255, 0.98);
  color: #93a5bb;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  z-index: 1;
}

.home-layer-row:hover .home-layer-card__index,
.home-layer-row:focus-within .home-layer-card__index,
.home-layer-row:active .home-layer-card__index {
  border-color: rgba(0, 178, 226, 0.62);
  background: linear-gradient(135deg, rgba(6, 220, 233, 0.94), rgba(31, 77, 231, 0.98));
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 178, 226, 0.14), 0 14px 28px rgba(31, 77, 231, 0.18);
}

.home-layer-card__kicker {
  margin: 0 0 0.22rem;
  color: #9aa9bc;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-layer-card h3 {
  margin: 0;
  font-size: 2rem;
}

.home-layer-card__body p:last-child {
  margin: 0.25rem 0 0;
  color: #73849c;
}

.home-layer-card__aside {
  display: grid;
  justify-items: end;
  align-self: stretch;
  min-width: 2.8rem;
}

.home-layer-card__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--color-accent-strong);
  transform: translateY(0);
  transition: transform 220ms ease;
}

.home-layer-card__icon img {
  width: 1.55rem;
  height: 1.55rem;
}

.home-layer-card__icon span {
  color: var(--color-accent-strong);
  font-size: 1.25rem;
}

.home-layer-card__arrow {
  align-self: end;
  color: var(--color-accent-strong);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.home-layer-card:hover .home-layer-card__icon,
.home-layer-card:focus-visible .home-layer-card__icon,
.home-layer-row:active .home-layer-card__icon {
  animation: home-stack-float 1.8s ease-in-out infinite;
}

.home-layer-card:hover .home-layer-card__arrow,
.home-layer-card:focus-visible .home-layer-card__arrow,
.home-layer-row:active .home-layer-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

@keyframes home-stack-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.home-alliance {
  padding: clamp(5rem, 8vw, 6.6rem) 0 clamp(2rem, 3vw, 2.5rem);
}

.home-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.home-chip {
  display: grid;
  place-items: center;
  min-height: 3.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(223, 231, 239, 0.92);
  background: rgba(255, 255, 255, 0.94);
  color: #8ea0b7;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.home-chip:hover,
.home-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 178, 226, 0.35);
  color: var(--color-accent-strong);
}

.home-news {
  padding: clamp(5rem, 8vw, 6.75rem) 0 clamp(5rem, 8vw, 7rem);
}

.home-news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-news__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1c2944;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.home-news__list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.home-news-card {
  display: grid;
  grid-template-columns: minmax(7.5rem, 10rem) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.65rem 2rem;
  border: 1px solid rgba(228, 235, 242, 0.96);
  background: rgba(255, 255, 255, 0.94);
}

.home-news-card__date {
  margin: 0;
  color: #9aabc0;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-news-card__body h3 {
  margin: 0;
  font-size: 1.52rem;
}

.home-news-card__body h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.home-news-card__body p {
  margin: 0.3rem 0 0;
  color: #73849c;
}

.home-news-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--color-accent-strong);
  text-decoration: none;
}

.home-connect {
  align-items: start;
  padding: clamp(4rem, 7vw, 6.4rem) 0 clamp(5rem, 9vw, 7rem);
}

.home-people__list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.75rem;
}

.home-person-card {
  display: grid;
  grid-template-columns: clamp(5.25rem, 9vw, 6.2rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.95rem;
  border: 1px solid rgba(228, 235, 242, 0.96);
  background: rgba(255, 255, 255, 0.95);
}

.home-person-card__avatar {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(231, 237, 244, 0.98));
}

.home-person-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-person-card__body h3 {
  margin: 0;
  font-size: 1.45rem;
}

.home-person-card__role {
  margin: 0.2rem 0 0.55rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-person-card__meta {
  display: grid;
  gap: 0.35rem;
}

.home-person-card__meta a {
  color: #8d9db1;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-decoration: none;
}

.home-project__panel {
  padding: clamp(2rem, 3.6vw, 2.9rem);
  background: #000000;
  color: #ffffff;
  box-shadow: 0 26px 64px rgba(2, 6, 23, 0.22);
}

.home-project__panel > h2 {
  margin-top: 0.25rem;
  color: #06dce9;
}

.home-project__notice {
  margin-top: 1.4rem;
}

.home-project__form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.85rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(25, 25, 25, 0.94);
}

.home-project__field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.home-project__field span {
  padding-top: 0.95rem;
  color: #06dce9;
  font-size: 0.84rem;
  font-weight: 800;
}

.home-project__field input,
.home-project__field textarea {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.home-project__field input::placeholder,
.home-project__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.home-project__field textarea {
  min-height: 8.7rem;
}

.home-project__submit {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-project__submit:hover,
.home-project__submit:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

html[data-theme="dark"] .home-hero__lede,
html[data-theme="dark"] .home-sovereignty__panel > p:last-of-type,
html[data-theme="dark"] .home-section-head p:last-of-type,
html[data-theme="dark"] .home-layer-card__body p:last-child,
html[data-theme="dark"] .home-news-card__body p,
html[data-theme="dark"] .home-person-card__meta a,
html[data-theme="dark"] .home-hero__terminal p {
  color: #a8b6c9;
}

html[data-theme="dark"] .home-bullet-list__item,
html[data-theme="dark"] .home-bullet-list__item strong {
  color: #67d7ff;
}

html[data-theme="dark"] .home-customer-fit__panel {
  border-color: rgba(6, 220, 233, 0.16);
  background:
    radial-gradient(circle at 4% 12%, rgba(6, 220, 233, 0.14), transparent 36%),
    radial-gradient(circle at 96% 12%, rgba(53, 97, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(8, 19, 29, 0.9), rgba(7, 13, 24, 0.95));
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .home-customer-fit__panel::before {
  background:
    linear-gradient(90deg, rgba(6, 220, 233, 0.14), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(148, 163, 184, 0.08) 6rem 6.04rem);
  opacity: 0.36;
}

html[data-theme="dark"] .home-customer-fit__intro p:last-child {
  color: #a8b6c9;
}

html[data-theme="dark"] .home-customer-fit__item {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(8, 19, 29, 0.66);
}

html[data-theme="dark"] .home-customer-fit__item:hover {
  border-color: rgba(6, 220, 233, 0.34);
  background: rgba(10, 24, 38, 0.86);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .home-customer-fit__item strong {
  color: #f7fbff;
}

html[data-theme="dark"] .home-architecture::before {
  background: linear-gradient(180deg, rgba(7, 17, 28, 0.96), rgba(10, 21, 33, 0.98));
}

html[data-theme="dark"] .home-architecture__dot {
  color: #6e84a0;
}

html[data-theme="dark"] .home-mentioned__panel {
  border-color: rgba(6, 220, 233, 0.18);
  background:
    radial-gradient(circle at 8% 18%, rgba(6, 220, 233, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(8, 19, 29, 0.88), rgba(7, 13, 24, 0.94));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .home-mentioned__panel::before {
  background:
    linear-gradient(90deg, rgba(6, 220, 233, 0.18), transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 5.5rem, rgba(148, 163, 184, 0.08) 5.5rem 5.55rem);
  opacity: 0.36;
}

html[data-theme="dark"] .home-mentioned__source,
html[data-theme="dark"] .home-mentioned__text a {
  color: var(--color-accent);
}

html[data-theme="dark"] .home-mentioned__text {
  color: #b8c6d8;
}

html[data-theme="dark"] .home-mentioned .service-button {
  background: var(--color-accent);
  color: #ffffff;
}

html[data-theme="dark"] .home-comparison__matrix {
  border-color: rgba(6, 220, 233, 0.16);
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 97, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(8, 19, 29, 0.92), rgba(7, 13, 24, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .home-comparison__matrix::before {
  background:
    linear-gradient(90deg, rgba(6, 220, 233, 0.16), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(148, 163, 184, 0.08) 6rem 6.04rem);
  opacity: 0.34;
}

html[data-theme="dark"] .home-comparison__row {
  border-top-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .home-comparison__row--head {
  background: rgba(255, 255, 255, 0.035);
  color: #8fa3bb;
}

html[data-theme="dark"] .home-comparison__criterion strong {
  color: #f7fbff;
}

html[data-theme="dark"] .home-comparison__criterion span {
  color: #a8b6c9;
}

html[data-theme="dark"] .home-comparison__rating {
  border-left-color: rgba(148, 163, 184, 0.13);
}

html[data-theme="dark"] .home-comparison__rating--own {
  background: linear-gradient(90deg, rgba(6, 220, 233, 0.06), rgba(53, 97, 255, 0.08));
}

html[data-theme="dark"] .home-comparison__score {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(7, 17, 28, 0.82);
  color: #9fb0c6;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .home-comparison__score--plus,
html[data-theme="dark"] .home-comparison__score--double {
  color: #61d888;
}

html[data-theme="dark"] .home-comparison__score--minus {
  color: #ff6b6b;
}

html[data-theme="dark"] .home-comparison__button {
  background: var(--color-accent);
  color: #ffffff;
}

html[data-theme="dark"] .home-layers::before {
  background: linear-gradient(180deg, rgba(57, 79, 105, 0.94), rgba(30, 43, 60, 0.6));
}

html[data-theme="dark"] .home-layer-card,
html[data-theme="dark"] .home-chip,
html[data-theme="dark"] .home-news-card,
html[data-theme="dark"] .home-person-card {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(8, 19, 29, 0.92);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.24);
}

html[data-theme="dark"] .home-layer-card__index,
html[data-theme="dark"] .home-layer-card__kicker,
html[data-theme="dark"] .home-news-card__date,
html[data-theme="dark"] .home-kicker,
html[data-theme="dark"] .home-chip,
html[data-theme="dark"] .home-news__link,
html[data-theme="dark"] .home-project__field input::placeholder,
html[data-theme="dark"] .home-project__field textarea::placeholder {
  color: #8da2bc;
}

html[data-theme="dark"] .home-news-card__body h3 a,
html[data-theme="dark"] .home-person-card__body h3,
html[data-theme="dark"] .home-news__link,
html[data-theme="dark"] .home-layer-card h3 {
  color: #f8fbff;
}

html[data-theme="dark"] .home-layer-card:hover,
html[data-theme="dark"] .home-layer-card:focus-visible,
html[data-theme="dark"] .home-layer-row:active .home-layer-card {
  border-color: rgba(6, 220, 233, 0.36);
  box-shadow: 0 0 0 1px rgba(6, 220, 233, 0.14), 0 22px 44px rgba(2, 6, 23, 0.32), 0 0 32px rgba(6, 220, 233, 0.14);
}

html[data-theme="dark"] .home-layer-card__index {
  border-color: rgba(57, 79, 105, 0.84);
  background: rgba(7, 17, 28, 0.98);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.2);
}

html[data-theme="dark"] .home-layer-row:hover .home-layer-card__index,
html[data-theme="dark"] .home-layer-row:focus-within .home-layer-card__index,
html[data-theme="dark"] .home-layer-row:active .home-layer-card__index {
  border-color: rgba(6, 220, 233, 0.68);
  background: linear-gradient(135deg, rgba(6, 220, 233, 0.96), rgba(31, 77, 231, 0.98));
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(6, 220, 233, 0.16), 0 16px 30px rgba(4, 12, 22, 0.34);
}

html[data-theme="dark"] .home-project__panel {
  border: 1px solid rgba(75, 105, 138, 0.34);
  background:
    linear-gradient(135deg, rgba(8, 19, 29, 0.92), rgba(11, 27, 41, 0.78)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 34%);
  box-shadow: 0 26px 72px rgba(2, 6, 23, 0.38);
}

html[data-theme="dark"] .home-project__panel > h2 {
  color: #f8fbff;
}

html[data-theme="dark"] .home-project__form {
  background: linear-gradient(180deg, rgba(10, 22, 34, 0.9), rgba(7, 18, 29, 0.86));
  border: 1px solid rgba(75, 105, 138, 0.26);
}

html[data-theme="dark"] .home-project__field input,
html[data-theme="dark"] .home-project__field textarea {
  border-color: rgba(75, 105, 138, 0.44);
  background: rgba(6, 15, 24, 0.58);
  color: #f8fbff;
}

html[data-theme="dark"] .home-project__submit {
  box-shadow: 0 18px 42px rgba(0, 178, 226, 0.22);
}

html[data-theme="dark"] .home-sovereignty__birds-image {
  opacity: 0.62;
}

html[data-theme="dark"] .service-contact-band {
  background: transparent;
}

html[data-theme="dark"] .service-terminal {
  border-color: rgba(75, 105, 138, 0.32);
  background:
    linear-gradient(135deg, rgba(8, 19, 29, 0.9), rgba(11, 27, 41, 0.76)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 34%);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

html[data-theme="dark"] .service-terminal__top {
  border-bottom-color: rgba(75, 105, 138, 0.24);
}

html[data-theme="dark"] .service-terminal__field input,
html[data-theme="dark"] .service-terminal__field textarea {
  border-bottom-color: rgba(75, 105, 138, 0.44);
  background: rgba(6, 15, 24, 0.22);
  color: #f8fbff;
}

html[data-theme="dark"] .service-terminal__field input::placeholder,
html[data-theme="dark"] .service-terminal__field textarea::placeholder {
  color: #8da2bc;
}

html[data-theme="dark"] .service-terminal__notice {
  background: rgba(6, 220, 233, 0.08);
}

html[data-theme="dark"] .home-sovereignty__panel {
  border-color: rgba(148, 163, 184, 0.18);
  background: linear-gradient(135deg, rgba(8, 19, 29, 0.76), rgba(11, 27, 41, 0.5));
  box-shadow: 0 24px 58px rgba(2, 6, 23, 0.34);
}

@media (max-width: 820px) {
  html[data-theme="dark"] .home-sovereignty__panel {
    background: linear-gradient(135deg, rgba(8, 19, 29, 0.9), rgba(11, 27, 41, 0.82));
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.24);
    backdrop-filter: blur(8px) saturate(112%);
    -webkit-backdrop-filter: blur(8px) saturate(112%);
  }
}

@media (max-width: 640px) {
  html[data-theme="dark"] .home-sovereignty__panel {
    background: rgba(8, 19, 29, 0.92);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

html[data-theme="dark"] .home-grass img,
html[data-theme="dark"] .home-grass--soft img {
  opacity: 0.2;
}

@media (max-width: 1120px) {
  .home-hero__grid,
  .home-connect {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .home-sovereignty__copy,
  .home-section-head,
  .home-section-head--compact {
    max-width: 100%;
  }

  .home-hero__visual {
    min-height: 24rem;
  }

  .home-sovereignty {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    min-height: 0;
    padding-top: clamp(1rem, 3vw, 2rem);
  }

  .home-sovereignty__art {
    position: relative;
    inset: auto;
    min-height: clamp(12rem, 34vw, 18rem);
  }

  .home-sovereignty__birds-image {
    left: 50%;
    bottom: 0;
    width: min(100%, 56rem);
  }

  .home-sovereignty__copy {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
    padding: 0 0 clamp(3rem, 8vw, 5rem);
  }

  .home-sovereignty--double .home-sovereignty__cards {
    grid-template-columns: 1fr;
  }

  .home-layers {
    width: 100%;
  }

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

  .home-grass {
    margin-top: calc(clamp(2.8rem, 7vw, 4rem) * -1);
  }
}

@media (max-width: 1120px) {
  .home-sovereignty__panel {
    padding: clamp(1.45rem, 4vw, 2rem);
  }
}

@media (max-width: 820px) {
  .home-hero,
  .home-customer-fit,
  .home-sovereignty,
  .home-mentioned,
  .home-comparison,
  .home-alliance,
  .home-news,
  .home-connect {
    width: var(--content-width);
  }

  .home-architecture {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: max(1.25rem, calc((100vw - var(--content-width)) / 2));
  }

  .home-sovereignty__panel {
    width: 100%;
  }

  .home-customer-fit__panel {
    grid-template-columns: 1fr;
  }

  .home-customer-fit__intro h2 {
    max-width: none;
  }

  .home-customer-fit__list {
    grid-template-columns: 1fr;
  }

  .home-customer-fit__item {
    min-height: auto;
  }

  .home-mentioned__panel {
    grid-template-columns: 1fr;
  }

  .home-mentioned__media {
    width: min(12rem, 68vw);
  }

  .home-mentioned .service-button {
    justify-self: start;
  }

  .home-comparison__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .home-comparison__row--head {
    display: none;
  }

  .home-comparison__criterion {
    grid-column: 1 / -1;
    padding-bottom: 0.65rem;
  }

  .home-comparison__rating {
    position: relative;
    justify-content: flex-start;
    min-height: 5.4rem;
    padding-top: 2.2rem;
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
  }

  .home-comparison__rating + .home-comparison__rating {
    border-left: 1px solid rgba(148, 163, 184, 0.14);
  }

  .home-comparison__rating::before {
    content: attr(data-column);
    position: absolute;
    top: 0.8rem;
    left: clamp(1.1rem, 2.6vw, 2rem);
    color: #8da0b8;
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .home-layer-card,
  .home-news-card {
    grid-template-columns: 1fr;
  }

  .home-layer-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .home-layers {
    padding-left: 0;
  }

  .home-layers::before {
    display: none;
  }

  .home-layer-card__index,
  .home-news-card__arrow {
    justify-self: start;
  }

  .home-layer-card__aside {
    width: 100%;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
  }

  .home-architecture__dot--one {
    top: 9rem;
    right: 1rem;
  }

  .home-architecture__dot--two,
  .home-architecture__dot--four {
    display: none;
  }

  .home-architecture__dot--three {
    bottom: 2rem;
    left: 0.65rem;
  }

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

  .home-sovereignty__art {
    min-height: clamp(9.5rem, 42vw, 13rem);
  }

  .home-hero__glow {
    inset: 20% 10% 18%;
    filter: none;
    opacity: 0.76;
  }

  .home-hero__visual {
    min-height: 0;
  }

  .home-sovereignty__panel {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.88));
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(8px) saturate(112%);
    -webkit-backdrop-filter: blur(8px) saturate(112%);
  }

  .home-sovereignty__birds-image {
    width: calc(100% + 2.75rem);
  }

  .home-architecture,
  .home-customer-fit,
  .home-mentioned,
  .home-comparison,
  .home-alliance,
  .home-news,
  .home-connect,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }

  .home-grass img {
    height: clamp(3.4rem, 12vw, 5rem);
  }
}

@media (max-width: 640px) {
  .home-hero__title {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .home-sovereignty__panel {
    background: rgba(252, 253, 255, 0.94);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .home-person-card {
    grid-template-columns: 1fr;
  }

  .home-person-card__avatar {
    width: 5.5rem;
  }

  .home-chip-grid {
    grid-template-columns: 1fr;
  }

  .home-project__panel,
  .home-project__form {
    padding-inline: 1.2rem;
  }
}

.log-archive,
.log-single {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.log-hero,
.log-featured,
.log-index,
.log-note,
.log-single__hero,
.log-single__content,
.log-related {
  width: var(--wide-width);
  margin: 0 auto;
}

.log-archive__status {
  margin: 0;
}

.log-archive.is-loading .log-featured,
.log-archive.is-loading .log-index {
  opacity: 0.58;
  transition: opacity 160ms ease;
}

.log-archive.is-loading .log-index {
  pointer-events: none;
}

.log-hero {
  --breadcrumb-lift: clamp(2.5rem, 5vw, 4.75rem);
  padding: clamp(2.5rem, 5vw, 4.75rem) 0 clamp(3rem, 5vw, 4.75rem);
}

.log-hero__grid,
.log-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
  gap: clamp(2.25rem, 4vw, 5rem);
  align-items: center;
}

.log-hero__copy {
  max-width: 32rem;
}

.log-hero__title {
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 5.7rem);
  line-height: 0.92;
}

.log-hero__title span {
  display: block;
}

.log-hero__title-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.log-hero__intro {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  color: #6f819b;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  line-height: 1.48;
}

.log-command {
  margin-top: 1.35rem;
  max-width: 30rem;
}

.log-command .home-kicker {
  margin-bottom: 0.45rem;
}

.log-command__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.2rem;
  background: #050505;
  color: #c6d3e4;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.12);
}

.log-command__line i {
  width: 2px;
  height: 1rem;
  background: #06dce9;
  opacity: 0.92;
}

.log-hero__art {
  display: grid;
  place-items: center;
}

.log-hero__art img {
  width: min(20rem, 100%);
  opacity: 0.94;
}

.log-featured {
  padding: 0 0 clamp(3rem, 5vw, 4.5rem);
}

.log-featured__copy {
  max-width: 28rem;
}

.log-featured__category,
.log-row__path,
.log-related-card__meta,
.log-single__meta,
.log-aside-card__list strong,
.uhurutec-breadcrumb__back,
.uhurutec-breadcrumb__current,
.log-back-link,
.log-rss-link,
.log-filter,
.log-row__button,
.log-pagination a,
.log-pagination span {
  font-family: var(--font-mono);
}

.log-featured__category {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.62rem;
  background: #111827;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.log-featured__meta,
.log-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: #97a7bc;
  font-size: 0.72rem;
  font-weight: 700;
}

.log-featured h2,
.log-single__copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.log-featured h2 a {
  color: var(--color-text);
  text-decoration: none;
}

.log-featured p:last-of-type {
  color: #70819a;
}

.log-featured .service-button {
  margin-top: 1rem;
  border-radius: 0;
}

.log-featured__media {
  display: block;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.log-featured__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.log-index {
  padding: 1rem 0 clamp(4rem, 6vw, 5rem);
}

.log-index__toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(220, 229, 238, 0.94);
}

.log-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.log-filter,
.log-rss-link {
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.log-filter.is-active,
.log-filter:hover,
.log-filter:focus-visible,
.log-rss-link:hover,
.log-rss-link:focus-visible {
  color: var(--color-accent-strong);
}

.log-table {
  display: grid;
}

.log-row {
  display: grid;
  grid-template-columns: minmax(6rem, 9rem) minmax(7rem, 10rem) minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(232, 238, 244, 0.94);
}

.log-row__date,
.log-row__path {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
}

.log-row__date {
  color: #9ba9be;
}

.log-row__path {
  color: var(--color-accent);
}

.log-row__body h3 {
  margin: 0;
  font-size: 1.26rem;
}

.log-row__body h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.log-row__body p {
  margin: 0.25rem 0 0;
  color: #73849c;
  font-size: 0.94rem;
}

.log-row__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.4rem;
  min-height: 2.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(159, 172, 188, 0.44);
  color: #1a2948;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: lowercase;
}

.log-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.log-pagination-wrap:empty {
  display: none;
}

.log-pagination a,
.log-pagination span {
  color: #8ea0b7;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.log-pagination .current {
  color: var(--color-accent-strong);
}

.log-note {
  display: grid;
  gap: 1.4rem;
  padding: 0 0 clamp(3rem, 5vw, 4.5rem);
}

.log-note h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.log-note__copy {
  column-count: 2;
  column-gap: clamp(2rem, 4vw, 4rem);
  color: #4c5d76;
}

.log-note__copy p {
  margin: 0 0 1rem;
  break-inside: avoid;
}

.log-contact {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(4rem, 7vw, 6rem) 1rem;
  background: #000000;
}

.log-contact .home-project {
  width: min(32rem, 100%);
  margin: 0 auto;
}

.log-contact .home-project__panel {
  padding: clamp(2rem, 4vw, 2.75rem);
}

.log-single__hero {
  --breadcrumb-lift: clamp(2.2rem, 5vw, 4.4rem);
  padding: clamp(2.2rem, 5vw, 4.4rem) 0 2rem;
}

.log-back-link {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: #8ea0b7;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.log-single__copy {
  min-width: 0;
  max-width: 42rem;
}

.log-single__intro {
  margin: 1rem 0 0;
  color: #6f819b;
  font-size: clamp(1.06rem, 1.9vw, 1.25rem);
}

.log-single__media {
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.log-single__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.log-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.82fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}

.log-single__stack,
.log-single__rail {
  display: grid;
  align-content: start;
  gap: clamp(1.4rem, 2.6vw, 2rem);
}

.log-single__rail {
  min-width: 0;
}

.log-single__aside {
  min-width: 0;
  position: sticky;
  top: 8rem;
}

.log-aside-card {
  padding: 1.4rem;
  border: 1px solid rgba(220, 229, 238, 0.94);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.log-aside-card__list {
  display: grid;
  gap: 0.95rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.log-aside-card__list li {
  display: grid;
  gap: 0.18rem;
}

.log-aside-card__list strong {
  color: #93a4ba;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.log-aside-card__list span {
  color: var(--color-text);
}

.log-single__article {
  min-width: 0;
  max-width: none;
  margin-top: clamp(1.8rem, 3.2vw, 3rem);
  padding: clamp(1.8rem, 3vw, 2.3rem);
  border: 1px solid rgba(220, 229, 238, 0.94);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.log-single__article > :first-child {
  margin-top: 0;
}

.log-single__article h2,
.log-single__article h3,
.log-single__article h4 {
  margin-top: 1.8rem;
}

.log-related {
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.log-related__head {
  max-width: 30rem;
  margin-bottom: 1.6rem;
}

.log-related__head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.log-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.log-related-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid rgba(220, 229, 238, 0.94);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.log-related-card__meta {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.log-related-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.log-related-card h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.log-related-card p:last-of-type {
  color: #73849c;
}

html[data-theme="dark"] .log-hero__intro,
html[data-theme="dark"] .log-featured p:last-of-type,
html[data-theme="dark"] .log-row__body p,
html[data-theme="dark"] .log-note__copy,
html[data-theme="dark"] .log-note__copy p,
html[data-theme="dark"] .log-single__intro,
html[data-theme="dark"] .log-related-card p:last-of-type {
  color: #a8b6c9;
}

html[data-theme="dark"] .log-command__line,
html[data-theme="dark"] .log-featured__media,
html[data-theme="dark"] .log-single__media {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .log-index__toolbar,
html[data-theme="dark"] .log-row,
html[data-theme="dark"] .log-single__article,
html[data-theme="dark"] .log-aside-card,
html[data-theme="dark"] .log-related-card {
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme="dark"] .log-aside-card,
html[data-theme="dark"] .log-single__article,
html[data-theme="dark"] .log-related-card {
  background: rgba(8, 19, 29, 0.92);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.28);
}

html[data-theme="dark"] .log-featured h2 a,
html[data-theme="dark"] .log-row__body h3 a,
html[data-theme="dark"] .log-single__copy h1,
html[data-theme="dark"] .log-aside-card__list span,
html[data-theme="dark"] .log-related-card h3 a,
html[data-theme="dark"] .log-note h2 {
  color: #f8fbff;
}

html[data-theme="dark"] .log-featured__meta,
html[data-theme="dark"] .log-single__meta,
html[data-theme="dark"] .log-row__date,
html[data-theme="dark"] .uhurutec-breadcrumb__back,
html[data-theme="dark"] .uhurutec-breadcrumb__current,
html[data-theme="dark"] .log-back-link,
html[data-theme="dark"] .log-rss-link,
html[data-theme="dark"] .log-filter,
html[data-theme="dark"] .log-pagination a,
html[data-theme="dark"] .log-pagination span,
html[data-theme="dark"] .log-aside-card__list strong {
  color: #8ea2bb;
}

html[data-theme="dark"] .log-row__button {
  border-color: rgba(148, 163, 184, 0.26);
  color: #dfe8f5;
}

html[data-theme="dark"] .uhurutec-breadcrumb::after {
  background: linear-gradient(90deg, rgba(103, 215, 255, 0.78), rgba(72, 110, 166, 0.42), rgba(72, 110, 166, 0));
}

@media (max-width: 1120px) {
  .log-hero__grid,
  .log-featured,
  .log-single__layout {
    grid-template-columns: 1fr;
  }

  .log-hero__copy,
  .log-featured__copy {
    max-width: 100%;
  }

  .log-single__aside {
    position: static;
  }

  .log-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .log-hero,
  .log-featured,
  .log-index,
  .log-note,
  .log-single__hero,
  .log-related {
    width: var(--content-width);
  }

  .log-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .log-row__button {
    justify-self: start;
  }

  .log-note__copy {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  .log-hero__title {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .log-featured h2,
  .log-single__copy h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }
}

.case-archive {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.case-archive__hero,
.case-archive__featured,
.case-archive__collection {
  width: var(--wide-width);
  margin: 0 auto;
}

.case-archive__hero {
  --breadcrumb-lift: clamp(2.4rem, 5vw, 4.8rem);
  padding: clamp(2.4rem, 5vw, 4.8rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.case-archive__hero-grid,
.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.case-archive__hero-copy {
  max-width: 31rem;
}

.case-archive__hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 5.5rem);
  line-height: 0.92;
}

.case-archive__hero-title span {
  display: block;
}

.case-archive__hero-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.case-archive__hero-intro {
  margin: 1.2rem 0 0.9rem;
  max-width: 28rem;
  color: #6f819b;
  font-size: clamp(1.04rem, 1.95vw, 1.25rem);
  line-height: 1.5;
}

.case-archive__hero-copy .service-button {
  margin-top: 1rem;
  border-radius: 0;
}

.case-archive__hero-art {
  display: grid;
  place-items: center;
}

.case-archive__hero-art img {
  width: min(18rem, 100%);
}

.case-archive__featured {
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.case-feature {
  border: 1px solid rgba(224, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.case-feature__copy {
  padding: clamp(1.7rem, 3.2vw, 2.5rem);
}

.case-feature__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.02;
}

.case-feature__copy p {
  color: #6f819b;
}

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

.case-feature__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.3rem 0 1.5rem;
}

.case-feature__metric {
  display: grid;
  gap: 0.18rem;
  min-width: 5.5rem;
}

.case-feature__metric strong,
.case-quote__meta span {
  font-family: var(--font-mono);
}

.case-feature__metric strong {
  color: var(--color-accent);
  font-size: 1.9rem;
  line-height: 1;
}

.case-feature__metric span {
  color: #93a4ba;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-feature__media {
  display: block;
  min-height: 100%;
  text-decoration: none;
}

.case-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.case-archive__collection {
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.case-grid,
.case-slider__track {
  display: grid;
  gap: 1rem;
}

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

.case-card {
  border: 1px solid rgba(224, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.case-card__link {
  display: grid;
  gap: 0.9rem;
  height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.case-card__meta,
.case-card__tags span,
.case-slider__arrow,
.case-slider__dot,
.case-quote__meta span {
  font-family: var(--font-mono);
}

.case-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #8ea0b7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-card__meta strong {
  color: #22c55e;
}

.case-card h3 {
  margin: 0;
  font-size: 1.34rem;
}

.case-card p {
  margin: 0;
  color: #73849c;
  font-size: 0.94rem;
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.case-card__tags span {
  padding: 0.28rem 0.45rem;
  background: rgba(241, 245, 249, 0.98);
  color: #9baabe;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-slider {
  display: grid;
  gap: 1rem;
}

.case-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.case-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(159, 172, 188, 0.44);
  background: #ffffff;
  color: #1a2948;
  font-size: 1rem;
  cursor: pointer;
}

.case-slider__arrow:disabled {
  opacity: 0.34;
  cursor: default;
}

.case-slider__viewport {
  overflow: hidden;
}

.case-slider__track {
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
}

.case-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.case-slider__dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
  cursor: pointer;
}

.case-slider__dot.is-active {
  background: var(--color-accent-strong);
}

.case-slider.is-static .case-slider__controls,
.case-slider.is-static .case-slider__dots {
  display: none;
}

.case-quote {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(4rem, 7vw, 6rem) 1rem;
  background: #1e1e1e;
  color: #ffffff;
}

.case-quote__inner {
  width: min(52rem, calc(100vw - 3rem));
  margin: 0 auto;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-accent);
}

.case-quote blockquote {
  margin: 0;
}

.case-quote blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.32;
  font-style: italic;
}

.case-quote__meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.case-quote__meta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[data-theme="dark"] .case-archive__hero-intro,
html[data-theme="dark"] .case-feature__copy p,
html[data-theme="dark"] .case-card p {
  color: #a8b6c9;
}

html[data-theme="dark"] .case-feature,
html[data-theme="dark"] .case-card,
html[data-theme="dark"] .case-slider__arrow {
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme="dark"] .case-feature,
html[data-theme="dark"] .case-card {
  background: rgba(8, 19, 29, 0.92);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
}

html[data-theme="dark"] .case-feature__media {
  border: 1px solid rgba(75, 105, 138, 0.28);
  border-radius: var(--radius-m);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 19, 29, 0.92), rgba(11, 24, 37, 0.96)),
    radial-gradient(circle at center, rgba(6, 220, 233, 0.08), transparent 60%);
}

html[data-theme="dark"] .case-feature__copy h2,
html[data-theme="dark"] .case-card h3,
html[data-theme="dark"] .case-card__link {
  color: #f8fbff;
}

html[data-theme="dark"] .case-card__meta,
html[data-theme="dark"] .case-card__tags span,
html[data-theme="dark"] .case-feature__metric span {
  color: #8ea2bb;
}

html[data-theme="dark"] .case-card__tags span,
html[data-theme="dark"] .case-slider__arrow {
  background: rgba(8, 19, 29, 0.96);
  color: #dfe8f5;
}

@media (max-width: 1120px) {
  .case-archive__hero-grid,
  .case-feature {
    grid-template-columns: 1fr;
  }

  .case-archive__hero-copy {
    max-width: 100%;
  }

  .case-feature__media img {
    min-height: 18rem;
  }

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

  .case-slider__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 820px) {
  .case-archive__hero,
  .case-archive__featured,
  .case-archive__collection {
    width: var(--content-width);
  }

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

@media (max-width: 640px) {
  .case-archive__hero-title {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .case-slider__track {
    grid-auto-columns: 100%;
  }

  .case-quote__inner {
    width: min(100%, calc(100vw - 2rem));
  }
}

.contact-page {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.contact-page__hero,
.contact-page__connect,
.contact-page__location {
  width: var(--wide-width);
  margin: 0 auto;
}

.contact-page__hero {
  --breadcrumb-lift: clamp(3rem, 6vw, 5.6rem);
  position: relative;
  padding: clamp(3rem, 6vw, 5.6rem) 0 clamp(4rem, 8vw, 6.4rem);
}

.contact-page__hero::before,
.contact-page__hero::after {
  position: absolute;
  color: rgba(15, 23, 42, 0.28);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  content: "+";
}

.contact-page__hero::before {
  top: 3.4rem;
  left: 1rem;
}

.contact-page__hero::after {
  bottom: 2.8rem;
  left: 5.6rem;
}

.contact-page__hero-grid,
.contact-page__connect,
.contact-page__location {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1fr);
  gap: clamp(2.25rem, 4vw, 6rem);
  align-items: center;
}

.contact-page__hero-copy {
  max-width: 29rem;
}

.contact-page__hero-title {
  margin: 0;
  font-size: clamp(3.1rem, 6.4vw, 5.8rem);
  line-height: 0.9;
}

.contact-page__hero-title span {
  display: block;
}

.contact-page__hero-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-page__hero-intro {
  margin: 1.2rem 0 0;
  max-width: 31rem;
  color: #6f819b;
  font-size: clamp(1.03rem, 1.9vw, 1.26rem);
  line-height: 1.5;
}

.contact-page__hero-context {
  margin: 1rem 0 0;
  color: #8ea0b7;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-page__hero-copy .service-button {
  margin-top: 1.7rem;
}

.contact-page__hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(17rem, 32vw, 27rem);
}

.contact-page__hero-art img {
  width: min(100%, 30rem);
  height: auto;
}

.contact-page__signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  width: min(100%, 24rem);
}

.contact-page__signal span {
  display: block;
  width: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(6, 220, 233, 0.65), rgba(111, 152, 255, 0.7));
}

.contact-page__signal span:nth-child(1) {
  height: 3rem;
}

.contact-page__signal span:nth-child(2) {
  height: 7.7rem;
}

.contact-page__signal span:nth-child(3) {
  height: 11.8rem;
}

.contact-page__signal span:nth-child(4) {
  height: 6.4rem;
}

.contact-page__signal span:nth-child(5) {
  height: 9rem;
}

.contact-page__signal span:nth-child(odd) {
  background: linear-gradient(180deg, rgba(6, 220, 233, 0.45), rgba(6, 220, 233, 0.72));
}

.contact-page__signal span:nth-child(even) {
  background: linear-gradient(180deg, rgba(160, 214, 255, 0.55), rgba(108, 131, 255, 0.72));
}

.contact-page__connect {
  align-items: start;
  padding-bottom: clamp(4.8rem, 8vw, 7rem);
}

.contact-page__people {
  max-width: 27rem;
}

.contact-page__people-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.contact-page__person-card {
  box-shadow: none;
}

.contact-page__person-card .home-person-card__body h3 {
  font-size: 1.4rem;
}

.contact-page__person-card .home-person-card__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-page__person-card .home-person-card__meta a::before {
  color: var(--color-accent);
  font-size: 0.88rem;
}

.contact-page__person-card .home-person-card__meta a[href^="tel:"]::before {
  content: ">";
}

.contact-page__person-card .home-person-card__meta a[href^="mailto:"]::before {
  content: "@";
}

.contact-page__project {
  width: 100%;
  padding-top: clamp(0rem, 2vw, 1rem);
}

.contact-page__project .home-project__panel {
  padding: clamp(2.4rem, 4vw, 3rem);
}

.contact-page__command-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-page__command-prefix {
  color: #06dce9;
}

.contact-page__location {
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1fr);
  align-items: stretch;
  padding: clamp(3.6rem, 6vw, 5.4rem) 0 clamp(4rem, 6vw, 5.6rem);
}

.contact-page__location-copy {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.contact-page__location-copy h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-page__location-intro {
  margin: 0.95rem 0 0;
  max-width: 24rem;
  color: #667892;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-page__location-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.7rem;
  color: #7f91a7;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.contact-page__location-meta p {
  margin: 0;
}

.contact-page__location-company {
  color: #6a7f95;
  font-weight: 700;
}

.contact-page__location-address {
  line-height: 1.7;
}

.contact-page__location-meta span {
  color: #a0b0c4;
}

.contact-page__location-meta a {
  color: var(--color-accent-strong);
  text-decoration: none;
}

.contact-page__map {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 35vw, 28rem);
  background: linear-gradient(180deg, rgba(230, 239, 245, 0.92), rgba(212, 224, 235, 0.96));
}

.contact-page__map iframe,
.contact-page__map-canvas,
.contact-page__map-fallback {
  width: 100%;
  height: 100%;
}

.contact-page__map iframe,
.contact-page__map-canvas {
  display: block;
  border: 0;
}

.contact-page__map-canvas {
  position: relative;
  min-height: inherit;
}

.contact-page__map.is-mapbox-ready .contact-page__map-fallback {
  display: none;
}

.contact-page__map .mapboxgl-map,
.contact-page__map .mapboxgl-canvas,
.contact-page__map .mapboxgl-canvas-container {
  width: 100%;
  height: 100%;
}

.contact-page__map .mapboxgl-ctrl-logo,
.contact-page__map .mapboxgl-ctrl-attrib-button {
  opacity: 0.85;
}

.contact-page__map-fallback {
  position: relative;
  background:
    radial-gradient(circle at 18% 26%, rgba(112, 190, 122, 0.42) 0, rgba(112, 190, 122, 0.42) 4%, transparent 4.2%),
    radial-gradient(circle at 74% 38%, rgba(111, 160, 206, 0.35) 0, rgba(111, 160, 206, 0.35) 5%, transparent 5.2%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 18%, transparent 18% 20%, rgba(255, 255, 255, 0.24) 20% 62%, transparent 62% 64%, rgba(255, 255, 255, 0.32) 64% 100%),
    linear-gradient(0deg, rgba(224, 236, 224, 0.88), rgba(208, 220, 230, 0.92));
}

.contact-page__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 3.4rem 3.4rem;
  mix-blend-mode: soft-light;
}

.contact-page__map-pin {
  position: absolute;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 0.4rem rgba(0, 178, 226, 0.14);
}

.contact-page__map-pin--primary {
  top: 42%;
  left: 56%;
  background: #ff4d4f;
  box-shadow: 0 0 0 0.55rem rgba(255, 77, 79, 0.18);
}

.contact-page__map-pin--one {
  top: 26%;
  left: 70%;
}

.contact-page__map-pin--two {
  bottom: 18%;
  left: 24%;
  background: #ffb347;
  box-shadow: 0 0 0 0.4rem rgba(255, 179, 71, 0.14);
}

.contact-page__map-pin--three {
  top: 32%;
  left: 38%;
  background: #cf79ff;
  box-shadow: 0 0 0 0.4rem rgba(207, 121, 255, 0.14);
}

html[data-theme="dark"] .contact-page__hero-intro,
html[data-theme="dark"] .contact-page__location-intro,
html[data-theme="dark"] .contact-page__location-meta,
html[data-theme="dark"] .contact-page__hero-context {
  color: #a4b3c7;
}

html[data-theme="dark"] .contact-page__person-card {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(16, 24, 39, 0.86);
}

html[data-theme="dark"] .contact-page__person-card .home-person-card__body h3,
html[data-theme="dark"] .contact-page__location-copy h2 {
  color: #f8fafc;
}

html[data-theme="dark"] .contact-page__map {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.94));
}

@media (max-width: 1080px) {
  .contact-page__hero-grid,
  .contact-page__connect,
  .contact-page__location {
    grid-template-columns: 1fr;
  }

  .contact-page__hero-copy,
  .contact-page__people {
    max-width: none;
  }

  .contact-page__hero-art {
    min-height: 13rem;
  }

  .contact-page__project {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .contact-page__hero,
  .contact-page__connect,
  .contact-page__location {
    width: var(--content-width);
  }

  .contact-page__hero-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .contact-page__signal {
    gap: 0.65rem;
  }

  .contact-page__signal span:nth-child(3) {
    height: 8.8rem;
  }

  .contact-page__hero::before,
  .contact-page__hero::after {
    display: none;
  }

  .contact-page__location {
    padding-bottom: clamp(3rem, 8vw, 4rem);
  }
}

.about-page {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.team-page {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.about-page__hero,
.about-page__definition,
.about-page__people,
.about-page__timeline-wrap {
  width: var(--wide-width);
  margin: 0 auto;
}

.about-page__hero {
  --breadcrumb-lift: clamp(3rem, 6vw, 5.2rem);
  position: relative;
  padding: clamp(3rem, 6vw, 5.2rem) 0 clamp(4rem, 7vw, 5.8rem);
}

.about-page__hero::before,
.about-page__hero::after {
  position: absolute;
  color: rgba(15, 23, 42, 0.25);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  content: "+";
}

.about-page__hero::before {
  top: 2.8rem;
  left: 0.75rem;
}

.about-page__hero::after {
  bottom: 1.2rem;
  left: 2rem;
}

.about-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.88fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.about-page__hero-copy {
  max-width: 30rem;
}

.about-page__hero-title {
  margin: 0;
  font-size: clamp(3.1rem, 6.4vw, 5.9rem);
  line-height: 0.92;
}

.about-page__hero-title span {
  display: block;
}

.about-page__hero-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-page__hero-intro {
  margin: 1.15rem 0 0;
  max-width: 29rem;
  color: #6d809a;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  line-height: 1.5;
}

.about-page__hero-context {
  margin: 1rem 0 0;
  color: #92a3b8;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-page__hero-copy .service-button {
  margin-top: 1.65rem;
}

.about-page__hero-art {
  display: grid;
  place-items: center;
  min-height: clamp(16rem, 31vw, 25rem);
}

.about-page__hero-art img {
  width: min(100%, 28rem);
  height: auto;
}

.about-page__definition {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 2.6rem);
  border: 1px solid rgba(225, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.92);
}

.about-page__definition-wordmark h2 {
  margin: 0;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.about-page__definition-wordmark p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin: 0.8rem 0 0;
  color: #88a0bb;
  font-family: var(--font-mono);
  font-size: 1rem;
}

.about-page__definition-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.about-page__definition-copy > p {
  margin: 0.8rem 0 0;
  color: #70839d;
  line-height: 1.55;
}

.about-page__definition-copy blockquote {
  margin: 1.15rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(31, 77, 231, 0.24);
}

.about-page__definition-copy blockquote p {
  margin: 0;
  color: #50627c;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.6;
}

.about-page__people {
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4rem);
}

.about-page__section-head {
  max-width: 31rem;
}

.about-page__section-head--center {
  margin: 0 auto;
  text-align: center;
}

.about-page__section-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.about-page__section-head p:last-child {
  margin: 0.75rem 0 0;
  color: #73849d;
  line-height: 1.5;
}

.about-page__people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2rem);
  width: min(100%, 43rem);
  margin: 2rem auto 0;
}

.about-page__person-card {
  border: 1px solid rgba(228, 235, 242, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.about-page__person-portrait {
  position: relative;
  aspect-ratio: 0.86 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243, 247, 251, 0.95), rgba(230, 237, 244, 0.98));
}

.about-page__person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__person-portrait .home-person-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.04);
}

.about-page__person-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1rem 1.15rem;
}

.about-page__person-role {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-page__person-body h3 {
  margin: -0.2rem 0 0;
  font-size: 1.65rem;
}

.about-page__person-body > p {
  margin: 0;
  color: #6f829c;
  font-size: 0.94rem;
  line-height: 1.52;
}

.about-page__person-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(231, 237, 243, 0.96);
  color: #90a2b9;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-page__timeline-wrap {
  padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(5rem, 8vw, 7rem);
}

.about-timeline {
  position: relative;
  margin-top: 2rem;
  padding: 0 0 0.5rem;
  --timeline-line-start: 0px;
  --timeline-line-length: 100%;
  --timeline-progress-length: 0px;
}

.about-timeline::before,
.about-timeline::after {
  position: absolute;
  top: var(--timeline-line-start);
  left: 50%;
  width: 3px;
  height: var(--timeline-line-length);
  content: "";
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.about-timeline::before {
  background: linear-gradient(180deg, rgba(6, 220, 233, 0.34), rgba(31, 77, 231, 0.34));
  box-shadow: 0 0 0.7rem rgba(6, 220, 233, 0.12);
}

.about-timeline::after {
  height: var(--timeline-progress-length);
  background: var(--gradient-brand);
  box-shadow: 0 0 1rem rgba(6, 220, 233, 0.2);
  transition: height 160ms linear;
}

.about-timeline__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 7rem 1fr;
  gap: 0;
  align-items: center;
  min-height: 10rem;
  opacity: 0.22;
  transform: translateY(2rem);
  transition: opacity 480ms ease, transform 480ms ease;
}

.about-timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-timeline__item + .about-timeline__item {
  margin-top: 1rem;
}

.about-timeline__year {
  position: relative;
  z-index: 3;
  grid-column: 2;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 4.8rem;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(227, 235, 242, 0.98);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 0 0 0.45rem rgba(255, 255, 255, 0.98),
    0 12px 32px rgba(15, 23, 42, 0.08);
  color: var(--color-accent-strong);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.about-timeline__item.is-active .about-timeline__year {
  border-color: rgba(6, 220, 233, 0.18);
  background: linear-gradient(135deg, #06dce9 0%, #1f4de7 100%);
  box-shadow:
    0 0 0 0.45rem rgba(255, 255, 255, 0.98),
    0 0 0 0.75rem rgba(6, 220, 233, 0.14),
    0 0 24px rgba(6, 220, 233, 0.28),
    0 16px 38px rgba(31, 77, 231, 0.2);
  color: #ffffff;
  transform: scale(1.04);
}

.about-timeline__card {
  width: min(100%, 28rem);
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid rgba(228, 235, 242, 0.96);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  transition: transform 480ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-timeline__item.is-left .about-timeline__card {
  grid-column: 1;
  justify-self: end;
  transform: translateX(-1rem);
}

.about-timeline__item.is-right .about-timeline__card {
  grid-column: 3;
  justify-self: start;
  transform: translateX(1rem);
}

.about-timeline__item.is-visible .about-timeline__card {
  transform: translateX(0);
}

.about-timeline__item.is-active .about-timeline__card {
  border-color: rgba(31, 77, 231, 0.14);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.about-timeline__kicker {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-timeline__card h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.about-timeline__card p:last-child {
  margin: 0.45rem 0 0;
  color: #70839d;
  line-height: 1.55;
}

.about-page__contact {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

html[data-theme="dark"] .about-page__hero-intro,
html[data-theme="dark"] .about-page__hero-context,
html[data-theme="dark"] .about-page__definition-copy > p,
html[data-theme="dark"] .about-page__definition-copy blockquote p,
html[data-theme="dark"] .about-page__section-head p:last-child,
html[data-theme="dark"] .about-page__person-body > p,
html[data-theme="dark"] .about-page__person-meta,
html[data-theme="dark"] .about-timeline__card p:last-child {
  color: #a6b6c9;
}

html[data-theme="dark"] .about-page__definition,
html[data-theme="dark"] .about-page__person-card,
html[data-theme="dark"] .about-timeline__card,
html[data-theme="dark"] .about-timeline__year {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(8, 19, 29, 0.92);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.26);
}

html[data-theme="dark"] .about-timeline__year {
  box-shadow:
    0 0 0 0.45rem rgba(4, 11, 18, 0.96),
    0 18px 40px rgba(2, 6, 23, 0.26);
}

html[data-theme="dark"] .about-timeline__item.is-active .about-timeline__year {
  border-color: rgba(6, 220, 233, 0.2);
  background: linear-gradient(135deg, #06dce9 0%, #1f4de7 100%);
  box-shadow:
    0 0 0 0.45rem rgba(4, 11, 18, 0.96),
    0 0 0 0.8rem rgba(6, 220, 233, 0.12),
    0 0 30px rgba(6, 220, 233, 0.24),
    0 20px 44px rgba(2, 6, 23, 0.42);
  color: #ffffff;
}

html[data-theme="dark"] .about-page__definition-copy h3,
html[data-theme="dark"] .about-page__person-body h3,
html[data-theme="dark"] .about-page__section-head h2,
html[data-theme="dark"] .about-timeline__card h3 {
  color: #f8fafc;
}

html[data-theme="dark"] .about-page__definition-wordmark p {
  color: #b2c3d8;
}

html[data-theme="dark"] .about-timeline__item.is-active .about-timeline__card {
  border-color: rgba(6, 220, 233, 0.16);
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.34);
}

html[data-theme="dark"] .about-timeline::before {
  background: linear-gradient(180deg, rgba(6, 220, 233, 0.4), rgba(31, 77, 231, 0.36));
  box-shadow: 0 0 0.85rem rgba(6, 220, 233, 0.14);
}

@media (max-width: 1080px) {
  .about-page__hero-grid,
  .about-page__definition {
    grid-template-columns: 1fr;
  }

  .about-page__hero-copy {
    max-width: none;
  }

  .about-page__people-grid {
    width: 100%;
  }

  .about-timeline::before,
  .about-timeline::after {
    left: 2rem;
    transform: none;
  }

  .about-timeline__item {
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1rem;
    min-height: 0;
  }

  .about-timeline__year {
    grid-column: 1;
  }

  .about-timeline__item.is-left .about-timeline__card,
  .about-timeline__item.is-right .about-timeline__card {
    grid-column: 2;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .about-page__hero,
  .about-page__definition,
  .about-page__people,
  .about-page__timeline-wrap {
    width: var(--content-width);
  }

  .about-page__hero-title {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .about-page__definition,
  .about-page__people-grid {
    grid-template-columns: 1fr;
  }

  .about-page__hero::before,
  .about-page__hero::after {
    display: none;
  }

  .about-timeline::before,
  .about-timeline::after {
    left: 1.35rem;
  }

  .about-timeline__item {
    grid-template-columns: 3.2rem minmax(0, 1fr);
  }

  .about-timeline__year {
    width: 2.7rem;
    font-size: 0.62rem;
  }
}

.team-page {
  padding: clamp(2.6rem, 5vw, 4.25rem) 0 clamp(4.75rem, 7vw, 6.75rem);
}

.team-page__hero,
.team-page__story,
.team-page__roster,
.team-page__cta {
  width: var(--wide-width);
  margin: 0 auto;
}

.team-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(1.35rem, 2.4vw, 2rem);
  align-items: stretch;
}

.team-page__hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(228, 235, 242, 0.96);
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.94));
  box-shadow: var(--shadow-soft);
}

.team-page__hero-copy::after {
  position: absolute;
  right: -4.5rem;
  bottom: -4.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 77, 231, 0.08), transparent 66%);
  content: "";
  pointer-events: none;
}

.team-page__hero-title {
  max-width: 11ch;
  margin: 0.3rem 0 0;
  font-size: clamp(3rem, 6.6vw, 5.55rem);
  line-height: 0.92;
}

.team-page__hero-intro {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: #70839d;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.58;
}

.team-page__hero-metrics {
  display: grid;
  gap: 0.85rem;
  max-width: 34rem;
  margin-top: 1.7rem;
}

.team-page__hero-metric {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: #1b2b43;
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.team-page__hero-metric strong {
  color: var(--color-accent-strong);
}

.team-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
  margin-top: 1.9rem;
}

.team-page__ghost-link {
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.team-page__ghost-link:hover,
.team-page__ghost-link:focus-visible {
  color: var(--color-accent-strong);
}

.team-page__operations {
  display: grid;
  align-content: start;
  gap: 1.4rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(6, 220, 233, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(3, 10, 17, 0.98), rgba(7, 16, 26, 0.98));
  color: #ffffff;
  box-shadow: 0 28px 68px rgba(2, 6, 23, 0.24);
}

.team-page__operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.team-page__operations-stat {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.team-page__operations-stat span,
.team-page__operations-label {
  color: rgba(166, 185, 205, 0.96);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-page__operations-stat strong {
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1;
}

.team-page__operations-block {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-page__operations-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-page__operations-list li,
.team-page__operations-note {
  margin: 0;
  color: #d9e5f0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.team-page__focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.team-page__focus-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(6, 220, 233, 0.22);
  background: rgba(6, 220, 233, 0.08);
  color: #f5fbff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-page__story {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.4rem);
  align-items: start;
  margin-top: clamp(2rem, 5vw, 3.3rem);
}

.team-page__story-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.team-page__story-head p:last-child {
  margin: 0.8rem 0 0;
  color: #70839d;
  line-height: 1.56;
}

.team-page__story-content {
  padding: clamp(1.6rem, 3vw, 2rem);
  border: 1px solid rgba(228, 235, 242, 0.96);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
}

.team-page__story-content > :first-child {
  margin-top: 0;
}

.team-page__story-content > :last-child {
  margin-bottom: 0;
}

.team-page__story-content p,
.team-page__story-content li {
  color: #647892;
  line-height: 1.65;
}

.team-page__story-content h1,
.team-page__story-content h2,
.team-page__story-content h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
}

.team-page__roster {
  --breadcrumb-lift: clamp(2.4rem, 5vw, 4.8rem);
  margin-top: 0;
  padding-top: clamp(2.4rem, 5vw, 4.8rem);
}

.team-page__roster-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: start;
  justify-content: space-between;
}

.team-page__roster-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.team-page__roster-head > p {
  max-width: 31rem;
  margin: 0;
  color: #70839d;
  line-height: 1.56;
}

.team-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(206, 219, 232, 0.72);
}

.team-page__filter {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(189, 204, 220, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #6f8198;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.team-page__filter:hover,
.team-page__filter:focus-visible,
.team-page__filter.is-active {
  border-color: rgba(6, 220, 233, 0.78);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(6, 220, 233, 0.15);
  transform: translateY(-0.08rem);
}

.team-page__filter.is-active {
  background: linear-gradient(135deg, rgba(6, 220, 233, 0.18), rgba(31, 77, 231, 0.12));
}

.team-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.6rem);
  margin-top: 1.9rem;
}

.team-page__card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(228, 235, 242, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.team-page__card[hidden] {
  display: none;
}

.team-page__card:hover,
.team-page__card:focus-within {
  border-color: rgba(6, 220, 233, 0.42);
  box-shadow: 0 24px 54px rgba(28, 77, 231, 0.11);
  transform: translateY(-0.18rem);
}

.team-page__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243, 247, 251, 0.95), rgba(230, 237, 244, 0.98));
}

.team-page__portrait::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.12));
  content: "";
  pointer-events: none;
}

.team-page__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-page__portrait .home-person-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.04);
}

.team-page__body {
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem 1.15rem 1.25rem;
}

.team-page__role {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-page__body h3 {
  margin: -0.2rem 0 0;
  font-size: 1.72rem;
  line-height: 1;
}

.team-page__excerpt {
  margin: 0;
  color: #6c7f98;
  line-height: 1.58;
}

.team-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.team-page__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(31, 77, 231, 0.12);
  background: rgba(244, 248, 252, 0.96);
  color: #2f4563;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-page__tag--muted {
  border-color: rgba(148, 163, 184, 0.18);
  color: #60748d;
}

.team-page__tag--category {
  border-color: rgba(6, 220, 233, 0.28);
  background: rgba(6, 220, 233, 0.1);
  color: #0f7188;
}

.team-page__actions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.15rem;
}

.team-page__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.52rem 0.92rem;
  border: 1px solid rgba(6, 220, 233, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, #06dce9 0%, #1f4de7 100%);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(31, 77, 231, 0.14);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.team-page__contact-link:hover,
.team-page__contact-link:focus-visible {
  border-color: rgba(6, 220, 233, 0.72);
  color: #ffffff;
  filter: saturate(1.08) brightness(1.04);
  box-shadow: 0 16px 32px rgba(31, 77, 231, 0.22);
  transform: translateY(-0.08rem);
}

.team-page__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.8rem, 3.6vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(6, 220, 233, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(6, 12, 20, 0.98));
  color: #ffffff;
  box-shadow: 0 28px 68px rgba(2, 6, 23, 0.22);
}

.team-page__cta h2 {
  margin: 0.4rem 0 0;
  max-width: 18ch;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.96;
}

.team-page__cta .service-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
}

.team-page__cta .service-button:hover,
.team-page__cta .service-button:focus-visible {
  border-color: rgba(6, 220, 233, 0.34);
  color: #82dfff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .team-page__hero-copy,
html[data-theme="dark"] .team-page__story-content,
html[data-theme="dark"] .team-page__card {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(8, 19, 29, 0.92);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.28);
}

html[data-theme="dark"] .team-page__hero-intro,
html[data-theme="dark"] .team-page__story-head p:last-child,
html[data-theme="dark"] .team-page__story-content p,
html[data-theme="dark"] .team-page__story-content li,
html[data-theme="dark"] .team-page__roster-head > p,
html[data-theme="dark"] .team-page__excerpt {
  color: #a7b7c9;
}

html[data-theme="dark"] .team-page__hero-title,
html[data-theme="dark"] .team-page__story-content h1,
html[data-theme="dark"] .team-page__story-content h2,
html[data-theme="dark"] .team-page__story-content h3,
html[data-theme="dark"] .team-page__body h3 {
  color: #f8fbff;
}

html[data-theme="dark"] .team-page__hero-metric,
html[data-theme="dark"] .team-page__ghost-link,
html[data-theme="dark"] .team-page__contact-link {
  color: #f8fbff;
}

html[data-theme="dark"] .team-page__ghost-link:hover,
html[data-theme="dark"] .team-page__ghost-link:focus-visible,
html[data-theme="dark"] .team-page__contact-link:hover,
html[data-theme="dark"] .team-page__contact-link:focus-visible {
  color: #82dfff;
}

html[data-theme="dark"] .team-page__tag {
  border-color: rgba(6, 220, 233, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #e5f4ff;
}

html[data-theme="dark"] .team-page__filters {
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .team-page__filter {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(8, 19, 29, 0.82);
  color: #a7b7c9;
}

html[data-theme="dark"] .team-page__filter:hover,
html[data-theme="dark"] .team-page__filter:focus-visible,
html[data-theme="dark"] .team-page__filter.is-active {
  border-color: rgba(6, 220, 233, 0.62);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 220, 233, 0.13);
}

html[data-theme="dark"] .team-page__filter.is-active {
  background: linear-gradient(135deg, rgba(6, 220, 233, 0.18), rgba(31, 77, 231, 0.16));
}

html[data-theme="dark"] .team-page__tag--category {
  border-color: rgba(6, 220, 233, 0.35);
  color: #82dfff;
}

html[data-theme="dark"] .team-page__tag--muted,
html[data-theme="dark"] .team-page__contact-link {
  border-color: rgba(148, 163, 184, 0.16);
  color: #cfe0ee;
}

html[data-theme="dark"] .team-page__contact-link {
  border-color: rgba(6, 220, 233, 0.16);
  background: linear-gradient(135deg, #06dce9 0%, #1f4de7 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 220, 233, 0.12);
}

html[data-theme="dark"] .team-page__contact-link:hover,
html[data-theme="dark"] .team-page__contact-link:focus-visible {
  border-color: rgba(6, 220, 233, 0.7);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(6, 220, 233, 0.18);
}

html[data-theme="dark"] .team-page__portrait {
  background: linear-gradient(180deg, rgba(17, 30, 43, 0.94), rgba(8, 18, 28, 0.98));
}

@media (max-width: 1080px) {
  .team-page__hero-grid,
  .team-page__story {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .team-page__hero,
  .team-page__story,
  .team-page__roster,
  .team-page__cta {
    width: var(--content-width);
  }

  .team-page__operations-grid,
  .team-page__grid {
    grid-template-columns: 1fr;
  }

  .team-page__cta {
    grid-template-columns: 1fr;
  }

  .team-page__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .team-page__contact-link,
  .team-page__ghost-link {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .uhurutec-breadcrumb {
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
  }

  .uhurutec-breadcrumb__nav {
    align-items: flex-start;
  }

  .uhurutec-breadcrumb__back,
  .uhurutec-breadcrumb__current {
    font-size: 0.68rem;
  }

  .uhurutec-breadcrumb__current {
    width: 100%;
    text-align: left;
  }
}

.offering-archive-page,
.offering-page {
  display: grid;
  gap: 0;
  padding-top: clamp(1.5rem, 2vw, 2rem);
}

.offering-archive__hero,
.offering-archive__catalog,
.offering-archive__story,
.offering-page__content,
.offering-section {
  width: var(--wide-width);
  margin: 0 auto;
}

.offering-archive__hero {
  --breadcrumb-lift: clamp(4.3rem, 7vw, 6rem);
  padding: clamp(4.3rem, 7vw, 6rem) 0 clamp(2.6rem, 4vw, 3.6rem);
}

.offering-archive__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.offering-archive__hero-copy {
  max-width: 38rem;
}

.offering-archive__hero-title {
  margin: 0 0 1.2rem;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  line-height: 0.92;
}

.offering-archive__hero-title span,
.offering-archive-card__title span {
  display: block;
}

.offering-archive__hero-accent,
.offering-archive-card__accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offering-archive__hero-intro {
  max-width: 34rem;
  margin: 0 0 1rem;
  color: #6c7e97;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
}

.offering-archive__hero-meta {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.offering-archive__hero-meta .service-component-tag {
  margin: 0;
}

.offering-archive__hero-art {
  display: grid;
  place-items: center;
}

.offering-archive__hero-art img {
  width: min(22rem, 100%);
  opacity: 0.9;
}

.offering-archive__catalog {
  padding: 0 0 clamp(3rem, 5vw, 4.5rem);
}

.offering-archive__section-head {
  max-width: 37rem;
  margin-bottom: 1.9rem;
}

.offering-archive__section-head--compact {
  margin-bottom: 1.4rem;
}

.offering-archive__section-head h2,
.offering-section__head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.03;
}

.offering-archive__section-head p:last-child,
.offering-section__head p:last-child {
  margin: 0;
  color: #6f819b;
}

.offering-archive__grid,
.offering-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.offering-archive-card {
  min-height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.offering-archive-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.offering-archive-card__media {
  display: grid;
  place-items: center;
  min-height: 13.5rem;
  padding: 1.6rem;
  background:
    radial-gradient(circle at center, rgba(6, 220, 233, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 250, 0.96));
  text-decoration: none;
}

.offering-archive-card__media img {
  width: min(9rem, 100%);
  height: auto;
  object-fit: contain;
}

.offering-archive-card__body,
.offering-expertise-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.45rem 1.5rem 1.6rem;
}

.offering-archive-card__component,
.offering-expertise-card__badge {
  margin: 0;
  color: #8ea0b7;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offering-archive-card__title,
.offering-expertise-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.98;
}

.offering-archive-card__summary,
.offering-expertise-card p {
  margin: 0;
  color: #61748f;
  line-height: 1.65;
}

.offering-archive-card .service-button {
  justify-self: start;
  margin-top: 0.35rem;
}

.offering-section--credentials,
.offering-section--execution,
.offering-section--sla {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(5rem, 6vw, 5.9rem) 0 4.2rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(243, 247, 251, 0.98));
}

.offering-section--credentials > .offering-section__head,
.offering-credentials-grid,
.offering-credentials__actions,
.offering-execution,
.offering-sla {
  width: var(--wide-width);
  margin-left: auto;
  margin-right: auto;
}

.offering-execution__actions,
.offering-credentials__actions {
  margin-top: 1.5rem;
}

.offering-archive__story {
  padding: clamp(3.5rem, 5vw, 4.6rem) 0 0;
}

.offering-archive__story-text {
  color: var(--color-text);
  column-count: 2;
  column-gap: 2.5rem;
  line-height: 1.8;
}

.offering-archive__story-text p {
  margin-top: 0;
  break-inside: avoid;
}

.offering-archive__grass {
  margin-top: 2.5rem;
}

.offering-page__content {
  padding: 0 0 1rem;
}

.offering-page__content-inner {
  max-width: 52rem;
  color: var(--color-text-soft);
}

.offering-page__content-inner > :first-child {
  margin-top: 0;
}

.offering-section {
  padding: 2rem 0 4rem;
}

.offering-section--expertise {
  padding-top: 0;
}

.offering-section__head {
  max-width: 34rem;
  margin-bottom: 1.85rem;
}

.offering-section--credentials > .offering-section__head {
  width: var(--wide-width);
  max-width: var(--wide-width);
  margin: 0 auto 2.3rem;
}

.offering-section--credentials > .offering-section__head > * {
  max-width: 34rem;
}

.offering-section__head p:last-child {
  margin: 0;
}

.offering-expertise-card {
  display: grid;
  grid-template-rows: auto 2.2rem minmax(3.4rem, auto) auto;
  gap: 0.8rem;
  align-content: start;
  align-items: start;
  min-height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.offering-expertise-card__topline {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.62);
}

.offering-expertise-card__icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  height: 2.2rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1;
}

.offering-expertise-card__icon img {
  width: 2.8rem;
  height: 1.8rem;
  object-fit: contain;
  object-position: left top;
}

.offering-expertise-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
  align-self: start;
}

.offering-expertise-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.83rem;
  line-height: 1.55;
}

.offering-expertise-card__copy {
  display: grid;
  gap: 0.55rem;
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.83rem;
  line-height: 1.55;
}

.offering-expertise-card__copy ul,
.offering-expertise-card__copy ol {
  margin: 0;
  padding-left: 1.1rem;
}

.offering-expertise-card__copy li + li {
  margin-top: 0.28rem;
}

.offering-expertise-card__copy a {
  color: var(--color-accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.offering-section--execution {
  padding-top: 0;
}

.offering-section--credentials {
  padding-top: 0;
}

.offering-section--story {
  padding-top: clamp(3.6rem, 5vw, 4.8rem);
}

.offering-credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.offering-credentials-card {
  display: grid;
  place-items: center;
  gap: 0.6rem;
  min-height: 7.9rem;
  padding: 1.4rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.58);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.offering-credentials-card h3 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offering-credentials-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

.offering-credentials-card:hover,
.offering-credentials-card:focus-within {
  border-color: rgba(0, 178, 226, 0.75);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.offering-credentials__actions {
  margin-top: 2rem;
}

.offering-plan-list {
  --offering-plan-marker-size: 2.95rem;
  --offering-plan-axis: 1.675rem;
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 0.35rem 0 0.75rem;
}

.offering-plan-list::before {
  content: "";
  position: absolute;
  left: var(--offering-plan-axis);
  top: calc(0.35rem + (var(--offering-plan-marker-size) / 2));
  bottom: 1rem;
  width: 1px;
  background: rgba(148, 163, 184, 0.28);
  z-index: 0;
}

.offering-plan-step {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.offering-plan-step__marker {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.offering-plan-step__marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--offering-plan-marker-size);
  height: var(--offering-plan-marker-size);
  margin-left: 0.2rem;
  border: 1px solid rgba(148, 163, 184, 0.62);
  background: #f8fafc;
  color: #25324a;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.offering-plan-step__body {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.1rem;
  transition: transform 180ms ease;
}

.offering-plan-step__body h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
}

.offering-plan-step__body p {
  margin: 0;
  color: #64748b;
  line-height: 1.35;
}

.offering-plan-step:hover .offering-plan-step__marker span,
.offering-plan-step:focus-within .offering-plan-step__marker span {
  border-color: rgba(31, 77, 231, 0.42);
  background: #ffffff;
  color: #1f4de7;
  box-shadow: 0 14px 30px rgba(31, 77, 231, 0.14);
  transform: translateY(-3px);
}

.offering-plan-step:hover .offering-plan-step__body,
.offering-plan-step:focus-within .offering-plan-step__body {
  transform: translateX(0.3rem);
}

.offering-plan-step:hover .offering-plan-step__body h3,
.offering-plan-step:focus-within .offering-plan-step__body h3 {
  color: var(--color-accent-strong);
}

.offering-sla {
  display: grid;
  gap: 1.85rem;
}

.offering-sla__intro {
  max-width: 34rem;
  margin-bottom: 0.75rem;
}

.offering-sla__intro p {
  color: var(--color-text-soft);
}

.offering-sla__table {
  display: grid;
  overflow-x: auto;
  overflow-y: hidden;
}

.offering-sla__row {
  display: grid;
  grid-template-columns: minmax(13rem, 1.2fr) minmax(11rem, 0.95fr) minmax(11rem, 0.95fr);
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  min-width: 44rem;
}

.offering-sla__row:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.offering-sla__label,
.offering-sla__value {
  padding-inline: 0.35rem;
}

.offering-sla__label {
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.offering-sla__value {
  color: #8b9cb2;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

.offering-sla__row--head {
  align-items: end;
}

.offering-sla__label--head,
.offering-sla__value--head {
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.offering-sla__value--standard,
.offering-sla__value--head.offering-sla__value--standard {
  color: #93a4ba;
}

.offering-sla__value--enterprise,
.offering-sla__value--head.offering-sla__value--enterprise {
  color: var(--color-accent);
}

.offering-sla__actions {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.offering-sla__cta-text {
  margin: 0;
  color: #93a4ba;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 1080px) {
  .offering-archive__hero-grid,
  .offering-archive__grid,
  .offering-expertise-grid,
  .offering-credentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .offering-archive__hero,
  .offering-archive__catalog,
  .offering-archive__story,
  .offering-page__content,
  .offering-section {
    width: min(100%, calc(100vw - 2rem));
  }

  .offering-archive__story-text {
    column-count: 1;
  }

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

  .offering-section--credentials,
  .offering-section--execution,
  .offering-section--sla {
    padding-inline: 0.85rem;
  }

  .offering-section--credentials > .offering-section__head,
  .offering-credentials-grid,
  .offering-credentials__actions,
  .offering-execution,
  .offering-sla {
    width: min(100%, calc(100vw - 1.7rem));
    padding-inline: 0.18rem;
  }

  .offering-sla__row {
    min-width: 40rem;
  }
}

@media (max-width: 720px) {
  .offering-archive__hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .offering-plan-list {
    --offering-plan-marker-size: 2.6rem;
    --offering-plan-axis: 1.5rem;
    gap: 1rem;
  }

  .offering-plan-step {
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 1rem;
  }

  .offering-plan-step__marker span {
    margin-left: 0.2rem;
  }

  .offering-credentials-grid {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] .offering-archive__hero-intro,
html[data-theme="dark"] .offering-archive__section-head p:last-child,
html[data-theme="dark"] .offering-section__head p:last-child,
html[data-theme="dark"] .offering-archive-card__summary,
html[data-theme="dark"] .offering-expertise-card p,
html[data-theme="dark"] .offering-page__content-inner,
html[data-theme="dark"] .offering-sla__intro p,
html[data-theme="dark"] .offering-plan-step__body p,
html[data-theme="dark"] .offering-credentials-card p {
  color: #b8c6d8;
}

html[data-theme="dark"] .offering-archive-card {
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .offering-archive-card {
  background: rgba(8, 19, 29, 0.92);
}

html[data-theme="dark"] .offering-archive-card__media {
  background:
    radial-gradient(circle at center, rgba(6, 220, 233, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(11, 27, 40, 0.94), rgba(6, 15, 24, 0.98));
}

html[data-theme="dark"] .offering-archive-card__component,
html[data-theme="dark"] .offering-sla__label {
  color: #8ea2bb;
}

html[data-theme="dark"] .offering-archive-card__title,
html[data-theme="dark"] .offering-expertise-card h3,
html[data-theme="dark"] .offering-plan-step__body h3,
html[data-theme="dark"] .offering-credentials-card h3,
html[data-theme="dark"] .offering-sla__label,
html[data-theme="dark"] .offering-sla__value {
  color: #f8fbff;
}

html[data-theme="dark"] .offering-expertise-card p {
  color: #b8c6d8;
}

html[data-theme="dark"] .offering-expertise-card__topline {
  background: rgba(148, 163, 184, 0.24);
}

html[data-theme="dark"] .offering-credentials-card {
  border-color: rgba(148, 163, 184, 0.26);
}

html[data-theme="dark"] .offering-credentials-card:hover,
html[data-theme="dark"] .offering-credentials-card:focus-within {
  border-color: rgba(103, 215, 255, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .offering-sla__label--head,
html[data-theme="dark"] .offering-sla__value--head {
  color: #f8fbff;
}

html[data-theme="dark"] .offering-sla__value--standard,
html[data-theme="dark"] .offering-sla__value--head.offering-sla__value--standard {
  color: #a6b7ca;
}

html[data-theme="dark"] .offering-sla__value--enterprise,
html[data-theme="dark"] .offering-sla__value--head.offering-sla__value--enterprise {
  color: #67d7ff;
}

html[data-theme="dark"] .offering-sla__cta-text {
  color: #8ea2bb;
}

html[data-theme="dark"] .offering-section--credentials,
html[data-theme="dark"] .offering-section--execution,
html[data-theme="dark"] .offering-section--sla {
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(8, 19, 29, 0.97), rgba(11, 24, 37, 0.99));
}

html[data-theme="dark"] .offering-sla__row {
  border-bottom-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .offering-sla__row:first-child {
  border-top-color: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .service-specs__label,
html[data-theme="dark"] .service-specs__value,
html[data-theme="dark"] .offering-sla__label,
html[data-theme="dark"] .offering-sla__value {
  align-self: center;
}

html[data-theme="dark"] .service-button:not(.service-button--terminal) {
  border-color: rgba(0, 178, 226, 0.78);
  background: linear-gradient(135deg, rgba(0, 153, 199, 0.98), rgba(0, 178, 226, 0.98));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 178, 226, 0.18);
}

html[data-theme="dark"] .service-button:not(.service-button--terminal):hover,
html[data-theme="dark"] .service-button:not(.service-button--terminal):focus-visible {
  border-color: rgba(103, 215, 255, 0.84);
  background: linear-gradient(135deg, rgba(0, 178, 226, 1), rgba(31, 77, 231, 0.98));
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 178, 226, 0.24);
}

html[data-theme="dark"] .offering-plan-list::before {
  background: rgba(148, 163, 184, 0.16);
}

html[data-theme="dark"] .offering-plan-step__marker span {
  border-color: rgba(148, 163, 184, 0.28);
  background: #08131d;
  color: #f8fbff;
}

html[data-theme="dark"] .offering-plan-step:hover .offering-plan-step__marker span,
html[data-theme="dark"] .offering-plan-step:focus-within .offering-plan-step__marker span {
  border-color: rgba(103, 215, 255, 0.7);
  background: #102033;
  color: #f8fbff;
  box-shadow: 0 18px 36px rgba(31, 77, 231, 0.28);
}

html[data-theme="dark"] .offering-plan-step:hover .offering-plan-step__body h3,
html[data-theme="dark"] .offering-plan-step:focus-within .offering-plan-step__body h3 {
  color: #67d7ff;
}

.podcast-page {
  display: grid;
  gap: 0;
}

@media (min-width: 981px) {
  .podcast-page {
    padding-top: clamp(1.5rem, 2vw, 2rem);
  }
}

.podcast-page__hero,
.podcast-page__feed,
.podcast-page__story,
.podcast-page__subscribe,
.podcast-page__faq {
  width: var(--wide-width);
  margin: 0 auto;
}

.podcast-page__hero {
  --breadcrumb-lift: clamp(2.4rem, 5vw, 4.8rem);
  padding: clamp(2.4rem, 5vw, 4.8rem) 0 clamp(3rem, 5vw, 4.4rem);
}

.podcast-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.podcast-page__hero-copy {
  max-width: 40rem;
}

.podcast-page__hero-title {
  margin: 0 0 1.3rem;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  line-height: 0.92;
}

.podcast-page__hero-title span {
  display: block;
}

.podcast-page__hero-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.podcast-page__hero-intro {
  max-width: 35rem;
  margin: 0;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.podcast-page__hero-actions {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.podcast-page__hero-actions .service-component-tag {
  margin: 0;
}

.podcast-page__hero-art {
  display: grid;
  place-items: center;
}

.podcast-page__hero-art img {
  width: min(24rem, 100%);
  height: auto;
  display: block;
}

.podcast-page__hero-signal {
  position: relative;
  display: grid;
  place-items: center;
  width: min(22rem, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(6, 220, 233, 0.18), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 250, 0.98));
}

.podcast-page__hero-signal span {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(6, 220, 233, 0.18);
  border-radius: 50%;
}

.podcast-page__hero-signal span:nth-child(2) {
  inset: 24%;
}

.podcast-page__hero-signal span:nth-child(3) {
  inset: 34%;
}

.podcast-page__hero-signal span:nth-child(4) {
  width: 1rem;
  height: 1rem;
  inset: auto;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 16px rgba(6, 220, 233, 0.08);
}

.podcast-page__feed,
.podcast-page__subscribe,
.podcast-page__faq {
  padding: 0 0 clamp(4rem, 6vw, 5rem);
}

.podcast-page__story {
  padding: 0 0 clamp(4rem, 6vw, 5rem);
}

.podcast-page__section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.podcast-page__section-head--narrow {
  max-width: 34rem;
}

.podcast-page__section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.podcast-page__section-head p:last-child {
  margin: 0;
  color: var(--color-text-soft);
}

.podcast-page__feed {
  scroll-margin-top: 8rem;
}

.podcast-page__episodes {
  display: grid;
  gap: 1.5rem;
}

.podcast-episode-card {
  display: grid;
  grid-template-columns: minmax(10rem, 12rem) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.podcast-episode-card__media {
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 247, 250, 0.96));
}

.podcast-episode-card__media img,
.podcast-episode-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.podcast-episode-card__placeholder {
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.18), transparent 46%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(230, 238, 245, 0.98));
}

.podcast-episode-card__body {
  display: grid;
  gap: 0.9rem;
}

.podcast-episode-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.podcast-episode-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.podcast-episode-card__summary {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.podcast-episode-card__player audio {
  width: 100%;
}

.podcast-episode-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.podcast-page__subscribe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: start;
}

.podcast-feed-box {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.podcast-feed-box__label {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.podcast-feed-box__field input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.9rem;
  background: rgba(248, 250, 252, 0.96);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.podcast-feed-box__helper {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.podcast-feed-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.podcast-app-card {
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
}

.podcast-app-card__platform {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.podcast-app-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.podcast-app-card p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.podcast-app-card a {
  color: var(--color-accent-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.podcast-faq {
  display: grid;
  gap: 1rem;
}

.podcast-faq__item {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.podcast-faq__item summary {
  position: relative;
  padding: 1.2rem 3.4rem 1.2rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 700;
}

.podcast-faq__item summary::-webkit-details-marker {
  display: none;
}

.podcast-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.podcast-faq__item[open] summary::after {
  content: "−";
}

.podcast-faq__content {
  padding: 0 1.2rem 1.2rem;
}

.podcast-faq__content p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.7;
}

html[data-theme="dark"] .podcast-page__hero-signal {
  background:
    radial-gradient(circle at center, rgba(6, 220, 233, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(10, 22, 35, 0.92), rgba(8, 17, 28, 0.96));
}

html[data-theme="dark"] .podcast-page__hero-signal span {
  border-color: rgba(6, 220, 233, 0.15);
}

html[data-theme="dark"] .podcast-page__section-head p:last-child,
html[data-theme="dark"] .podcast-episode-card__summary,
html[data-theme="dark"] .podcast-feed-box__helper,
html[data-theme="dark"] .podcast-app-card p,
html[data-theme="dark"] .podcast-faq__content p {
  color: rgba(207, 221, 239, 0.76);
}

html[data-theme="dark"] .podcast-episode-card,
html[data-theme="dark"] .podcast-feed-box,
html[data-theme="dark"] .podcast-app-card,
html[data-theme="dark"] .podcast-faq__item {
  border-color: rgba(104, 127, 156, 0.2);
  background: linear-gradient(180deg, rgba(10, 22, 35, 0.92), rgba(9, 18, 29, 0.96));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .podcast-feed-box__field input {
  border-color: rgba(104, 127, 156, 0.22);
  background: rgba(7, 17, 28, 0.92);
  color: #f8fbff;
}

html[data-theme="dark"] .podcast-episode-card__media,
html[data-theme="dark"] .podcast-episode-card__placeholder {
  background: linear-gradient(180deg, rgba(16, 30, 46, 0.94), rgba(8, 18, 30, 0.96));
}

html[data-theme="dark"] .podcast-app-card a {
  color: #69d9f7;
}

@media (max-width: 980px) {
  .podcast-page__hero-grid,
  .podcast-page__subscribe-grid,
  .podcast-episode-card {
    grid-template-columns: 1fr;
  }

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

  .podcast-page__hero-art {
    order: 2;
    justify-items: start;
  }

  .podcast-page__hero-copy {
    order: 1;
  }

  .podcast-episode-card__media {
    max-width: 14rem;
  }
}

@media (max-width: 720px) {
  .podcast-page__hero,
  .podcast-page__feed,
  .podcast-page__story,
  .podcast-page__subscribe,
  .podcast-page__faq {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .podcast-page__apps {
    grid-template-columns: 1fr;
  }

  .podcast-feed-box__actions,
  .podcast-episode-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .podcast-feed-box__actions .service-button,
  .podcast-episode-card__actions .service-button {
    width: 100%;
  }
}

.partner-page {
  display: grid;
  gap: 0;
}

.partner-page__hero,
.partner-page__section,
.partner-page__contact {
  width: var(--wide-width);
  margin: 0 auto;
}

.partner-page__hero {
  --breadcrumb-lift: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(2.5rem, 5vw, 4.8rem) 0 clamp(3.4rem, 5.5vw, 5rem);
}

.partner-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.partner-page__hero-copy {
  max-width: 42rem;
}

.partner-page__hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  line-height: 0.92;
}

.partner-page__hero-title span {
  display: block;
}

.partner-page__hero-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.partner-page__hero-intro {
  max-width: 39rem;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.partner-page__hero-intro p {
  margin: 0;
}

.partner-page__hero-intro p + p {
  margin-top: 0.9rem;
}

.partner-page__hero-actions {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.partner-page__hero-actions .service-component-tag {
  margin: 0;
}

.partner-page__hero-art {
  display: grid;
  place-items: center;
}

.partner-page__hero-art img {
  width: min(24rem, 100%);
  height: auto;
  display: block;
}

.partner-page__signal {
  position: relative;
  display: grid;
  place-items: center;
  width: min(23rem, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.16), transparent 46%),
    radial-gradient(circle at bottom right, rgba(31, 77, 231, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 250, 0.92));
}

.partner-page__signal span {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(6, 220, 233, 0.18);
}

.partner-page__signal span:nth-child(1) {
  inset: 18% 14%;
}

.partner-page__signal span:nth-child(2) {
  inset: 34% 26%;
}

.partner-page__signal span:nth-child(3) {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.partner-page__signal span:nth-child(4) {
  width: 1rem;
  height: 1rem;
  border: 0;
  top: 50%;
  left: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 16px rgba(6, 220, 233, 0.08);
  transform: translate(-50%, -50%);
}

.partner-page__section {
  padding: 0 0 clamp(3.7rem, 6vw, 5rem);
}

.partner-page__section--organized {
  position: relative;
}

.partner-page__section--organized::before {
  display: none;
}

.partner-page__section-head {
  position: relative;
  max-width: 46rem;
  margin-bottom: 2rem;
  z-index: 1;
}

.partner-page__section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.partner-page__section-intro {
  color: var(--color-text-soft);
  line-height: 1.72;
}

.partner-page__section-intro p {
  margin: 0;
}

.partner-page__section-intro p + p {
  margin-top: 0.95rem;
}

.partner-page__cards {
  position: relative;
  display: grid;
  gap: 1.6rem;
  z-index: 1;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 40%),
    linear-gradient(135deg, rgba(234, 247, 253, 0.96), rgba(244, 250, 253, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 77, 231, 0.08), transparent 65%);
  pointer-events: none;
}

.partner-card:hover,
.partner-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(6, 220, 233, 0.24);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.partner-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  z-index: 1;
}

.partner-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: auto;
  padding-top: 0.55rem;
}

.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 12rem;
  min-width: 0;
}

.partner-card__logo img {
  display: block;
  width: auto;
  max-width: min(12rem, 100%);
  max-height: 3.6rem;
  object-fit: contain;
}

.partner-card__logo-image--svg {
  filter: brightness(0) saturate(100%);
  opacity: 0.84;
  transition: filter 180ms ease, opacity 180ms ease;
}

.partner-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.partner-card__copy {
  color: var(--color-text-soft);
  line-height: 1.78;
}

.partner-card__copy p {
  margin: 0;
}

.partner-card__copy p + p {
  margin-top: 1rem;
}

.partner-card__note {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.55;
}

.partner-card__actions {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}

.service-button--partner {
  min-width: 11rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.partner-page__contact {
  padding: 0 0 clamp(4.2rem, 6vw, 5.5rem);
}

.partner-page__contact .home-project__panel {
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.96), rgba(8, 20, 31, 0.94)),
    linear-gradient(135deg, rgba(6, 220, 233, 0.08), rgba(31, 77, 231, 0.1));
}

html[data-theme="dark"] .partner-page__hero-intro,
html[data-theme="dark"] .partner-page__section-intro,
html[data-theme="dark"] .partner-card__copy {
  color: rgba(207, 221, 239, 0.76);
}

html[data-theme="dark"] .partner-page__signal {
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.14), transparent 46%),
    radial-gradient(circle at bottom right, rgba(31, 77, 231, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(9, 21, 35, 0.94), rgba(7, 17, 28, 0.96));
}

html[data-theme="dark"] .partner-page__signal span {
  border-color: rgba(104, 127, 156, 0.22);
}

html[data-theme="dark"] .partner-card {
  border-color: rgba(104, 127, 156, 0.22);
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.08), transparent 36%),
    linear-gradient(160deg, rgba(10, 22, 35, 0.96), rgba(8, 18, 30, 0.96));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .partner-card__note {
  color: rgba(184, 196, 214, 0.7);
}

html[data-theme="dark"] .partner-card__logo-image--svg {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

html[data-theme="dark"] .service-button--partner {
  background: rgba(10, 20, 33, 0.92);
  border-color: rgba(104, 127, 156, 0.28);
  color: #f8fbff;
}

html[data-theme="dark"] .service-button--partner:hover,
html[data-theme="dark"] .service-button--partner:focus-visible {
  border-color: rgba(6, 220, 233, 0.36);
}

@media (max-width: 980px) {
  .partner-page__hero-grid {
    grid-template-columns: 1fr;
  }

  .partner-page__hero-art {
    order: 2;
    justify-items: start;
  }

  .partner-page__hero-copy {
    order: 1;
  }
}

@media (max-width: 720px) {
  .partner-page__hero,
  .partner-page__section,
  .partner-page__contact {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .partner-card__body {
    padding: 1.35rem;
  }

  .partner-card__meta {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .partner-card__logo {
    flex-basis: auto;
  }

  .partner-card__actions {
    justify-content: stretch;
    margin-left: 0;
  }

  .partner-card__actions .service-button {
    width: 100%;
  }
}

.contracts-page {
  display: grid;
  gap: 0;
}

.contracts-page__hero,
.contracts-page__downloads {
  width: var(--wide-width);
  margin: 0 auto;
}

.contracts-page__hero {
  --breadcrumb-lift: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(2.5rem, 5vw, 4.8rem) 0 clamp(3.4rem, 5.5vw, 5rem);
}

.contracts-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: stretch;
}

.contracts-page__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(25rem, 40vw, 34rem);
}

.contracts-page__hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  line-height: 0.92;
}

.contracts-page__hero-title span {
  display: block;
}

.contracts-page__hero-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contracts-page__hero-intro {
  max-width: 40rem;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.contracts-page__hero-intro p {
  margin: 0;
}

.contracts-terminal {
  position: relative;
  overflow: hidden;
  min-height: clamp(25rem, 40vw, 34rem);
  border: 1px solid rgba(6, 220, 233, 0.22);
  border-radius: 1.8rem;
  background:
    repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.04) 0, rgba(148, 163, 184, 0.04) 1px, transparent 1px, transparent 8px),
    radial-gradient(circle at 15% 10%, rgba(6, 220, 233, 0.12), transparent 36%),
    linear-gradient(160deg, rgba(2, 10, 19, 0.96), rgba(8, 20, 34, 0.96));
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.2);
  color: #edf7ff;
}

.contracts-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 220, 233, 0.05), transparent);
  pointer-events: none;
}

.contracts-terminal__bar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.6rem;
  border-bottom: 1px solid rgba(104, 127, 156, 0.18);
}

.contracts-terminal__bar span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-accent-bright);
}

.contracts-terminal__bar span:nth-child(2) {
  background: var(--color-accent-strong);
}

.contracts-terminal__bar span:nth-child(3) {
  background: var(--color-success);
}

.contracts-terminal__body {
  position: relative;
  display: grid;
  gap: 1.4rem;
  align-content: center;
  min-height: calc(clamp(25rem, 40vw, 34rem) - 3.2rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  z-index: 1;
}

.contracts-terminal__endpoint {
  margin: 0;
  color: var(--color-accent-bright);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contracts-terminal pre {
  overflow-x: auto;
  margin: 0;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border: 1px solid rgba(104, 127, 156, 0.18);
  border-radius: 1.2rem;
  background: rgba(0, 0, 0, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contracts-terminal code {
  color: rgba(226, 238, 251, 0.9);
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.8;
  white-space: pre;
}

.contracts-page__downloads {
  padding: 0 0 clamp(4.5rem, 7vw, 6rem);
}

.contracts-page__section-head {
  max-width: 48rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.contracts-page__section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.contracts-page__section-intro {
  color: var(--color-text-soft);
  line-height: 1.72;
}

.contracts-page__section-intro p {
  margin: 0;
}

.contracts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.contracts-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: clamp(21rem, 28vw, 26rem);
  padding: clamp(1.35rem, 2.7vw, 2rem);
  border: 1px solid rgba(6, 220, 233, 0.22);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.16), transparent 40%),
    radial-gradient(circle at bottom right, rgba(31, 77, 231, 0.13), transparent 42%),
    linear-gradient(155deg, rgba(8, 20, 33, 0.96), rgba(5, 14, 25, 0.96));
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.16);
  color: #f8fbff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contracts-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 220, 233, 0.14), transparent 62%);
  pointer-events: none;
}

.contracts-card:hover,
.contracts-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(6, 220, 233, 0.42);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.22);
}

.contracts-card__top {
  position: relative;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 1;
}

.contracts-card__nerd,
.contracts-card__badge {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contracts-card__nerd {
  color: rgba(207, 221, 239, 0.76);
}

.contracts-card__badge {
  flex: 0 0 auto;
  color: var(--color-accent-bright);
  text-shadow: 0 0 18px rgba(6, 220, 233, 0.3);
}

.contracts-card__body {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  z-index: 1;
}

.contracts-card__body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 0.96;
}

.contracts-card__copy {
  color: rgba(207, 221, 239, 0.78);
  line-height: 1.72;
}

.contracts-card__copy p {
  margin: 0;
}

.contracts-card__copy p + p {
  margin-top: 0.9rem;
}

.contracts-card__copy strong {
  color: #fff;
}

.contracts-card__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  min-height: 3.4rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
}

.contracts-card__button:hover,
.contracts-card__button:focus-visible {
  color: #fff;
  filter: saturate(1.1) brightness(1.04);
}

html[data-theme="dark"] .contracts-page__hero-intro,
html[data-theme="dark"] .contracts-page__section-intro {
  color: rgba(207, 221, 239, 0.76);
}

html[data-theme="dark"] .contracts-terminal,
html[data-theme="dark"] .contracts-card {
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

@media (max-width: 980px) {
  .contracts-page__hero-grid,
  .contracts-grid {
    grid-template-columns: 1fr;
  }

  .contracts-page__hero-copy,
  .contracts-terminal {
    min-height: 0;
  }

  .contracts-terminal__body {
    min-height: 18rem;
  }
}

@media (max-width: 720px) {
  .contracts-page__hero,
  .contracts-page__downloads {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .contracts-page__hero-title {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .contracts-card {
    min-height: 0;
  }

  .contracts-card__top {
    flex-direction: column;
  }
}

.private-cloud-page {
  display: grid;
  gap: 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(6, 220, 233, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 6%, rgba(31, 77, 231, 0.07), transparent 26rem);
}

.private-cloud-hero,
.private-cloud-section,
.private-cloud-band,
.private-cloud-contact {
  width: var(--wide-width);
  margin: 0 auto;
}

.private-cloud-hero {
  --breadcrumb-lift: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(2.4rem, 5vw, 4.9rem) 0 clamp(3.5rem, 6vw, 5.6rem);
}

.private-cloud-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.private-cloud-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(32rem, 47vw, 42rem);
}

.private-cloud-hero__question {
  max-width: 39rem;
  margin: 0 0 1rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.private-cloud-hero__title {
  max-width: 11.5ch;
  margin: 0 0 1.25rem;
  font-size: clamp(4.3rem, 8.4vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.private-cloud-hero__title span {
  display: block;
}

.private-cloud-hero__accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.private-cloud-hero__intro {
  max-width: 48rem;
  color: var(--color-text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.68;
}

.private-cloud-hero__intro p {
  margin: 0;
}

.private-cloud-hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 45rem;
  margin-top: clamp(1.7rem, 3vw, 2.35rem);
}

.private-cloud-pill {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-height: 4rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 60%);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.private-cloud-pill__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.5rem;
  color: var(--color-accent);
}

.private-cloud-pill svg,
.private-cloud-pill img {
  width: 1.5rem;
  height: 1.5rem;
}

.private-cloud-pill img {
  display: block;
  object-fit: contain;
}

.private-cloud-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
}

.private-cloud-console {
  position: relative;
  overflow: hidden;
  align-self: center;
  min-height: clamp(30rem, 43vw, 38rem);
  border: 1px solid rgba(6, 220, 233, 0.24);
  border-radius: 2rem;
  background:
    repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.045) 0, rgba(148, 163, 184, 0.045) 1px, transparent 1px, transparent 9px),
    radial-gradient(circle at 22% 14%, rgba(6, 220, 233, 0.16), transparent 34%),
    radial-gradient(circle at 78% 92%, rgba(31, 77, 231, 0.14), transparent 40%),
    linear-gradient(160deg, rgba(2, 10, 19, 0.96), rgba(7, 19, 32, 0.96));
  box-shadow: 0 32px 74px rgba(15, 23, 42, 0.18);
  color: rgba(237, 247, 255, 0.92);
}

.private-cloud-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(6, 220, 233, 0.06), transparent);
  pointer-events: none;
}

.private-cloud-console__bar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.6rem;
  border-bottom: 1px solid rgba(104, 127, 156, 0.18);
}

.private-cloud-console__bar span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-accent-bright);
}

.private-cloud-console__bar span:nth-child(2) {
  background: var(--color-accent-strong);
}

.private-cloud-console__bar span:nth-child(3) {
  background: var(--color-success);
}

.private-cloud-console__body {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: calc(clamp(30rem, 43vw, 38rem) - 3.2rem);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  z-index: 1;
}

.private-cloud-console__body p {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(104, 127, 156, 0.18);
  border-radius: 1rem;
  background: rgba(4, 13, 24, 0.6);
  color: rgba(207, 221, 239, 0.86);
  font-family: var(--font-mono);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 800;
  line-height: 1.5;
}

.private-cloud-console__body span {
  color: var(--color-accent-bright);
}

.private-cloud-section,
.private-cloud-band,
.private-cloud-contact {
  padding: clamp(4.3rem, 7vw, 6.7rem) 0;
}

.private-cloud-section__head {
  max-width: 62rem;
  margin-bottom: clamp(1.7rem, 3vw, 2.5rem);
}

.private-cloud-section__head h2,
.private-cloud-advisor__card h2,
.private-cloud-about-panel h2,
.private-cloud-faq h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  line-height: 0.98;
}

.private-cloud-section__intro {
  max-width: 58rem;
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.private-cloud-section__intro p,
.private-cloud-section__intro p:last-child {
  margin: 0;
}

.private-cloud-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

.private-cloud-compare-card,
.private-cloud-advisor__card,
.private-cloud-about-panel,
.private-cloud-faq {
  border: 1px solid rgba(148, 163, 184, 0.25);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 46%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.private-cloud-compare-card {
  display: grid;
  gap: 1.6rem;
  align-content: start;
  padding: clamp(1.3rem, 3vw, 2.3rem);
  border-radius: 1.7rem;
}

.private-cloud-compare-card--solution {
  border-color: rgba(6, 220, 233, 0.35);
}

.private-cloud-compare-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.private-cloud-compare-card__brand {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: flex-start;
  justify-content: space-between;
}

.private-cloud-compare-card__brand h2 {
  max-width: 22rem;
}

.private-cloud-compare-card__brand img {
  width: clamp(7rem, 12vw, 11rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(15, 23, 42, 0.12));
}

.private-cloud-checklist {
  display: grid;
  gap: 0.9rem;
}

.private-cloud-checklist__item {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--color-text-soft);
  font-weight: 750;
  line-height: 1.5;
}

.private-cloud-checklist__item:first-child {
  border-top: 0;
}

.private-cloud-checklist__icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(6, 220, 233, 0.28);
  border-radius: 0.9rem;
  color: var(--color-accent);
}

.private-cloud-checklist__icon--warn {
  color: #ef4444;
}

.private-cloud-checklist__icon svg,
.private-cloud-checklist__icon img {
  width: 1.35rem;
  height: 1.35rem;
}

.private-cloud-checklist__icon img {
  display: block;
  object-fit: contain;
}

.private-cloud-advisor__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  border-radius: 1.8rem;
}

.private-cloud-advisor__card--has-image {
  grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
  align-items: stretch;
}

.private-cloud-advisor__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 220, 233, 0.22);
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at 30% 10%, rgba(6, 220, 233, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.private-cloud-advisor__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(20rem, 28vw, 25rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.private-cloud-advisor__content {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1.7rem, 3vw, 2.5rem);
  min-width: 0;
  padding: clamp(0.35rem, 1vw, 0.8rem) 0;
}

.private-cloud-advisor__heading {
  padding-bottom: clamp(1.25rem, 2.2vw, 1.8rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.private-cloud-advisor__heading .service-section__label {
  margin-bottom: 0.7rem;
}

.private-cloud-advisor__card .private-cloud-advisor__heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
  text-wrap: balance;
}

.private-cloud-advisor__details {
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(19rem, 1.22fr);
  gap: clamp(1.8rem, 3.5vw, 3.4rem);
  align-items: start;
}

.private-cloud-advisor__person {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.private-cloud-advisor__person h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.private-cloud-advisor__contacts {
  display: grid;
  gap: 0.85rem;
}

.private-cloud-advisor__contacts a {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  color: var(--color-accent);
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.private-cloud-advisor__contacts a:hover,
.private-cloud-advisor__contacts a:focus-visible {
  color: var(--color-blue);
  transform: translateX(0.2rem);
}

.private-cloud-advisor__contacts span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-cloud-advisor__contacts strong {
  font-family: var(--font-mono);
  font-size: clamp(0.84rem, 1.1vw, 1rem);
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.private-cloud-advisor__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.private-cloud-advisor__copy p {
  max-width: 42rem;
  margin: 0 0 1.35rem;
}

.private-cloud-advisor__copy .service-button {
  margin-top: auto;
}

.private-cloud-quote {
  max-width: 74rem;
  margin: 0 0 clamp(1.6rem, 3vw, 2.3rem);
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border-left: 4px solid var(--color-accent);
  background: rgba(6, 220, 233, 0.06);
  color: var(--color-text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
}

.private-cloud-quote p {
  margin: 0;
}

.private-cloud-quote cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

.private-cloud-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.private-cloud-audience-card {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 6.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.private-cloud-audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 220, 233, 0.48);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
}

.private-cloud-audience-card span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--color-accent);
}

.private-cloud-audience-card svg,
.private-cloud-audience-card img {
  width: 2.2rem;
  height: 2.2rem;
}

.private-cloud-audience-card img {
  display: block;
  object-fit: contain;
}

.private-cloud-audience-card strong {
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.16;
}

.private-cloud-product-grid,
.private-cloud-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.private-cloud-product-card,
.private-cloud-service-card,
.private-cloud-benefit-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.private-cloud-product-card:hover,
.private-cloud-service-card:hover,
.private-cloud-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 220, 233, 0.5);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.private-cloud-product-card__icon,
.private-cloud-service-card__icon,
.private-cloud-benefit-card__icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(6, 220, 233, 0.28);
  color: var(--color-accent);
}

.private-cloud-product-card svg,
.private-cloud-service-card svg,
.private-cloud-benefit-card svg,
.private-cloud-product-card__icon img,
.private-cloud-service-card__icon img,
.private-cloud-benefit-card__icon img {
  width: 1.75rem;
  height: 1.75rem;
}

.private-cloud-product-card__icon img,
.private-cloud-service-card__icon img,
.private-cloud-benefit-card__icon img {
  display: block;
  object-fit: contain;
}

.private-cloud-product-card h3,
.private-cloud-service-card h3,
.private-cloud-benefit-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.private-cloud-product-card__subtitle,
.private-cloud-service-card__subtitle {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.private-cloud-product-card__copy,
.private-cloud-service-card,
.private-cloud-benefit-card {
  color: var(--color-text-soft);
  line-height: 1.64;
}

.private-cloud-product-card__copy p {
  margin: 0;
}

.private-cloud-product-card a,
.private-cloud-service-card a {
  align-self: end;
  margin-top: 0.5rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.private-cloud-band {
  width: min(100%, calc(var(--wide-width) + 4rem));
  padding-right: clamp(1.2rem, 3vw, 2rem);
  padding-left: clamp(1.2rem, 3vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(233, 239, 247, 0.75), rgba(233, 239, 247, 0.92));
}

.private-cloud-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.private-cloud-benefit-card ul,
.private-cloud-service-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.private-cloud-benefit-card li,
.private-cloud-service-card li {
  position: relative;
  padding-left: 1.45rem;
  line-height: 1.64;
}

.private-cloud-benefit-card li::before,
.private-cloud-service-card li::before {
  content: "[+]";
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.64;
}

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

.private-cloud-section__button {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.private-cloud-contact .home-project__panel {
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.private-cloud-about-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.private-cloud-about-panel,
.private-cloud-faq {
  padding: clamp(1.3rem, 3vw, 2.4rem);
  border-radius: 1.7rem;
}

.private-cloud-about-panel__copy {
  margin: 1rem 0 1.3rem;
  color: var(--color-text-soft);
  line-height: 1.72;
}

.private-cloud-about-panel__copy p {
  margin: 0;
}

.private-cloud-about-panel__copy p + p {
  margin-top: 0.9rem;
}

.private-cloud-faq__items {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.private-cloud-faq__item {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

.private-cloud-faq__item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.private-cloud-faq__item div {
  padding: 0 1.1rem 1.1rem;
  color: var(--color-text-soft);
  line-height: 1.68;
}

.private-cloud-faq__item p {
  margin: 0;
}

html[data-theme="dark"] .private-cloud-page {
  background:
    radial-gradient(circle at 8% 14%, rgba(6, 220, 233, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(31, 77, 231, 0.12), transparent 26rem);
}

html[data-theme="dark"] .private-cloud-hero__intro,
html[data-theme="dark"] .private-cloud-section__intro,
html[data-theme="dark"] .private-cloud-advisor__copy,
html[data-theme="dark"] .private-cloud-about-panel__copy,
html[data-theme="dark"] .private-cloud-faq__item div,
html[data-theme="dark"] .private-cloud-product-card__copy,
html[data-theme="dark"] .private-cloud-service-card,
html[data-theme="dark"] .private-cloud-benefit-card {
  color: rgba(207, 221, 239, 0.74);
}

html[data-theme="dark"] .private-cloud-pill,
html[data-theme="dark"] .private-cloud-compare-card,
html[data-theme="dark"] .private-cloud-advisor__card,
html[data-theme="dark"] .private-cloud-about-panel,
html[data-theme="dark"] .private-cloud-faq,
html[data-theme="dark"] .private-cloud-audience-card,
html[data-theme="dark"] .private-cloud-product-card,
html[data-theme="dark"] .private-cloud-service-card,
html[data-theme="dark"] .private-cloud-benefit-card,
html[data-theme="dark"] .private-cloud-faq__item {
  border-color: rgba(104, 127, 156, 0.24);
  background:
    linear-gradient(140deg, rgba(8, 20, 33, 0.74), rgba(5, 14, 25, 0.72)),
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 48%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .private-cloud-band {
  background:
    radial-gradient(circle at top left, rgba(6, 220, 233, 0.1), transparent 34rem),
    linear-gradient(180deg, rgba(8, 20, 33, 0.76), rgba(5, 14, 25, 0.92));
}

html[data-theme="dark"] .private-cloud-quote {
  background: rgba(6, 220, 233, 0.08);
}

html[data-theme="dark"] .private-cloud-advisor__image {
  border-color: rgba(6, 220, 233, 0.24);
  background:
    radial-gradient(circle at 30% 10%, rgba(6, 220, 233, 0.18), transparent 48%),
    rgba(5, 14, 25, 0.7);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .private-cloud-advisor__heading {
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

@media (max-width: 1100px) {
  .private-cloud-product-grid,
  .private-cloud-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .private-cloud-hero__grid,
  .private-cloud-compare__grid,
  .private-cloud-advisor__card,
  .private-cloud-about-faq,
  .private-cloud-benefit-grid,
  .private-cloud-service-grid {
    grid-template-columns: 1fr;
  }

  .private-cloud-hero__copy,
  .private-cloud-console {
    min-height: 0;
  }

  .private-cloud-console__body {
    min-height: 20rem;
  }

  .private-cloud-advisor__content {
    grid-template-rows: auto 1fr;
  }

  .private-cloud-advisor__image {
    width: min(100%, 19rem);
    max-width: 19rem;
  }

  .private-cloud-advisor__details {
    grid-template-columns: minmax(14rem, 0.72fr) minmax(19rem, 1.28fr);
  }
}

@media (max-width: 720px) {
  .private-cloud-hero,
  .private-cloud-section,
  .private-cloud-band,
  .private-cloud-contact {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .private-cloud-hero__title {
    font-size: clamp(3.15rem, 16vw, 4.9rem);
  }

  .private-cloud-hero__points,
  .private-cloud-product-grid,
  .private-cloud-audience__grid {
    grid-template-columns: 1fr;
  }

  .private-cloud-pill,
  .private-cloud-audience-card {
    min-height: 0;
  }

  .private-cloud-advisor__card {
    padding: 1rem;
    border-radius: 1.45rem;
  }

  .private-cloud-advisor__image {
    width: 100%;
    max-width: none;
  }

  .private-cloud-advisor__image img {
    min-height: 0;
  }

  .private-cloud-advisor__content {
    padding: 0.4rem 0.3rem 0.55rem;
  }

  .private-cloud-advisor__details {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .private-cloud-advisor__card .private-cloud-advisor__heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .private-cloud-advisor__person h3 {
    max-width: none;
  }

  .private-cloud-advisor__copy .service-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .private-cloud-section,
  .private-cloud-band,
  .private-cloud-contact {
    padding: clamp(3.2rem, 12vw, 4.4rem) 0;
  }
}

@media (max-width: 920px) {
  .error404-hero__grid,
  .error404-blog__panel {
    grid-template-columns: 1fr;
  }

  .error404-hero__copy {
    min-height: 0;
  }

  .error404-hero h1 {
    max-width: 14ch;
  }

  .error404-root-grid,
  .error404-fixes {
    grid-template-columns: 1fr;
  }

  .error404-root-card,
  .error404-fix {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .error404-page {
    gap: 2rem;
    padding: 1rem 0 4rem;
  }

  .error404-hero,
  .error404-diagnostics,
  .error404-blog {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .error404-hero__copy,
  .error404-blog__panel {
    border-radius: 1.6rem;
  }

  body.error404 .error404-page {
    gap: 1.45rem;
    padding: 0.65rem 0 3.4rem;
  }

  body.error404 .error404-hero__copy {
    padding: clamp(1.1rem, 5vw, 1.65rem);
    border-radius: 1.35rem;
  }

  body.error404 .error404-hero__eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  body.error404 .error404-hero__status {
    margin-bottom: 0.85rem;
    font-size: 0.64rem;
    overflow-wrap: anywhere;
  }

  .error404-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  body.error404 .error404-hero h1 {
    max-width: 11.5ch;
    margin-bottom: 0.8rem;
    font-size: clamp(1.95rem, 10.5vw, 2.85rem);
    line-height: 0.98;
  }

  body.error404 .error404-hero__lede {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .thankyou-page .error404-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .thankyou-log li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .thankyou-log__status {
    justify-self: start;
  }

  .error404-terminal {
    border-radius: 1.35rem;
  }

  body.error404 .error404-terminal {
    margin-top: 0.95rem;
    border-radius: 1.05rem;
  }

  body.error404 .error404-terminal__bar {
    padding: 0.72rem 0.85rem;
  }

  body.error404 .error404-terminal__body {
    padding: 0.9rem;
    overflow: hidden;
  }

  body.error404 .error404-terminal__body p {
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .error404-terminal pre {
    font-size: 0.64rem;
  }

  body.error404 .error404-terminal pre {
    font-size: 0.58rem;
    line-height: 1.55;
  }

  .error404-fixes,
  .error404-blog__actions {
    align-items: stretch;
  }

  .error404-fix,
  .error404-blog__actions .service-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  body.error404 .error404-hero,
  body.error404 .error404-diagnostics,
  body.error404 .error404-blog {
    width: min(100%, calc(100vw - 1rem));
  }

  body.error404 .error404-hero__copy {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  body.error404 .error404-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(1.72rem, 9.8vw, 2.35rem);
  }

  body.error404 .error404-terminal pre {
    font-size: 0.53rem;
  }
}
/* VMware alternative landing page */
.vmware-page {
	--vmware-surface: color-mix(in srgb, var(--color-surface) 88%, transparent);
	--vmware-panel: color-mix(in srgb, var(--color-surface) 96%, var(--color-accent) 4%);
	--vmware-line: color-mix(in srgb, var(--color-text-muted) 22%, transparent);
	--vmware-glow: color-mix(in srgb, var(--color-accent) 20%, transparent);
	--page-gutter: max(1.25rem, calc((100vw - 72rem) / 2));
	background:
		radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--color-accent-strong) 10%, transparent), transparent 30rem),
		var(--color-background);
	color: var(--color-text);
	overflow: clip;
}

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

.vmware-hero,
.vmware-section,
.vmware-band,
.vmware-contact {
	width: 100%;
}

.vmware-hero,
.vmware-section {
	padding-inline: var(--page-gutter);
}

.vmware-hero {
	--breadcrumb-lift: clamp(1.5rem, 2vw, 2rem);
	padding-top: clamp(2.4rem, 5vw, 4.9rem);
	padding-bottom: clamp(4rem, 6vw, 6rem);
}

.vmware-hero__breadcrumb {
	margin-bottom: clamp(1.45rem, 2.8vw, 2.15rem);
}

.vmware-hero__grid,
.vmware-section__head,
.vmware-transform__grid,
.vmware-advisor__card,
.vmware-compare__grid,
.vmware-accordion,
.vmware-testimonial__panel,
.vmware-products__grid,
.vmware-benefits__grid,
.vmware-contact__inner {
	width: min(100%, var(--content-width));
	margin-inline: auto;
}

.vmware-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(22rem, .8fr);
	gap: clamp(2.5rem, 4.5vw, 5rem);
	align-items: center;
	min-height: clamp(36rem, 54vw, 44rem);
}

.vmware-hero__copy {
	min-width: 0;
}

.vmware-hero__title,
.vmware-section__head h2,
.vmware-advisor h2,
.vmware-testimonial h2,
.vmware-contact h2 {
	font-family: var(--font-headline);
	letter-spacing: -.035em;
	line-height: .98;
}

.vmware-hero__title {
	display: grid;
	gap: .04em;
	max-width: 18ch;
	margin: 1rem 0 1.6rem;
	font-size: clamp(3.15rem, 4vw, 4.7rem);
}

.vmware-hero__accent {
	color: transparent;
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
}

.vmware-richtext {
	color: var(--color-text-muted);
	font-size: clamp(1rem, .4vw + .9rem, 1.24rem);
	line-height: 1.65;
}

.vmware-richtext > :first-child {
	margin-top: 0;
}

.vmware-richtext > :last-child {
	margin-bottom: 0;
}

.vmware-richtext a {
	color: var(--color-accent);
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

.vmware-hero__intro {
	max-width: 44rem;
	margin-bottom: 2rem;
}

.vmware-console {
	position: relative;
	align-self: center;
	min-width: 0;
	min-height: clamp(30rem, 43vw, 38rem);
	border: 1px solid rgba(6, 220, 233, .24);
	border-radius: 2rem;
	background:
		repeating-linear-gradient(0deg, rgba(148, 163, 184, .045) 0, rgba(148, 163, 184, .045) 1px, transparent 1px, transparent 9px),
		radial-gradient(circle at 22% 14%, rgba(6, 220, 233, .16), transparent 34%),
		radial-gradient(circle at 78% 92%, rgba(31, 77, 231, .14), transparent 40%),
		linear-gradient(160deg, rgba(2, 10, 19, .96), rgba(7, 19, 32, .96));
	box-shadow: 0 32px 74px rgba(15, 23, 42, .18);
	color: rgba(237, 247, 255, .92);
	overflow: hidden;
}

.vmware-console::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent, rgba(6, 220, 233, .06), transparent);
	pointer-events: none;
}

.vmware-console__bar {
	display: flex;
	gap: .5rem;
	align-items: center;
	min-height: 3.2rem;
	padding: 0 1.6rem;
	border-bottom: 1px solid rgba(104, 127, 156, .18);
}

.vmware-console__bar span {
	width: .75rem;
	height: .75rem;
	border-radius: 50%;
	background: var(--color-accent-bright);
}

.vmware-console__bar span:nth-child(2) {
	background: var(--color-accent-strong);
}

.vmware-console__bar span:nth-child(3) {
	background: #23c875;
}

.vmware-console__body {
	position: relative;
	display: grid;
	gap: 1rem;
	align-content: center;
	min-height: clamp(20rem, 30vw, 27rem);
	padding: clamp(1.3rem, 3vw, 2.2rem);
	font-family: var(--font-mono);
	z-index: 1;
}

.vmware-console__body p {
	display: flex;
	gap: .9rem;
	align-items: center;
	margin: 0;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(104, 127, 156, .18);
	border-radius: 1rem;
	background: rgba(4, 13, 24, .6);
	color: rgba(207, 221, 239, .86);
	font-size: clamp(.76rem, 1vw, .92rem);
	font-weight: 800;
	line-height: 1.5;
}

.vmware-console__body span,
.vmware-console__body b {
	color: var(--color-accent);
	font-weight: 700;
}

.vmware-console__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(153, 188, 218, .16);
}

.vmware-console__points > div {
	display: grid;
	grid-template-columns: 1.6rem minmax(0, 1fr);
	gap: .8rem;
	align-items: center;
	min-height: 5rem;
	padding: 1.1rem 1.25rem;
	border-right: 1px solid rgba(153, 188, 218, .12);
	border-bottom: 1px solid rgba(153, 188, 218, .12);
	font-family: var(--font-mono);
	font-size: .74rem;
	line-height: 1.35;
}

.vmware-console__points svg,
.vmware-console__points img {
	width: 1.4rem;
	height: 1.4rem;
	color: var(--color-accent);
	object-fit: contain;
}

.vmware-section,
.vmware-band {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(0, var(--content-width))
		minmax(0, 1fr);
	padding-block: clamp(4rem, 6vw, 6.5rem);
	padding-inline: var(--page-gutter);
}

.vmware-section > *,
.vmware-band > * {
	grid-column: 2;
	width: 100%;
	margin-inline: 0;
}

.vmware-band {
	background:
		linear-gradient(125deg, color-mix(in srgb, var(--color-accent) 5%, transparent), transparent 40%),
		var(--color-surface);
}

.vmware-section__head {
	margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.vmware-section__head h2,
.vmware-advisor h2,
.vmware-testimonial h2,
.vmware-contact h2 {
	max-width: 20ch;
	margin: .85rem 0 1.25rem;
	font-size: clamp(2.35rem, 3.8vw, 4.6rem);
}

.vmware-section__head .vmware-richtext {
	max-width: 62rem;
}

.vmware-section__button {
	display: flex;
	width: max-content;
	margin-top: clamp(1.75rem, 2.8vw, 2.75rem);
	justify-self: start;
}

.vmware-audience__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	width: min(100%, var(--content-width));
	margin-inline: auto;
}

.vmware-audience__item {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	min-height: 7.5rem;
	padding: 1.5rem;
	border: 1px solid var(--vmware-line);
	background: var(--vmware-surface);
	box-shadow: 0 1.25rem 3rem transparent;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.vmware-audience__item:hover {
	border-color: color-mix(in srgb, var(--color-accent) 65%, var(--vmware-line));
	box-shadow: 0 1.25rem 3rem var(--vmware-glow);
	transform: translateY(-.25rem);
}

.vmware-audience__item > span,
.vmware-icon {
	display: grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	color: var(--color-accent);
}

.vmware-audience__item svg,
.vmware-audience__item img,
.vmware-icon svg,
.vmware-icon img {
	width: 2.15rem;
	height: 2.15rem;
	object-fit: contain;
}

.vmware-audience__item strong {
	font-family: var(--font-headline);
	font-size: clamp(1.05rem, .45vw + .95rem, 1.35rem);
	line-height: 1.2;
}

.vmware-transform__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
}

.vmware-transform-card {
	position: relative;
	display: flex;
	min-height: 23rem;
	flex-direction: column;
	padding: clamp(1.75rem, 3vw, 3rem);
	border-top: 1px solid var(--vmware-line);
	background: color-mix(in srgb, var(--color-surface) 70%, transparent);
	overflow: hidden;
	transition: border-color .3s ease, transform .3s ease;
}

.vmware-transform-card::before {
	position: absolute;
	inset: auto -20% -40% 20%;
	height: 75%;
	border-radius: 50%;
	background: radial-gradient(circle, var(--vmware-glow), transparent 68%);
	content: "";
	opacity: 0;
	transition: opacity .3s ease;
}

.vmware-transform-card:hover {
	border-color: var(--color-accent);
	transform: translateY(-.4rem);
}

.vmware-transform-card:hover::before {
	opacity: 1;
}

.vmware-transform-card > * {
	position: relative;
	z-index: 1;
}

.vmware-transform-card h3,
.vmware-product-card h3,
.vmware-benefit-card h3 {
	margin: 2.2rem 0 .75rem;
	font-family: var(--font-headline);
	font-size: clamp(1.65rem, 2vw, 2.5rem);
	line-height: 1.05;
}

.vmware-transform-card > strong {
	margin-bottom: 1.2rem;
	color: var(--color-accent);
	font-family: var(--font-mono);
	font-size: .78rem;
	line-height: 1.5;
	text-transform: uppercase;
}

.vmware-advisor__card {
	display: grid;
	grid-template-columns: minmax(15rem, .75fr) minmax(16rem, .9fr) minmax(20rem, 1.2fr);
	gap: clamp(2rem, 4vw, 5rem);
	align-items: center;
	padding: clamp(1.5rem, 3vw, 3rem);
	border: 1px solid color-mix(in srgb, var(--color-accent) 35%, var(--vmware-line));
	border-radius: 2rem;
	background:
		radial-gradient(circle at 15% 15%, var(--vmware-glow), transparent 22rem),
		var(--vmware-panel);
	box-shadow: 0 2rem 5rem color-mix(in srgb, var(--color-text) 7%, transparent);
}

.vmware-advisor figure {
	aspect-ratio: 3 / 4;
	margin: 0;
	border: 1px solid color-mix(in srgb, var(--color-accent) 38%, transparent);
	border-radius: 1.25rem;
	overflow: hidden;
}

.vmware-advisor figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vmware-advisor__main h2 {
	max-width: 100%;
	margin-bottom: 2rem;
	font-size: clamp(2.15rem, 2.8vw, 3.15rem);
	hyphens: auto;
	overflow-wrap: normal;
}

.vmware-advisor__main h3 {
	margin: 0 0 1rem;
	font-family: var(--font-headline);
	font-size: clamp(1.75rem, 2.5vw, 3rem);
	line-height: 1;
}

.vmware-advisor__contacts {
	display: grid;
	gap: .65rem;
}

.vmware-advisor__contacts a {
	width: fit-content;
	color: var(--color-accent);
	font-family: var(--font-mono);
	font-size: clamp(.78rem, .35vw + .72rem, 1rem);
	font-weight: 700;
	text-decoration: none;
}

.vmware-advisor__copy .service-button {
	margin-top: 1.5rem;
}

.vmware-compare__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: 1px solid var(--vmware-line);
	border-radius: 2rem;
	overflow: hidden;
}

.vmware-compare-column {
	padding: clamp(1.5rem, 3vw, 3rem);
	background: var(--vmware-surface);
}

.vmware-compare-column--own {
	border-left: 1px solid color-mix(in srgb, var(--color-accent) 40%, var(--vmware-line));
	background:
		radial-gradient(circle at 85% 10%, var(--vmware-glow), transparent 25rem),
		var(--vmware-panel);
}

.vmware-compare-column h3 {
	margin: 0;
	font-family: var(--font-headline);
	font-size: clamp(1.65rem, 2.5vw, 3rem);
}

.vmware-compare-column__brand {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
}

.vmware-compare-column__brand img {
	width: min(8rem, 28%);
	height: 3.25rem;
	object-fit: contain;
	object-position: right center;
}

[data-theme="dark"] .vmware-compare-column__brand img {
	filter: brightness(0) invert(1);
}

.vmware-compare-row {
	display: grid;
	grid-template-columns: 2.2rem minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	min-height: 4.8rem;
	margin-top: 1.1rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--vmware-line);
}

.vmware-compare-row span {
	display: grid;
	width: 2.2rem;
	height: 2.2rem;
	place-items: center;
	color: #ec5555;
}

.vmware-compare-column--own .vmware-compare-row span {
	color: var(--color-accent);
}

.vmware-compare-row svg,
.vmware-compare-row img {
	width: 1.55rem;
	height: 1.55rem;
	object-fit: contain;
}

.vmware-compare-row p {
	margin: 0;
	color: var(--color-text-muted);
	line-height: 1.45;
}

.vmware-accordion__item {
	border-top: 1px solid var(--vmware-line);
}

.vmware-accordion__item:last-child {
	border-bottom: 1px solid var(--vmware-line);
}

.vmware-accordion__item summary {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) 2rem;
	gap: 1.5rem;
	align-items: center;
	padding: clamp(1.25rem, 2.3vw, 2.25rem) .25rem;
	cursor: pointer;
	list-style: none;
}

.vmware-accordion__item summary::-webkit-details-marker {
	display: none;
}

.vmware-accordion__item summary > span {
	display: grid;
	width: 3.25rem;
	height: 3.25rem;
	place-items: center;
	border: 1px solid var(--vmware-line);
	color: var(--color-accent);
	font-family: var(--font-mono);
	font-weight: 700;
}

.vmware-accordion__item summary strong {
	font-family: var(--font-headline);
	font-size: clamp(1.2rem, 1.4vw, 1.8rem);
}

.vmware-accordion__item summary i {
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	color: var(--color-accent);
	font-family: var(--font-mono);
	font-size: 1.5rem;
	font-style: normal;
	transition: transform .25s ease;
}

.vmware-accordion__item[open] summary i {
	transform: rotate(45deg);
}

.vmware-accordion__item > .vmware-richtext {
	max-width: 70rem;
	padding: 0 4rem 2rem 5rem;
}

.vmware-testimonial__panel {
	display: grid;
	grid-template-columns: minmax(14rem, .7fr) minmax(0, 1.3fr);
	gap: clamp(2rem, 6vw, 7rem);
	align-items: center;
	padding: clamp(2rem, 5vw, 5.5rem);
	border: 1px solid color-mix(in srgb, var(--color-accent) 40%, var(--vmware-line));
	border-radius: 2rem;
	background:
		linear-gradient(125deg, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent 45%),
		var(--vmware-panel);
}

.vmware-testimonial__panel blockquote {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(1.25rem, 1.7vw, 2rem);
	line-height: 1.48;
}

.vmware-testimonial__panel blockquote p {
	margin-top: 0;
}

.vmware-testimonial__panel cite {
	display: block;
	margin-top: 2rem;
	color: var(--color-text-muted);
	font-family: var(--font-mono);
	font-size: .78rem;
	font-style: normal;
	text-transform: uppercase;
}

.vmware-testimonial__panel .service-button {
	grid-column: 2;
	width: fit-content;
}

.vmware-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.vmware-product-card {
	display: flex;
	min-height: 23rem;
	flex-direction: column;
	padding: clamp(1.5rem, 2.5vw, 2.5rem);
	border: 1px solid var(--vmware-line);
	background: var(--vmware-surface);
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.vmware-product-card:hover {
	border-color: var(--color-accent);
	box-shadow: 0 1.5rem 3.5rem var(--vmware-glow);
	transform: translateY(-.35rem);
}

.vmware-product-card > p {
	margin: 2rem 0 -.8rem;
	color: var(--color-text-muted);
	font-family: var(--font-mono);
	font-size: .7rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.vmware-product-card h3 {
	margin-bottom: 1rem;
}

.vmware-product-card > a {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 1.5rem;
	color: var(--color-accent);
	font-family: var(--font-mono);
	font-size: .76rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.vmware-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.vmware-benefit-card {
	padding: clamp(1.5rem, 3vw, 3rem);
	border-top: 1px solid var(--vmware-line);
}

.vmware-benefit-card ul {
	display: grid;
	gap: 1rem;
	margin: 1.5rem 0 0;
	padding: 0;
	color: var(--color-text-muted);
	list-style: none;
}

.vmware-benefit-card li {
	position: relative;
	padding-left: 1.8rem;
	line-height: 1.5;
}

.vmware-benefit-card li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--color-accent);
	content: "[+]";
	font-family: var(--font-mono);
	font-size: .72rem;
	font-weight: 700;
}

.vmware-contact {
	width: 100%;
	padding: clamp(4rem, 6vw, 6.5rem) var(--page-gutter);
	background:
		radial-gradient(circle at 20% 40%, color-mix(in srgb, var(--color-accent) 13%, transparent), transparent 35rem),
		#040b12;
	color: #fff;
}

.vmware-contact__inner {
	display: grid;
	grid-template-columns: minmax(18rem, .8fr) minmax(28rem, 1.2fr);
	gap: clamp(2rem, 6vw, 7rem);
}

.vmware-contact__intro,
.vmware-contact .home-project {
	min-width: 0;
}

.vmware-contact__intro h2 {
	color: #fff;
}

.vmware-contact__intro .vmware-richtext {
	color: #aebdd1;
}

.vmware-contact__points {
	display: grid;
	gap: .75rem;
	margin-top: 2.5rem;
}

.vmware-contact__points > div {
	display: grid;
	grid-template-columns: 1.6rem minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	color: #dce8f4;
	font-family: var(--font-mono);
	font-size: .8rem;
}

.vmware-contact__points svg,
.vmware-contact__points img {
	width: 1.35rem;
	height: 1.35rem;
	color: var(--color-accent);
	object-fit: contain;
}

.vmware-contact .home-project {
	padding: 0;
	background: transparent;
}

.vmware-contact .home-project__panel {
	width: 100%;
	margin: 0;
}

@media (max-width: 1100px) {
	.vmware-hero__grid {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
	}

	.vmware-console {
		width: min(100%, 48rem);
		min-height: 0;
	}

	.vmware-audience__grid,
	.vmware-transform__grid,
	.vmware-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vmware-transform-card:last-child,
	.vmware-benefit-card:last-child {
		grid-column: 1 / -1;
	}

	.vmware-advisor__card {
		grid-template-columns: minmax(13rem, .65fr) minmax(0, 1.35fr);
	}

	.vmware-advisor__copy {
		grid-column: 2;
	}

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

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

@media (max-width: 720px) {
	.vmware-hero {
		padding-inline: 1rem;
		padding-bottom: 4.5rem;
	}

	.vmware-hero__breadcrumb {
		margin-bottom: 2.25rem;
	}

	.vmware-hero__grid {
		gap: 2.5rem;
	}

	.vmware-hero__title {
		max-width: 100%;
		font-size: clamp(2.55rem, 10.8vw, 3.6rem);
		hyphens: auto;
		overflow-wrap: anywhere;
	}

	.vmware-console {
		border-radius: 1.25rem;
	}

	.vmware-console__points,
	.vmware-audience__grid,
	.vmware-transform__grid,
	.vmware-compare__grid,
	.vmware-products__grid,
	.vmware-benefits__grid,
	.vmware-testimonial__panel {
		grid-template-columns: minmax(0, 1fr);
	}

	.vmware-console__points > div {
		border-right: 0;
	}

	.vmware-section,
	.vmware-band {
		grid-template-columns: minmax(0, 1fr);
		padding: 3.75rem 1rem;
	}

	.vmware-section > *,
	.vmware-band > * {
		grid-column: 1;
	}

	.vmware-section__head {
		margin-bottom: 2.5rem;
	}

	.vmware-section__head h2,
	.vmware-advisor h2,
	.vmware-testimonial h2,
	.vmware-contact h2 {
		font-size: clamp(2.25rem, 11vw, 3.5rem);
	}

	.vmware-transform-card:last-child,
	.vmware-benefit-card:last-child {
		grid-column: auto;
	}

	.vmware-transform-card {
		min-height: 0;
	}

	.vmware-advisor__card {
		grid-template-columns: minmax(0, 1fr);
		padding: 1rem;
		border-radius: 1.25rem;
	}

	.vmware-advisor figure {
		width: min(100%, 24rem);
	}

	.vmware-advisor__main,
	.vmware-advisor__copy {
		grid-column: auto;
		padding-inline: .5rem;
	}

	.vmware-compare__grid,
	.vmware-testimonial__panel {
		border-radius: 1.25rem;
	}

	.vmware-compare-column--own {
		border-top: 1px solid color-mix(in srgb, var(--color-accent) 40%, var(--vmware-line));
		border-left: 0;
	}

	.vmware-accordion__item summary {
		grid-template-columns: auto minmax(0, 1fr) 1.5rem;
		gap: .85rem;
	}

	.vmware-accordion__item summary > span {
		width: 2.65rem;
		height: 2.65rem;
	}

	.vmware-accordion__item > .vmware-richtext {
		padding: 0 0 1.75rem 3.5rem;
	}

	.vmware-testimonial__panel {
		padding: 1.5rem;
	}

	.vmware-testimonial__panel .service-button {
		grid-column: auto;
	}

	.vmware-product-card {
		min-height: 0;
	}

	.vmware-contact {
		padding: 3.75rem 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vmware-console::after {
		animation: none;
	}

	.vmware-audience__item,
	.vmware-transform-card,
	.vmware-product-card {
		transition: none;
	}
}
