:root {
  --titan: #2f333a;
  --deep: #17191f;
  --deep-2: #1d2026;
  --panel: #282c34;
  --panel-2: #333842;
  --panel-3: #3a3f48;
  --orange: #ff7a1a;
  --orange-light: #ffb347;
  --white: #ffffff;
  --text: #f8f9fb;
  --muted: #c9cdd5;
  --muted-2: #aeb4bf;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.2);
  --radius: 14px;
  --radius-small: 8px;
  --header-height: 76px;
  --shell: 1180px;
  --content-width: 1180px;
  --page-gutter: clamp(1rem, 4vw, 3rem);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

html {
  color-scheme: dark;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background: var(--deep);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

iframe,
video,
canvas,
table {
  max-width: 100%;
}

input,
select,
textarea {
  max-width: 100%;
  font-size: 16px;
}

button,
input {
  font: inherit;
}

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

p,
h1,
h2,
h3,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 830px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.2vw, 5.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

::selection {
  color: var(--deep);
  background: var(--orange-light);
}

.shell {
  width: 100%;
  max-width: calc(var(--content-width) + (2 * var(--page-gutter)));
  margin-inline: auto;
  padding-right: max(var(--page-gutter), var(--safe-right));
  padding-left: max(var(--page-gutter), var(--safe-left));
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--deep);
  background: var(--white);
  border-radius: var(--radius-small);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.kicker,
.eyebrow,
.result-label {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--deep);
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(255, 122, 26, 0.22);
}

.button-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 18px 44px rgba(255, 122, 26, 0.3);
}

.button-ghost {
  color: var(--white);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--deep);
  background: var(--white);
}

.button-light:hover {
  background: #fff4e8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 132px);
}

.section-heading {
  max-width: 720px;
}

.section-heading-wide {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.section-heading-wide > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 25, 31, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  display: flex;
  width: 100%;
  max-width: calc(var(--content-width) + (2 * var(--page-gutter)));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-inline: auto;
  padding-right: max(var(--page-gutter), var(--safe-right));
  padding-left: max(var(--page-gutter), var(--safe-left));
}

.brand {
  display: inline-flex;
  min-width: 218px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #3c414b, #282c34);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand-copy span {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.72rem;
  line-height: 1.2;
}

.site-menu ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-menu a:hover,
.site-menu a.is-active {
  color: var(--white);
}

.site-menu a:hover::after,
.site-menu a.is-active::after {
  transform: scaleX(1);
}

.site-menu .nav-contact {
  min-height: 42px;
  padding: 0 15px;
  color: var(--deep);
  background: var(--orange);
  border-radius: var(--radius-small);
}

.site-menu .nav-contact::after {
  display: none;
}

.site-menu .nav-contact:hover,
.site-menu .nav-contact.is-active {
  color: var(--deep);
  background: var(--orange-light);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  --pointer-x: 78%;
  --pointer-y: 34%;
  --scene-rotate-x: 0deg;
  --scene-rotate-y: 0deg;
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 122, 26, 0.15), transparent 25%),
    linear-gradient(135deg, #252930 0%, #202329 54%, #191b20 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: -10%;
  pointer-events: none;
  background: radial-gradient(circle 340px at var(--pointer-x) var(--pointer-y), rgba(255, 179, 71, 0.13), transparent 72%);
  content: "";
  transition: opacity 280ms ease;
}

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

.hero-tech-field span {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 179, 71, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(255, 122, 26, 0.035), 0 0 22px rgba(255, 122, 26, 0.24);
  animation: techNode 7s ease-in-out infinite;
}

.hero-tech-field span::after {
  position: absolute;
  top: 3px;
  left: 7px;
  width: clamp(80px, 14vw, 210px);
  height: 1px;
  opacity: 0.24;
  background: linear-gradient(90deg, var(--orange-light), transparent);
  content: "";
  transform: rotate(var(--node-angle, 0deg));
  transform-origin: left;
}

.hero-tech-field span:nth-child(1) { top: 18%; left: 8%; --node-angle: 18deg; }
.hero-tech-field span:nth-child(2) { top: 30%; left: 58%; --node-angle: -24deg; animation-delay: -1.2s; }
.hero-tech-field span:nth-child(3) { top: 67%; left: 48%; --node-angle: 32deg; animation-delay: -2.4s; }
.hero-tech-field span:nth-child(4) { top: 76%; left: 82%; --node-angle: 155deg; animation-delay: -3.6s; }
.hero-tech-field span:nth-child(5) { top: 48%; left: 25%; --node-angle: -14deg; animation-delay: -4.8s; }
.hero-tech-field span:nth-child(6) { top: 12%; left: 88%; --node-angle: 142deg; animation-delay: -5.6s; }

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 30px;
  padding-block: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  display: inline-block;
  max-width: 100%;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 122, 26, 0.15);
  border-left: 4px solid var(--orange);
}

.hero-lead {
  max-width: 745px;
  margin-bottom: 0;
  color: #e4e7ec;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.65;
}

.hero-benefits {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  min-height: 118px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--orange);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.hero-benefits strong,
.hero-benefits span {
  display: block;
}

.hero-benefits strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-benefits span {
  color: #daddE3;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(48vw, 660px);
  margin-right: -9vw;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  top: 15%;
  left: 8%;
  background: rgba(255, 122, 26, 0.16);
  border-radius: 50%;
  filter: blur(60px);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 38px 55px rgba(0, 0, 0, 0.44));
  transform: perspective(1100px) rotateX(var(--scene-rotate-x)) rotateY(var(--scene-rotate-y));
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
  will-change: transform;
}

.visual-orbit {
  position: absolute;
  z-index: 1;
  inset: 12% 9%;
  border: 1px solid rgba(255, 179, 71, 0.32);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-two {
  inset: 24% -2%;
  border-color: rgba(255, 255, 255, 0.12);
  transform: rotate(24deg);
}

.visual-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 13px;
  color: var(--white);
  background: rgba(23, 25, 31, 0.84);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.visual-label::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.14);
}

.visual-label-top {
  top: 13%;
  left: 2%;
}

.visual-label-right {
  top: 44%;
  right: 3%;
}

.visual-label-bottom {
  right: 18%;
  bottom: 10%;
}

/* Mentor */
.mentor-section {
  background: var(--deep);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(40px, 7vw, 96px);
}

.intro-copy {
  padding-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.statement {
  position: relative;
  margin: 64px 0 0;
  padding: clamp(32px, 5vw, 60px);
  background:
    linear-gradient(100deg, rgba(255, 122, 26, 0.07), transparent 46%),
    var(--panel);
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.statement::after {
  position: absolute;
  top: 20px;
  right: 30px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  content: "“";
}

.statement p {
  position: relative;
  z-index: 1;
  max-width: 970px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.65rem, 3.1vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.statement footer {
  color: var(--orange-light);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Solutions */
.solutions-section {
  background: var(--deep-2);
}

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

.solution-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.solution-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 50%;
  content: "";
}

.solution-card:hover {
  border-color: rgba(255, 122, 26, 0.45);
  transform: translateY(-4px);
}

.solution-card-accent {
  background: linear-gradient(145deg, #393e48, #2d3139);
  border-color: rgba(255, 179, 71, 0.28);
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--deep);
  background: var(--orange);
  border-radius: var(--radius-small);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 54px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(40, 44, 52, 0.97), rgba(23, 25, 31, 0.98)) padding-box,
    linear-gradient(120deg, rgba(255, 122, 26, 0.72), rgba(255, 255, 255, 0.08) 46%, rgba(255, 179, 71, 0.42)) border-box;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.project-showcase::before {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -210px;
  right: -100px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.14), transparent 68%);
  border-radius: 50%;
  content: "";
}

.project-showcase-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 30px;
}

.project-showcase-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.project-showcase-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.project-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(280px, 0.54fr);
  gap: 20px;
}

.interactive-preview {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: #1e2127;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.interactive-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.055) 50%, transparent 65%);
  content: "";
  transform: translateX(-120%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-preview:hover::after {
  transform: translateX(120%);
}

.interactive-preview > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.interactive-preview:hover > img {
  transform: scale(1.015);
}

.preview-hotspot {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 10px;
  color: var(--white);
  background: rgba(23, 25, 31, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.preview-hotspot:hover,
.preview-hotspot.is-active {
  background: rgba(255, 122, 26, 0.92);
  border-color: var(--orange-light);
  color: var(--deep);
  transform: translateY(-2px);
}

.hotspot-product { left: 16%; bottom: 24%; }
.hotspot-story { top: 34%; right: 13%; }
.hotspot-action { right: 36%; bottom: 11%; }

.hotspot-pulse {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.55);
  animation: hotspotPulse 2.2s ease-out infinite;
}

.preview-hotspot.is-active .hotspot-pulse,
.preview-hotspot:hover .hotspot-pulse {
  background: var(--deep);
  border-color: var(--white);
}

.preview-insight {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 122, 26, 0.12), transparent 28%),
    rgba(18, 20, 25, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-insight h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.preview-insight > p:not(.result-label):not(.preview-hint) {
  color: var(--muted);
}

.preview-insight ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.preview-insight li {
  position: relative;
  padding-left: 24px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.preview-insight li::before {
  position: absolute;
  top: 0.5em;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.1);
  content: "";
}

.preview-hint {
  margin: auto 0 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
}

.experience-metrics > div {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--panel);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.experience-metrics dt {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.experience-metrics dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding: clamp(28px, 4vw, 46px);
  background: #242830;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mid-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.mid-cta .button {
  flex: 0 0 auto;
}

/* Process */
.process-section {
  background:
    linear-gradient(115deg, rgba(255, 122, 26, 0.065), transparent 38%),
    var(--deep);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before,
.process-list::after {
  position: absolute;
  z-index: 0;
  top: 26px;
  right: 3%;
  left: 3%;
  height: 2px;
  content: "";
  transform-origin: left;
}

.process-list::before {
  background: rgba(255, 255, 255, 0.14);
}

.process-list::after {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.34);
  transform: scaleX(1);
  transition: transform 1300ms cubic-bezier(0.22, 1, 0.36, 1) 160ms;
}

.motion-ready .process-list::after {
  transform: scaleX(0);
}

.motion-ready .process-list.is-visible::after {
  transform: scaleX(1);
}

.process-list li {
  position: relative;
  z-index: 1;
  min-height: 292px;
  padding: 80px 20px 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.process-list li > span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  top: 0;
  left: 20px;
  place-items: center;
  color: var(--deep);
  background: var(--orange);
  border: 4px solid var(--deep);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.1), 0 0 24px rgba(255, 122, 26, 0.24);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
}

.process-list h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.motion-ready .process-list.is-visible li {
  animation: processStepIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .process-list.is-visible li:nth-child(2) { animation-delay: 120ms; }
.motion-ready .process-list.is-visible li:nth-child(3) { animation-delay: 240ms; }
.motion-ready .process-list.is-visible li:nth-child(4) { animation-delay: 360ms; }
.motion-ready .process-list.is-visible li:nth-child(5) { animation-delay: 480ms; }

/* Team */
.team-section {
  background: var(--titan);
}

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

.team-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 315px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: rgba(23, 25, 31, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.team-card::before {
  position: absolute;
  width: 170px;
  height: 170px;
  top: -120px;
  right: -70px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.16), transparent 70%);
  border-radius: 50%;
  content: "";
  transition: transform 350ms ease;
}

a.team-card:hover {
  background: rgba(23, 25, 31, 0.9);
  border-color: rgba(255, 122, 26, 0.5);
  transform: translateY(-5px) scale(1.008);
}

a.team-card:hover::before {
  transform: scale(1.25);
}

.team-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.logo-frame {
  display: flex;
  width: 100%;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 10px 14px;
  overflow: hidden;
  background: var(--white);
  border-radius: 7px;
}

.logo-frame img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.logo-frame-eduwin img {
  max-width: 180px;
}

.logo-frame-3donline {
  justify-content: flex-start;
  padding: 16px 2px;
  background: transparent;
}

.logo-frame-3donline img {
  width: min(100%, 235px);
}

.person-photo {
  display: block;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--panel-3);
  border: 2px solid rgba(255, 179, 71, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 122, 26, 0.07);
}

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

.text-link {
  margin-top: auto;
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Scenarios */
.scenarios-section {
  background: var(--deep-2);
}

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

.scenario-card {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.scenario-card::before,
.scenario-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.scenario-card::before {
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.25), transparent 68%);
}

.scenario-card::after {
  width: 190px;
  height: 190px;
  right: -36px;
  bottom: -45px;
  border: 1px solid rgba(255, 179, 71, 0.26);
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.018), 0 0 0 52px rgba(255, 255, 255, 0.014);
}

.scenario-learning::before {
  background: radial-gradient(circle, rgba(255, 179, 71, 0.2), transparent 68%);
}

.scenario-health::before {
  background: radial-gradient(circle, rgba(87, 155, 116, 0.25), transparent 68%);
}

.scenario-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 72px;
  color: var(--deep);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 122, 26, 0.1);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.scenario-health .scenario-icon {
  color: var(--white);
  background: #437f5a;
  box-shadow: 0 0 0 10px rgba(67, 127, 90, 0.14);
}

.scenario-card h3 {
  max-width: 340px;
  font-size: 1.55rem;
}

.scenario-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Expandable case studies */
.cases-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 122, 26, 0.08), transparent 26%),
    #14171c;
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-study {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(40, 44, 52, 0.96), rgba(31, 34, 41, 0.98)) padding-box,
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), rgba(255, 122, 26, 0.1)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.case-study[open] {
  background:
    linear-gradient(120deg, rgba(45, 49, 58, 0.98), rgba(27, 30, 36, 0.99)) padding-box,
    linear-gradient(110deg, rgba(255, 122, 26, 0.72), rgba(255, 179, 71, 0.22), rgba(255, 255, 255, 0.08)) border-box;
}

.case-study summary {
  display: grid;
  min-height: 108px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

.case-study summary::-webkit-details-marker {
  display: none;
}

.case-study summary:hover {
  background: rgba(255, 255, 255, 0.025);
}

.case-index {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--deep);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(255, 122, 26, 0.08);
}

.case-study summary small,
.case-study summary strong {
  display: block;
}

.case-study summary small {
  margin-bottom: 5px;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study summary strong {
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.case-toggle {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.case-toggle::before,
.case-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background: var(--orange-light);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.case-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.case-study[open] .case-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.case-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 26px 26px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  animation: caseReveal 320ms ease both;
}

.case-content article {
  min-height: 175px;
  padding: 24px;
  background: rgba(20, 23, 28, 0.94);
}

.case-content article:nth-child(2) {
  background: rgba(31, 35, 42, 0.96);
}

.case-label {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-content article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Static blog */
.blog-teaser-section,
.blog-index-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 122, 26, 0.11), transparent 29%),
    linear-gradient(180deg, #20242b, #17191f);
}

.blog-teaser-section::before,
.blog-index-section::before {
  position: absolute;
  width: 620px;
  height: 620px;
  top: 20%;
  left: -430px;
  border: 1px solid rgba(255, 179, 71, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.012), 0 0 0 150px rgba(255, 255, 255, 0.008);
  content: "";
  pointer-events: none;
}

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

.blog-card {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(44, 48, 57, 0.98), rgba(24, 27, 33, 0.99)) padding-box,
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), rgba(255, 122, 26, 0.14)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 34px rgba(255, 122, 26, 0.07);
}

.blog-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
  background: #121419;
}

.blog-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(16, 18, 22, 0.66));
  content: "";
  pointer-events: none;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.blog-card:hover .blog-card-media img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.blog-card-body {
  display: flex;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-card-body small {
  margin-bottom: 11px;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-card-body h3 {
  margin-bottom: 15px;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  line-height: 1.24;
}

.blog-card-body p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-card-meta {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  color: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-meta b {
  color: var(--orange);
  font-size: 1rem;
}

.blog-teaser-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.blog-page {
  background: var(--deep);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 86px) 0 92px;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 122, 26, 0.18), transparent 31%),
    linear-gradient(135deg, #252a32, #15171c 68%);
  border-bottom: 1px solid var(--line);
}

.blog-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--orange);
  content: "/";
}

.breadcrumbs a {
  color: var(--muted-light);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.6vw, 6rem);
  line-height: 0.98;
}

.blog-hero .hero-lead {
  max-width: 780px;
  margin-bottom: 0;
}

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

.article-page {
  background: #14171c;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 122, 26, 0.14), transparent 28%),
    linear-gradient(145deg, #272c34, #17191f 70%);
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  padding-bottom: 48px;
}

.article-hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
}

.article-perex {
  max-width: 820px;
  margin-bottom: 28px;
  color: #d8dbe1;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-meta span {
  position: relative;
}

.article-meta span + span::before {
  position: absolute;
  left: -13px;
  color: var(--orange);
  content: "•";
}

.article-hero-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100% - 48px, 1180px);
  aspect-ratio: 16 / 7.4;
  margin: 0 auto -92px;
  background: #111318;
  border: 1px solid rgba(255, 179, 71, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(220px, 270px);
  align-items: start;
  justify-content: center;
  gap: clamp(42px, 7vw, 92px);
  padding-top: 160px;
  padding-bottom: 100px;
}

.article-content {
  min-width: 0;
  color: #d7dae0;
  font-size: 1.04rem;
  line-height: 1.82;
}

.article-content > p:first-child {
  color: var(--white);
  font-size: 1.18rem;
}

.article-content h2 {
  margin: 64px 0 20px;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.13;
}

.article-content h3 {
  margin: 38px 0 14px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.25;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.article-content li::marker {
  color: var(--orange);
  font-weight: 900;
}

.article-info,
.article-takeaways {
  margin: 40px 0;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(47, 52, 62, 0.96), rgba(27, 30, 36, 0.98)) padding-box,
    linear-gradient(120deg, rgba(255, 122, 26, 0.64), rgba(255, 255, 255, 0.08)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-info strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-light);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-info p:last-child,
.article-takeaways ul:last-child {
  margin-bottom: 0;
}

.article-takeaways {
  margin-top: 64px;
}

.article-takeaways h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

.article-source {
  margin-top: 46px;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.article-source a {
  color: var(--orange-light);
  font-weight: 800;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 24px;
  background: rgba(35, 39, 47, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.article-aside strong {
  display: block;
  margin-bottom: 15px;
  color: var(--orange-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-aside a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--muted-light);
  font-size: 0.86rem;
  line-height: 1.35;
}

.article-aside a:hover {
  color: var(--white);
}

.related-section {
  padding: 86px 0;
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.related-section h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.related-section .blog-card-body {
  min-height: 250px;
}

.article-cta {
  padding: 84px 0;
  color: var(--deep);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.28), transparent 25%),
    var(--orange);
}

.article-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.article-cta h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
}

.article-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .blog-card-grid,
  .blog-index-section .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-aside {
    position: static;
    max-width: 790px;
    order: -1;
  }

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

  .article-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-hero {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 72px;
  }

  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .blog-card-grid,
  .blog-index-section .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-body {
    min-height: 0;
  }

  .article-hero-copy {
    padding-bottom: 36px;
  }

  .article-hero-media {
    width: calc(100% - 32px);
    aspect-ratio: 16 / 9;
    margin-bottom: -58px;
  }

  .article-layout {
    gap: 28px;
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .article-aside ul {
    grid-template-columns: 1fr;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-content h2 {
    margin-top: 52px;
  }

  .article-info,
  .article-takeaways {
    padding: 24px;
  }

  .related-section {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .blog-teaser-action,
  .blog-teaser-action .button,
  .article-cta .button {
    width: 100%;
  }

  .article-meta {
    display: grid;
    gap: 7px;
  }

  .article-meta span + span::before {
    content: none;
  }

  .article-hero-media {
    width: calc(100% - 24px);
  }
}

@media (hover: none), (pointer: coarse) {
  .blog-card:hover,
  .blog-card:hover .blog-card-media img {
    transform: none;
  }
}

/* Poll */
.poll-section {
  background: var(--titan);
}

.poll-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
}

.poll-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.privacy-note {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  padding: 18px;
  background: rgba(23, 25, 31, 0.42);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.privacy-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: var(--deep);
  background: var(--orange-light);
  border-radius: 50%;
  font-weight: 900;
}

.privacy-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.poll-form {
  display: grid;
  gap: 18px;
}

.poll-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 26px;
  background: rgba(23, 25, 31, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.poll-form legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  padding: 0 0 18px;
  color: var(--white);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.poll-form legend span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: var(--deep);
  background: var(--orange);
  border-radius: var(--radius-small);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.poll-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.poll-options label {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.poll-options label:hover,
.poll-options label:has(input:checked) {
  color: var(--white);
  background: rgba(255, 122, 26, 0.09);
  border-color: rgba(255, 122, 26, 0.55);
}

.poll-options input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0;
  accent-color: var(--orange);
}

.poll-submit {
  justify-self: start;
  margin-top: 6px;
}

.poll-result {
  margin-top: 14px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--deep);
  border: 1px solid rgba(255, 122, 26, 0.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.poll-result h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.poll-result > p:not(.result-label):not(.result-footnote) {
  color: var(--muted);
}

.poll-result .button {
  margin-top: 10px;
}

.result-plan {
  margin: 22px 0 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.result-plan > p {
  margin-bottom: 12px;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-plan ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-plan li {
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.34);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.result-footnote,
.noscript-note {
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 0.8rem;
}

.noscript-note a {
  color: var(--orange-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.no-js .poll-submit {
  display: none;
}

/* Contact and footer */
.contact-section {
  padding-block: clamp(74px, 8vw, 112px);
  color: var(--deep);
  background: var(--orange);
}

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

.contact-section .kicker {
  color: #35200f;
}

.contact-section h2 {
  max-width: 870px;
  color: var(--deep);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.contact-section p:not(.kicker) {
  max-width: 820px;
  margin-bottom: 0;
  color: #33271f;
  font-size: 1.05rem;
}

.contact-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.email-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding-block: 34px;
  background: #101216;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 34px;
  color: var(--muted-2);
  font-size: 0.8rem;
}

.footer-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--orange-light);
  font-weight: 800;
}

/* Progressive reveal */
@keyframes techNode {
  0%, 100% { opacity: 0.42; transform: translate3d(0, 0, 0) scale(1); }
  50% { opacity: 0.9; transform: translate3d(0, -7px, 0) scale(1.12); }
}

@keyframes hotspotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.5); }
  70%, 100% { box-shadow: 0 0 0 13px rgba(255, 122, 26, 0); }
}

@keyframes processStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes caseReveal {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.solution-grid [data-reveal]:nth-child(2),
.team-grid [data-reveal]:nth-child(2),
.scenario-grid [data-reveal]:nth-child(2),
.case-list [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.solution-grid [data-reveal]:nth-child(3),
.team-grid [data-reveal]:nth-child(3),
.scenario-grid [data-reveal]:nth-child(3),
.case-list [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.solution-grid [data-reveal]:nth-child(4),
.team-grid [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

.solution-grid [data-reveal]:nth-child(5) { transition-delay: 320ms; }
.solution-grid [data-reveal]:nth-child(6) { transition-delay: 400ms; }

/* Responsive layout */
@media (max-width: 1120px) {
  .site-menu ul {
    gap: 15px;
  }

  .site-menu a {
    font-size: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  }

  .hero-visual {
    margin-right: -14vw;
  }

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

  .team-card {
    min-height: 285px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: -8px;
    width: min(340px, calc(100vw - 32px));
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    background: rgba(23, 25, 31, 0.985);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-menu ul {
    display: grid;
    gap: 2px;
  }

  .site-menu a,
  .site-menu .nav-contact {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .site-menu a::after {
    right: auto;
    bottom: 8px;
    left: 14px;
    width: 34px;
  }

  .no-js .site-header {
    height: auto;
  }

  .no-js .nav-shell {
    height: auto;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .no-js .site-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-grid {
    position: relative;
    grid-template-columns: 1fr;
    padding-block: 70px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-visual {
    position: absolute;
    z-index: 0;
    right: -220px;
    bottom: 8%;
    width: 520px;
    margin: 0;
    opacity: 0.2;
  }

  .visual-label,
  .visual-orbit {
    display: none;
  }

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

  .project-showcase-heading,
  .project-preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-insight {
    min-height: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 56px;
  }

  .process-list::before,
  .process-list::after {
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 26px;
    width: 2px;
    height: auto;
    transform-origin: top;
  }

  .motion-ready .process-list::after {
    transform: scaleY(0);
  }

  .motion-ready .process-list.is-visible::after {
    transform: scaleY(1);
  }

  .process-list li {
    min-height: 0;
    padding: 22px 22px 22px 70px;
  }

  .process-list li > span {
    top: 18px;
    left: -56px;
  }

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

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

  .scenario-icon {
    margin-bottom: 48px;
  }

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

  .poll-intro {
    position: static;
    max-width: 760px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-action {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-tech-field {
    display: none;
  }

  .hero-visual img {
    transform: none;
    will-change: auto;
  }

  .motion-ready [data-reveal] {
    transform: translateY(12px);
    transition-duration: 420ms;
  }

  .shell,
  .nav-shell {
    width: min(100% - 32px, var(--shell));
  }

  .section {
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(2.8rem, 12.6vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .brand-copy span {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 72px 82px;
  }

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

  .hero-benefits li:last-child {
    grid-column: 1 / -1;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .statement {
    margin-top: 44px;
  }

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

  .solution-card,
  .team-card {
    min-height: 0;
  }

  .interactive-preview,
  .interactive-preview > img {
    min-height: 340px;
  }

  .experience-metrics {
    grid-template-columns: 1fr;
  }

  .experience-metrics > div {
    min-height: 112px;
  }

  .mid-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-content {
    grid-template-columns: 1fr;
  }

  .poll-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .shell,
  .nav-shell {
    width: min(100% - 24px, var(--shell));
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .eyebrow {
    width: 100%;
    padding: 10px 11px;
    font-size: 0.68rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .button-row .button {
    width: 100%;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-benefits li {
    min-height: 128px;
    padding: 16px;
  }

  .hero-benefits strong {
    font-size: 1.2rem;
  }

  .hero-benefits span {
    font-size: 0.78rem;
  }

  .hero-benefits li:last-child {
    grid-column: 1 / -1;
    min-height: 104px;
  }

  .hero-visual {
    right: -275px;
    width: 480px;
  }

  .statement {
    padding: 28px 24px;
  }

  .statement::after {
    font-size: 5rem;
  }

  .solution-card,
  .scenario-card,
  .team-card,
  .poll-form fieldset {
    padding: 22px;
  }

  .interactive-preview,
  .interactive-preview > img {
    min-height: 260px;
  }

  .project-showcase {
    padding: 20px;
  }

  .preview-hotspot {
    width: 46px;
    padding: 8px;
    justify-content: center;
  }

  .hotspot-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hotspot-product { left: 10%; }
  .hotspot-story { right: 8%; }
  .hotspot-action { right: 34%; }

  .case-study summary {
    min-height: 94px;
    gap: 13px;
    padding: 18px;
  }

  .case-index {
    width: 40px;
    height: 40px;
  }

  .case-toggle {
    width: 38px;
    height: 38px;
  }

  .case-content {
    margin: 0 18px 18px;
  }

  .mid-cta .button,
  .poll-submit,
  .poll-result .button {
    width: 100%;
  }

  .scenario-card {
    min-height: 340px;
  }

  .scenario-icon {
    margin-bottom: 64px;
  }

  .poll-form legend {
    align-items: flex-start;
  }

  .poll-options label {
    min-height: 62px;
  }

  .contact-action,
  .contact-action .button {
    width: 100%;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-tech-field {
    display: none;
  }

  .hero-visual img,
  .interactive-preview:hover > img,
  .team-card:hover,
  .solution-card:hover,
  .scenario-card:hover {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.75rem;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits li,
  .hero-benefits li:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-tech-field,
  .hotspot-pulse {
    display: none;
  }

  .hero-visual img,
  .interactive-preview > img,
  .process-list li,
  .case-content {
    transform: none !important;
    will-change: auto;
  }

}

/* Phase 2: premium depth, real project imagery and magazine hierarchy */
.hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 122, 26, 0.22), transparent 27%),
    radial-gradient(circle at 20% 92%, rgba(255, 179, 71, 0.08), transparent 28%),
    linear-gradient(135deg, #252a32 0%, #1c2027 52%, #111318 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: clamp(24px, 4vw, 68px);
}

.hero-copy h1 {
  max-width: 900px;
  text-wrap: balance;
}

.hero-benefits li,
.solution-card,
.process-list li {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)) padding-box,
    linear-gradient(130deg, rgba(255, 255, 255, 0.18), rgba(255, 122, 26, 0.26), rgba(255, 255, 255, 0.06)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
}

.hero-visual-real {
  position: relative;
  width: min(47vw, 650px);
  height: 620px;
  margin-right: -5vw;
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--scene-rotate-x)) rotateY(var(--scene-rotate-y));
  transform-style: preserve-3d;
  transition: transform 150ms ease-out;
  will-change: transform;
}

.hero-visual-real figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #14171c;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48), 0 0 38px rgba(255, 122, 26, 0.09);
}

.hero-visual-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
  transition: filter 250ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: auto;
}

.hero-scene-back {
  z-index: 1;
  width: 82%;
  aspect-ratio: 16 / 9;
  top: 7%;
  left: 2%;
  transform: rotate(-4deg) translateZ(-26px);
}

.hero-device {
  z-index: 3;
  width: 43%;
  aspect-ratio: 440 / 582;
  top: 19%;
  right: 2%;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: translateZ(42px) rotate(3deg);
}

.hero-device img {
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.55));
}

.hero-scene-front {
  z-index: 4;
  width: 60%;
  aspect-ratio: 16 / 9;
  bottom: 4%;
  left: 2%;
  transform: translateZ(68px) rotate(2deg);
}

.hero-visual-real::after {
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 54%;
  right: 2%;
  bottom: 8%;
  background: rgba(255, 122, 26, 0.2);
  border-radius: 50%;
  filter: blur(75px);
  content: "";
}

.solutions-section,
.process-section,
.cases-section,
.blog-teaser-section,
.poll-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-preview > img {
  filter: saturate(0.92) contrast(1.04) brightness(0.8);
}

.interactive-preview::after {
  background: linear-gradient(115deg, rgba(10, 12, 16, 0.14), rgba(10, 12, 16, 0.48));
}

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

.process-list li {
  min-height: 310px;
  padding-inline: 17px;
}

.motion-ready .process-list.is-visible li:nth-child(6) {
  animation-delay: 600ms;
}

.case-study summary {
  grid-template-columns: auto minmax(150px, 220px) minmax(0, 1fr) auto;
}

.case-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 200ms ease;
}

.case-study summary:hover .case-thumb img,
.case-study[open] .case-thumb img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.case-content .case-link {
  display: inline-flex;
  min-height: 56px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 22px;
  color: var(--white);
  background: rgba(255, 122, 26, 0.1);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-content .case-link:hover {
  color: var(--deep);
  background: var(--orange);
}

.blog-card-labels,
.article-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
}

.article-eyebrow {
  justify-content: space-between;
  margin-bottom: 20px;
}

.article-eyebrow .kicker {
  margin-bottom: 0;
}

.source-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 25px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.source-health {
  color: #d7ef75;
  background: rgba(193, 220, 45, 0.09);
}

.source-3donline {
  color: var(--orange-light);
  background: rgba(255, 122, 26, 0.09);
}

.blog-card-labels {
  margin-bottom: 13px;
}

.blog-card-labels small,
.blog-card-body .blog-card-labels small {
  margin: 0;
}

.blog-card-featured {
  grid-column: span 2;
}

.blog-card-featured .blog-card-media {
  aspect-ratio: 2 / 1;
}

.blog-card-featured .blog-card-body h3 {
  max-width: 810px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.blog-card-featured .blog-card-body {
  min-height: 280px;
}

.blog-hero,
.article-hero {
  background:
    radial-gradient(circle at 80% 28%, rgba(255, 122, 26, 0.18), transparent 30%),
    linear-gradient(135deg, #242932, #17191f 68%);
}

.blog-card {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.025);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  }

  .hero-visual-real {
    width: 560px;
    margin-right: -13vw;
  }

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

  .process-list::before,
  .process-list::after {
    display: none;
  }

  .process-list li {
    min-height: 245px;
  }
}

@media (max-width: 960px) {
  .hero-visual-real {
    position: absolute;
    right: -180px;
    bottom: 1%;
    width: 520px;
    height: 550px;
    margin: 0;
    opacity: 0.19;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list::before,
  .process-list::after {
    display: block;
  }

  .process-list li {
    min-height: 0;
  }

  .case-study summary {
    grid-template-columns: auto minmax(130px, 180px) minmax(0, 1fr) auto;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .blog-card-featured {
    grid-column: auto;
  }

  .blog-card-featured .blog-card-media {
    aspect-ratio: 16 / 9;
  }

  .blog-card-featured .blog-card-body {
    min-height: 0;
  }

  .case-study summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .case-thumb {
    display: none;
  }

  .article-eyebrow {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-visual-real {
    right: -315px;
    width: 500px;
    opacity: 0.13;
  }

  .case-study summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .case-content .case-link {
    justify-content: flex-start;
    padding-inline: 18px;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-visual-real {
    transform: none;
    will-change: auto;
  }

  .case-study summary:hover .case-thumb img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-real,
  .hero-visual-real img,
  .case-thumb img {
    transform: none !important;
    will-change: auto;
  }
}

/* Final responsive system */
html {
  scroll-padding-top: calc(var(--header-height) + var(--safe-top) + 18px);
}

body {
  width: 100%;
}

body.nav-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

:where(section[id], article [id]) {
  scroll-margin-top: calc(var(--header-height) + var(--safe-top) + 18px);
}

.shell,
.nav-shell {
  width: 100%;
  max-width: calc(var(--content-width) + (2 * var(--page-gutter)));
  padding-right: max(var(--page-gutter), var(--safe-right));
  padding-left: max(var(--page-gutter), var(--safe-left));
}

:where(
  .hero-grid,
  .intro-grid,
  .solution-grid,
  .project-preview-grid,
  .process-list,
  .team-grid,
  .scenario-grid,
  .case-list,
  .case-content,
  .blog-card-grid,
  .poll-layout,
  .poll-options,
  .contact-grid,
  .article-layout,
  .article-cta-grid,
  .footer-grid
) > * {
  min-width: 0;
}

.site-header {
  height: calc(var(--header-height) + var(--safe-top));
  padding-top: var(--safe-top);
}

.nav-shell {
  height: var(--header-height);
}

.site-menu,
.site-menu ul,
.site-menu li,
.site-menu a {
  min-width: 0;
}

.hero,
.mentor-section,
.solutions-section,
.project-showcase-section,
.process-section,
.team-section,
.scenarios-section,
.cases-section,
.blog-teaser-section,
.poll-section,
.contact-section,
.blog-hero,
.article-hero,
.article-cta {
  overflow: clip;
}

.hero {
  min-height: calc(100svh - var(--header-height) - var(--safe-top));
}

.hero-grid {
  min-height: calc(100svh - var(--header-height) - var(--safe-top));
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  gap: clamp(30px, 4vw, 68px);
  padding-block: clamp(62px, 7vw, 104px);
}

.hero-copy,
.hero-copy h1,
.hero-lead {
  width: 100%;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(3.15rem, 5.45vw, 5.35rem);
  line-height: 0.98;
  overflow-wrap: normal;
  text-wrap: balance;
}

.eyebrow {
  width: fit-content;
  max-width: min(100%, 540px);
  overflow-wrap: break-word;
}

.button,
.button-row,
.button-row > * {
  max-width: 100%;
}

.button {
  min-height: 48px;
  white-space: normal;
}

.hero-benefits {
  width: 100%;
}

.hero-visual-real {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 650 / 620;
  margin: 0;
  justify-self: end;
  opacity: 1;
}

.hero-visual-real figure,
.hero-visual-real img {
  max-width: 100%;
}

.hero-visual-real img,
.article-hero-media img,
.blog-card-media img,
.case-thumb img,
.interactive-preview > img,
.team-card img {
  height: 100%;
}

.hero-device img {
  object-fit: contain;
}

.hero-visual-real .orbit-two {
  inset: 22% 2%;
}

.solution-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 275px), 1fr));
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

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

.solution-card,
.scenario-card,
.team-card,
.blog-card,
.poll-form fieldset {
  height: auto;
  max-width: 100%;
}

.project-preview-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.interactive-preview {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.interactive-preview > img {
  min-height: 0;
  object-fit: cover;
}

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

.process-list li {
  min-width: 0;
  min-height: 285px;
}

.case-study,
.case-study summary,
.case-content {
  max-width: 100%;
}

.case-study summary {
  grid-template-columns: auto minmax(150px, 220px) minmax(0, 1fr) auto;
}

.case-study summary > * {
  min-width: 0;
}

.case-study summary strong,
.case-study summary small,
.case-content p {
  overflow-wrap: break-word;
}

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

.blog-card > a,
.blog-card-body,
.blog-card-labels {
  min-width: 0;
  max-width: 100%;
}

.blog-card-body h3,
.blog-card-body p,
.source-badge {
  overflow-wrap: break-word;
}

.blog-card-media img {
  object-fit: cover;
}

.poll-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
}

.poll-form,
.poll-form fieldset,
.poll-options,
.poll-options label,
.poll-result {
  max-width: 100%;
}

.poll-options label {
  min-height: 56px;
  touch-action: manipulation;
}

.poll-options input {
  flex: 0 0 auto;
}

.article-hero {
  padding-top: clamp(58px, 7vw, 96px);
}

.article-hero-copy {
  max-width: calc(1060px + (2 * var(--page-gutter)));
}

.blog-hero h1,
.article-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 5.7vw, 5.45rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.article-hero-media {
  width: calc(100% - max(var(--page-gutter), var(--safe-left)) - max(var(--page-gutter), var(--safe-right)));
  max-width: var(--content-width);
}

.article-layout {
  grid-template-columns: minmax(0, 790px) minmax(220px, 270px);
}

.article-content {
  width: 100%;
  max-width: 72ch;
}

.article-content img,
.article-content figure,
.article-content blockquote,
.article-info,
.article-takeaways {
  max-width: 100%;
}

.breadcrumbs ol,
.article-meta,
.article-eyebrow {
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
}

.breadcrumbs li,
.article-meta span,
.article-source,
.article-source a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-aside a {
  overflow-wrap: break-word;
}

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

.footer-grid > * {
  min-width: 0;
  overflow-wrap: break-word;
}

.site-footer {
  padding-bottom: max(34px, var(--safe-bottom));
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

iframe,
.responsive-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --page-gutter: clamp(1.5rem, 3vw, 2.5rem);
  }

  .site-menu ul {
    gap: 13px;
  }

  .site-menu a {
    font-size: 0.68rem;
  }

  .brand {
    min-width: 190px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5.4vw, 4.4rem);
  }

  .hero-visual-real {
    max-width: 500px;
  }

  .hero-benefits {
    gap: 10px;
  }

  .hero-benefits li {
    padding: 15px;
  }

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

  .process-list::before,
  .process-list::after {
    display: none;
  }

  .process-list li {
    min-height: 235px;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-menu {
    position: fixed;
    z-index: 99;
    top: calc(var(--header-height) + var(--safe-top));
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-height) - var(--safe-top));
    padding: 14px max(var(--page-gutter), var(--safe-right)) max(18px, var(--safe-bottom)) max(var(--page-gutter), var(--safe-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    background: rgba(23, 25, 31, 0.985);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
    -webkit-overflow-scrolling: touch;
  }

  .site-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-menu ul {
    display: grid;
    gap: 2px;
  }

  .site-menu a,
  .site-menu .nav-contact {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .no-js .site-header {
    height: auto;
  }

  .no-js .nav-shell {
    height: auto;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .no-js .site-menu {
    position: static;
    max-height: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: clamp(54px, 8vw, 82px);
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-copy h1 {
    max-width: 800px;
    font-size: clamp(3.2rem, 8.5vw, 5.15rem);
  }

  .hero-lead {
    max-width: 760px;
  }

  .hero-benefits {
    max-width: 760px;
  }

  .hero-visual-real {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 700px);
    max-width: 700px;
    height: auto;
    aspect-ratio: 650 / 560;
    margin: 0 auto;
    justify-self: center;
    opacity: 1;
  }

  .project-preview-grid,
  .poll-layout,
  .contact-grid,
  .article-layout,
  .article-cta-grid {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-left: 0;
  }

  .process-list::before,
  .process-list::after {
    display: none;
  }

  .process-list li {
    min-height: 220px;
    padding: 72px 20px 24px;
  }

  .process-list li > span {
    top: 18px;
    left: 20px;
  }

  .case-study summary {
    grid-template-columns: auto minmax(130px, 180px) minmax(0, 1fr) auto;
    gap: 14px;
  }

  .poll-intro,
  .article-aside {
    position: static;
  }

  .article-aside {
    width: 100%;
    max-width: 790px;
    order: -1;
  }

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

  .article-content {
    max-width: 72ch;
  }

  .article-cta .button {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --page-gutter: clamp(1rem, 4.5vw, 1.35rem);
  }

  .section {
    padding-block: clamp(64px, 16vw, 84px);
  }

  h2 {
    font-size: clamp(2rem, 9.3vw, 3.15rem);
    line-height: 1.03;
    overflow-wrap: break-word;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: clamp(42px, 11vw, 62px);
    padding-bottom: clamp(56px, 14vw, 76px);
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-copy .eyebrow {
    order: 1;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 9px 12px;
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    order: 2;
    max-width: 15ch;
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.01;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .hero-lead {
    order: 3;
    margin-bottom: 0;
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.58;
  }

  .hero-copy .button-row {
    order: 4;
    width: 100%;
    margin-top: 26px;
  }

  .hero-visual-real {
    order: 5;
    display: grid;
    width: 100%;
    max-width: 430px;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 34px auto 0;
    place-items: center;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 60%, rgba(255, 122, 26, 0.22), transparent 46%),
      linear-gradient(145deg, #2a2f38, #171a20);
    border: 1px solid rgba(255, 179, 71, 0.24);
    border-radius: 18px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    transform: none;
    will-change: auto;
  }

  .hero-visual-real::after {
    width: 70%;
    height: 55%;
    right: 15%;
    bottom: 6%;
    filter: blur(42px);
  }

  .hero-scene-back,
  .hero-scene-front,
  .hero-visual-real .visual-orbit,
  .hero-visual-real .visual-label {
    display: none;
  }

  .hero-visual-real .hero-device {
    position: relative;
    z-index: 2;
    inset: auto;
    display: block;
    width: min(68%, 275px);
    height: auto;
    aspect-ratio: 440 / 582;
    margin: 0;
    transform: none;
  }

  .hero-visual-real .hero-device img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-benefits {
    order: 6;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-benefits li,
  .hero-benefits li:last-child {
    min-height: 0;
    grid-column: auto;
    padding: 16px 18px;
  }

  .hero-tech-field {
    display: none;
  }

  .solution-grid,
  .team-grid,
  .scenario-grid,
  .blog-card-grid,
  .blog-index-section .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-column: auto;
  }

  .blog-card-featured .blog-card-media,
  .blog-card-media {
    aspect-ratio: 16 / 9;
  }

  .blog-card-body,
  .blog-card-featured .blog-card-body,
  .related-section .blog-card-body {
    min-height: 0;
  }

  .interactive-preview {
    aspect-ratio: 4 / 3;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 52px;
  }

  .process-list::before,
  .process-list::after {
    display: block;
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 24px;
    width: 2px;
    height: auto;
  }

  .process-list li {
    min-height: 0;
    padding: 20px 18px 20px 58px;
  }

  .process-list li > span {
    top: 17px;
    left: -50px;
  }

  .case-study summary {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
    padding: 16px;
  }

  .case-index {
    grid-column: 1;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .case-study summary > span:nth-of-type(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .case-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .case-thumb {
    display: block;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 16 / 7;
  }

  .case-content {
    grid-template-columns: 1fr;
    margin: 0 16px 16px;
  }

  .case-content .case-link {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .poll-options {
    grid-template-columns: 1fr;
  }

  .poll-options label {
    min-height: 60px;
  }

  .poll-submit,
  .poll-result .button {
    width: 100%;
  }

  .blog-hero {
    padding-top: clamp(58px, 13vw, 76px);
    padding-bottom: clamp(64px, 15vw, 86px);
  }

  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(2.2rem, 10.2vw, 3.25rem);
    line-height: 1.01;
  }

  .article-hero {
    padding-top: clamp(46px, 11vw, 64px);
  }

  .article-hero-copy {
    padding-bottom: 32px;
  }

  .article-perex {
    font-size: 1rem;
    line-height: 1.62;
  }

  .article-meta {
    display: grid;
    gap: 7px;
  }

  .article-meta span + span::before {
    content: none;
  }

  .article-hero-media {
    width: calc(100% - max(var(--page-gutter), var(--safe-left)) - max(var(--page-gutter), var(--safe-right)));
    aspect-ratio: 16 / 9;
    margin-bottom: -48px;
  }

  .article-layout {
    gap: 28px;
    padding-top: 94px;
    padding-bottom: 70px;
  }

  .article-content {
    max-width: none;
    font-size: 1rem;
    line-height: 1.75;
  }

  .article-content > p:first-child {
    font-size: 1.08rem;
  }

  .article-content h2 {
    margin-top: 48px;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .article-info,
  .article-takeaways {
    margin-block: 34px;
    padding: 22px;
  }

  .article-aside {
    padding: 20px;
  }

  .article-aside ul {
    grid-template-columns: 1fr;
  }

  .related-section {
    padding-block: 66px;
  }

  .article-cta {
    padding-block: 68px;
  }

  .article-cta h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .article-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 479px) {
  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-copy .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy .button-row .button,
  .mid-cta .button,
  .blog-teaser-action,
  .blog-teaser-action .button,
  .contact-action,
  .contact-action .button {
    width: 100%;
  }

  .hero-visual-real {
    max-width: 390px;
    border-radius: 15px;
  }

  .solution-card,
  .scenario-card,
  .team-card,
  .poll-form fieldset {
    padding: 21px;
  }

  .project-showcase {
    padding: 18px;
  }

  .case-study summary {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 14px;
  }

  .case-index,
  .case-toggle {
    width: 38px;
    height: 38px;
  }

  .case-study summary strong {
    font-size: 1rem;
  }

  .article-eyebrow {
    align-items: flex-start;
    flex-direction: column;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }
}

@media (max-width: 359px) {
  :root {
    --page-gutter: 1rem;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .hero-copy h1 {
    font-size: 2.08rem;
  }

  .hero-visual-real .hero-device {
    width: 64%;
  }

  .source-badge {
    font-size: 0.56rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero::after {
    opacity: 0.35;
  }

  .hero-visual-real,
  .hero-visual-real img,
  .blog-card:hover,
  .blog-card:hover .blog-card-media img,
  .case-study summary:hover .case-thumb img,
  .team-card:hover,
  .solution-card:hover,
  .scenario-card:hover {
    transform: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero-tech-field,
  .visual-orbit,
  .hotspot-pulse {
    display: none;
  }

  .hero-visual-real,
  .hero-visual-real *,
  .interactive-preview > img,
  .process-list li,
  .case-content,
  .blog-card,
  .blog-card-media img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}
