:root {
  /* ---- Premium palette (strict) ---- */
  --gold: #f5b121;
  --gold-bright: #ffd966;
  --gold-glow: rgba(245, 177, 33, 0.22);
  --gold-dim: rgba(245, 177, 33, 0.1);
  --gold-contrast: var(--gold);
  --black: #000000;
  --dark-bg: #1a1a1a;
  --off-white: #f2f2f2;

  --bg: var(--dark-bg);
  --text: #f7f5f0;
  --muted: rgba(247, 245, 240, 0.62);
  --dim: rgba(247, 245, 240, 0.34);
  --border: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);

  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 34px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  /* ---- Typography: serif headings, sans body ---- */
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --content: min(1180px, calc(100vw - 2.6rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--dark-bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .hero-pin > * {
  opacity: 0;
}

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

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

::selection {
  background: var(--gold);
  color: #1a1304;
}

/* ================================================ */
/* Theme blocks: alternate dark / light chapters     */
/* ================================================ */

.theme-dark {
  background: var(--dark-bg);
  --text: #f7f5f0;
  --muted: rgba(247, 245, 240, 0.62);
  --dim: rgba(247, 245, 240, 0.34);
  --border: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.theme-light {
  background: var(--off-white);
  --text: #15130f;
  --muted: rgba(21, 19, 15, 0.6);
  --dim: rgba(21, 19, 15, 0.34);
  --border: rgba(0, 0, 0, 0.08);
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.65);
  --gold-contrast: #8c5e00;
  color: var(--text);
}

/* ================================================ */
/* Preloader                                         */
/* ================================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: var(--black);
}

.preloader-mark svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  filter: drop-shadow(0 0 18px var(--gold-glow));
}

.preloader-shield {
  fill: none;
  stroke: currentColor;
}

.preloader-word {
  margin: 0;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.85;
}

.preloader-bar {
  width: 160px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

/* ================================================ */
/* Aurora ambience                                   */
/* ================================================ */

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

.aurora-field-soft {
  opacity: 0.6;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  will-change: transform;
}

.aurora-a {
  width: 50vw;
  height: 50vw;
  max-width: 720px;
  max-height: 720px;
  top: -14vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(245, 177, 33, 0.4) 0%, rgba(245, 177, 33, 0) 70%);
  animation: drift1 36s ease-in-out infinite;
}

.aurora-b {
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  top: -6vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(255, 217, 102, 0.3) 0%, rgba(255, 217, 102, 0) 70%);
  animation: drift2 30s ease-in-out infinite;
}

.aurora-c {
  width: 46vw;
  height: 46vw;
  max-width: 680px;
  max-height: 680px;
  bottom: -16vw;
  left: 10vw;
  background: radial-gradient(circle, rgba(195, 139, 18, 0.32) 0%, rgba(195, 139, 18, 0) 70%);
  animation: drift3 40s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 5vw) scale(1.12); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5vw, 6vw) scale(1.08); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4vw, -4vw) scale(1.1); }
}

/* ================================================ */
/* Topbar                                            */
/* ================================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.7rem max(1.2rem, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 11, 0.55);
  backdrop-filter: blur(22px);
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.topbar.is-scrolled {
  background: rgba(6, 5, 8, 0.85);
  border-bottom-color: rgba(245, 177, 33, 0.25);
}

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

.brand img {
  height: 42px;
  width: auto;
}

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

.site-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(247, 245, 240, 0.72);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  transition: color 200ms ease, background 200ms ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1304 !important;
  font-weight: 800 !important;
  margin-left: 0.3rem;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  background: #fff;
  border-radius: var(--radius-pill);
}

/* ================================================ */
/* Buttons                                           */
/* ================================================ */

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: transform 220ms var(--ease-spring), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1304;
  box-shadow: 0 16px 44px var(--gold-glow);
}

.button-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
}

.arrow {
  transition: transform 200ms ease;
}

.button:hover .arrow {
  transform: translateX(3px);
}

/* ================================================ */
/* Shared type                                       */
/* ================================================ */

.eyebrow,
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-contrast);
}

.eyebrow {
  margin-bottom: 1.6rem;
}

.section-label {
  margin-bottom: 1rem;
}

.chapter-title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin: 0 0 1.2rem;
}

.chapter-text {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.2rem;
  max-width: 34rem;
}

/* ================================================ */
/* Hero                                              */
/* ================================================ */

.hero {
  position: relative;
  height: 220vh;
  background: var(--black);
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh; /* fallback for browsers without small-viewport units */
  height: 100svh; /* iOS Safari: keep content clear of the bottom toolbar */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7.5rem 1.5rem 4rem;
  z-index: 2;
}

.hero-pin .eyebrow {
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  max-width: 22ch;
  margin: 0 0 1.6rem;
  text-wrap: balance;
}

.hero-emblem {
  position: relative;
  width: clamp(190px, 22vw, 340px);
  aspect-ratio: 1;
  margin-bottom: 1.6rem;
}

.emblem-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 177, 33, 0.28), transparent 70%);
  filter: blur(48px);
  z-index: 0;
}

.emblem-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.emblem-boundary {
  fill: none;
  stroke: rgba(245, 177, 33, 0.14);
  stroke-width: 1;
}

.emblem-scan {
  fill: none;
  stroke: url(#scanGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 283 848;
  transform-origin: 220px 220px;
  animation: scanRotate 26s linear infinite;
}

.emblem-fill {
  fill: url(#coreGrad);
  opacity: 0.4;
  transform-origin: 220px 220px;
  animation: corePulse 8s ease-in-out infinite;
}

.emblem-mark-path {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.emblem-mark-shield {
  stroke-width: 3.5;
  stroke: var(--gold);
}

.emblem-mark-wrench {
  stroke: var(--gold-bright);
}

.emblem-shape {
  opacity: 0;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.emblem-shape-shield {
  fill: var(--gold);
}

.emblem-shape-monitor,
.emblem-shape-wrench {
  fill: var(--gold-bright);
}

.orbit-node {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

@keyframes scanRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes corePulse {
  0%, 100% { opacity: 0.38; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.02); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.hero-scroll-cue span {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll-cue p {
  margin: 0;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================ */
/* Split text                                        */
/* ================================================ */

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.05;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.word > span {
  display: inline-block;
  will-change: transform;
}

/* ================================================ */
/* Marquee                                           */
/* ================================================ */

.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2.4rem;
  animation: marqueeScroll 60s linear infinite;
}

.marquee-track-reverse {
  animation-name: marqueeScrollReverse;
  animation-duration: 70s;
}

.marquee-track span {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--gold);
  font-size: 0.55em;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ================================================ */
/* Services intro                                    */
/* ================================================ */

.services-intro {
  padding: 9rem 1.3rem 4rem;
  text-align: center;
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 auto 1.5rem;
  max-width: 22ch;
}

/* ================================================ */
/* Chapters                                          */
/* ================================================ */

.chapter {
  position: relative;
  padding: 2rem 1.3rem;
}

.chapter-grid {
  width: var(--content);
  margin: 0 auto;
  min-height: 150vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.chapter-content {
  position: relative;
  z-index: 2;
  padding-top: 22vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 56vh;
}

.chapter-visual {
  position: sticky;
  top: 14vh;
  height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Architecture diagram (Intune) --- */

.architecture-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  padding: 1.6rem;
}

.arch-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arch-arrow-fill {
  fill: var(--gold);
  fill-opacity: 0.85;
}

/* ================================================ */
/* Intune architecture layer diagram                 */
/* ================================================ */

.architecture-chapter {
  padding: 7rem 1.3rem;
}

.architecture-grid {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.architecture-intro {
  max-width: 640px;
  text-align: center;
}

.architecture-intro .section-label {
  display: block;
}

.architecture-intro .chapter-text {
  margin-inline: auto;
}

.architecture-intro .button {
  margin-top: 0.6rem;
}

.architecture-intro-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.6rem;
}

.architecture-intro-actions .button {
  margin-top: 0;
}

.architecture-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.architecture-panel-stack {
  width: min(640px, 100%);
  aspect-ratio: auto;
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.arch-svg-stack {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.arch-layer-box {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 1;
}

.arch-layer-box-tight {
  fill: var(--surface-strong);
  stroke: rgba(245, 177, 33, 0.3);
}

.arch-layer-box-large {
  fill: rgba(255, 255, 255, 0.02);
}

.arch-layer-title {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  fill: var(--gold-bright);
}

.arch-layer-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  fill: var(--muted);
}

.arch-chip {
  fill: var(--surface-strong);
  stroke: var(--border);
  stroke-width: 1;
}

.arch-chip-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  fill: var(--text);
}

.arch-card-box {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 1;
}

.arch-card-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  fill: var(--gold-bright);
}

.arch-bullet {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  fill: var(--muted);
}

.arch-bullet-card {
  font-size: 12.5px;
}

.arch-bullet-dot {
  fill: var(--gold);
  opacity: 0.7;
}

.arch-connector {
  stroke: var(--gold);
  stroke-opacity: 0.3;
  stroke-width: 1.5;
  stroke-dasharray: 4 8;
  animation: dashFlow 64s linear infinite;
}

/* ================================================ */
/* Intune architecture layer cards                   */
/* ================================================ */

.layer-grid {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.layer-grid-note {
  grid-column: 1 / -1;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.layer-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  transition: border-color 240ms ease, background 240ms ease;
}

.layer-card:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
}

.layer-card-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-contrast);
  margin: 0;
}

.layer-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.layer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.layer-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.layer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.layer-card-wide {
  grid-column: 1 / -1;
}

.layer-card-wide ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.5rem;
}

/* ================================================ */
/* AI integration wheel diagram                      */
/* ================================================ */

.architecture-panel-wheel {
  width: min(560px, 100%);
  aspect-ratio: 1;
}

.arch-svg-wheel {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.wheel-ring-group {
  transform-origin: 320px 320px;
  animation: wheelRotate 240s linear infinite;
}

@keyframes wheelRotate {
  to {
    transform: rotate(360deg);
  }
}

.wheel-ring {
  fill: none;
  stroke: var(--border);
  stroke-width: 1.5;
}

.wheel-tooth {
  stroke: var(--border);
  stroke-width: 3;
}

.wheel-spoke {
  stroke: var(--gold);
  stroke-opacity: 0.35;
  stroke-width: 2;
  stroke-dasharray: 3 7;
  animation: dashFlow 18s linear infinite, wheelSpokeFire 9s ease-in-out infinite;
}

@keyframes wheelSpokeFire {
  0%, 100% {
    stroke-opacity: 0.35;
    stroke-width: 2;
  }
  8% {
    stroke-opacity: 1;
    stroke-width: 2.5;
  }
  28% {
    stroke-opacity: 0.35;
    stroke-width: 2;
  }
}

.wheel-hub {
  fill: var(--black);
  stroke: var(--gold);
  stroke-width: 1.5;
  animation: archAiGlow 7s ease-in-out infinite;
}

@keyframes archAiGlow {
  0%, 100% { stroke-opacity: 0.25; }
  50% { stroke-opacity: 0.65; }
}

.wheel-hub-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 26px;
  fill: var(--gold-bright);
}

.wheel-hub-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.24em;
  fill: var(--gold);
  opacity: 0.85;
}

.wheel-node {
  transform-box: fill-box;
  transform-origin: center;
}

.wheel-node-box {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 1.5;
}

.wheel-node-badge {
  fill: var(--gold);
  animation: wheelBadgePulse 9s ease-in-out infinite;
}

@keyframes wheelBadgePulse {
  0%, 100% { opacity: 0.5; }
  12% { opacity: 1; }
  28% { opacity: 0.5; }
}

.wheel-node-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  fill: var(--black);
}

.wheel-node-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  fill: var(--text);
}

.wheel-sweep {
  transform-origin: 320px 320px;
  animation: wheelSweepRotate 10s linear infinite;
}

@keyframes wheelSweepRotate {
  to {
    transform: rotate(360deg);
  }
}

.wheel-sweep-beam {
  fill: url(#wheelRadarGrad);
}

/* --- Node panel (AI Integration) --- */

.node-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(24px);
  padding: 1.6rem;
}

.theme-dark .node-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.node-svg {
  width: 100%;
  height: 100%;
}

.node-links line {
  stroke: var(--gold);
  stroke-opacity: 0.25;
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: dashFlow 30s linear infinite;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -200;
  }
}

.node-point {
  fill: var(--gold);
  filter: drop-shadow(0 0 6px var(--gold-glow));
  animation: pulseRing 3.4s ease-in-out infinite;
  transform-origin: center;
}

.node-core {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 16px var(--gold-glow));
}

.node-point:nth-child(2) { animation-delay: 0.3s; }
.node-point:nth-child(3) { animation-delay: 0.6s; }
.node-point:nth-child(4) { animation-delay: 0.9s; }
.node-point:nth-child(5) { animation-delay: 1.2s; }
.node-point:nth-child(6) { animation-delay: 1.5s; }
.node-point:nth-child(7) { animation-delay: 1.8s; }

/* ================================================ */
/* Why section                                       */
/* ================================================ */

.why-section {
  padding: 8rem 1.3rem 9rem;
}

.why-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}

.why-blocks {
  width: min(840px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.why-line {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--dim);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), color 900ms var(--ease), transform 900ms var(--ease);
}

.why-line.visible {
  opacity: 1;
  color: var(--text);
  transform: translateY(0);
}

.why-line em {
  font-style: normal;
  color: var(--gold-contrast);
}

.why-line.visible em {
  color: var(--gold-contrast);
}

/* ================================================ */
/* About section                                     */
/* ================================================ */

.about-section {
  position: relative;
  padding: 8rem 1.3rem;
  overflow: hidden;
}

.about-grid {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  perspective: 1200px;
}

.capability-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 240ms ease, background 240ms ease;
}

.capability-card:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
}

.card-sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 217, 102, 0.18), transparent 60%);
  transition: opacity 320ms ease;
}

.capability-card:hover .card-sheen {
  opacity: 1;
}

.capability-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  color: var(--gold-bright);
}

.capability-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card h3,
.capability-card p {
  position: relative;
  z-index: 1;
}

.capability-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.capability-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ================================================ */
/* Endpoint Health Check                             */
/* ================================================ */

.health-check-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.health-check-note {
  width: min(640px, 100%);
  margin: 0 auto 4rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.health-check {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: left;
}

.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.hc-progress {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
  min-width: 0;
}

.hc-progress-track {
  flex: 1;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--border);
  overflow: hidden;
}

.hc-progress-fill {
  height: 100%;
  width: 10%;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transition: width 400ms ease;
}

.hc-progress-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.hc-restart {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}

.hc-restart:hover {
  color: var(--gold-contrast);
  text-decoration-color: currentColor;
}

.hc-card {
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  backdrop-filter: blur(20px);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hc-card.is-transitioning {
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}

.hc-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-contrast);
  margin-bottom: 0.9rem;
}

.hc-question {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 1.6rem;
  color: var(--text);
}

.hc-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hc-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.hc-option:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
}

.hc-option.is-selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.hc-option-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold-contrast);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.hc-option.is-selected .hc-option-letter {
  border-color: var(--gold);
  background: var(--gold);
  color: #1a1304;
}

.hc-back {
  align-self: flex-start;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 200ms ease;
}

.hc-back:hover {
  color: var(--gold-contrast);
}

.hc-results {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hc-results-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-contrast);
  margin-bottom: 0.6rem;
}

.hc-results-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.hc-results-band {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
  margin: 0.5rem 0 1rem;
  color: var(--text);
}

.hc-results-desc {
  width: min(34rem, 100%);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.8rem;
}

.hc-results-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================================================ */
/* Final CTA                                         */
/* ================================================ */

.final-cta {
  position: relative;
  text-align: center;
  padding: 9rem 1.3rem;
  overflow: hidden;
}

.final-cta-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  border: none;
  padding: 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.final-cta-marquee .marquee-track span {
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
}

.final-cta-marquee .marquee-dot {
  font-size: clamp(1.5rem, 5vw, 4rem);
  -webkit-text-stroke: 0;
  color: var(--border);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 1rem;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 2.2rem;
}

.button-glow {
  animation: ctaPulse 5.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 16px 44px var(--gold-glow); }
  50% { box-shadow: 0 16px 56px var(--gold-glow); }
}

/* ================================================ */
/* Footer                                            */
/* ================================================ */

.site-footer {
  background: #000;
  padding: 5rem 1.3rem 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-family: var(--font-head);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--dim);
}

.footer-heading {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  width: var(--content);
  margin: 3.2rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.footer-company {
  flex-basis: 100%;
  margin: 0 0 0.4rem;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
}

.footer-legal a {
  color: var(--dim);
  transition: color 200ms ease;
}

.footer-legal a:hover {
  color: var(--text);
}

/* ================================================ */
/* Reveal animation                                  */
/* ================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ================================================ */
/* Responsive                                        */
/* ================================================ */

@media (max-width: 1000px) {
  .chapter-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 3rem;
  }

  .chapter-content {
    padding-top: 0;
    order: 1;
    min-height: 0;
  }

  .chapter-visual {
    position: relative;
    top: 0;
    height: auto;
    order: 2;
    padding: 2rem 0;
  }

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

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

  .layer-card-wide ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0.8rem;
    right: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6, 5, 8, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

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

  .site-nav a {
    color: rgba(247, 245, 240, 0.85);
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

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

  .hc-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --content: calc(100vw - 1.6rem);
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

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

  .layer-card-wide ul {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .wheel-hub-sub {
    display: none;
  }
}

/* ================================================ */
/* Contact modal                                     */
/* ================================================ */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease), visibility 400ms var(--ease);
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.contact-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(28px) scale(0.98);
  transition: transform 450ms var(--ease);
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 300ms var(--ease-spring);
}

.contact-modal-close:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
  transform: rotate(90deg);
}

.contact-modal-close svg {
  width: 16px;
  height: 16px;
}

.contact-modal-title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0.5rem 0 0.8rem;
  max-width: 22ch;
}

.contact-modal-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-field label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  transition: border-color 200ms ease, background 200ms ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-strong);
}

.contact-field textarea {
  resize: vertical;
  min-height: 7rem;
  font-family: var(--font-body);
}

.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5b121' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}

.contact-field select option {
  color: #15130f;
  background-color: #ffffff;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
  border: none;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none !important;
}

.contact-form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.contact-form-note a {
  color: var(--gold-contrast);
  text-decoration: underline;
  text-decoration-color: var(--border);
}

.contact-form-success {
  margin-top: 1.8rem;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--gold-dim);
  text-align: center;
}

.contact-success-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold-contrast);
  margin: 0 0 0.4rem;
}

.contact-form-success p:last-child {
  color: var(--muted);
  margin: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-modal-panel {
    border-radius: var(--radius-md);
  }

}

/* ================================================ */
/* Contact page (standalone)                         */
/* ================================================ */

.contact-page {
  position: relative;
  padding: 10rem 1.3rem 7rem;
  overflow: hidden;
}

.contact-page-grid {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-page-title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.5rem 0 1.2rem;
  max-width: 18ch;
}

.contact-page-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 42ch;
  margin: 0 0 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 0.3rem;
}

.contact-detail-value {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 0;
}

.contact-detail-value a {
  color: var(--gold-contrast);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 200ms ease, color 200ms ease;
}

.contact-detail-value a:hover {
  border-color: var(--gold);
}

.contact-page-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.contact-page-panel .contact-form {
  margin-top: 1.4rem;
}

/* ================================================ */
/* Intune services page                              */
/* ================================================ */

.page-hero {
  position: relative;
  padding: 11rem 1.3rem 6rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
}

.page-hero .chapter-title,
.page-hero .chapter-text {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .chapter-text {
  max-width: 46ch;
}

.page-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.services-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.services-grid {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  perspective: 1200px;
  text-align: left;
}

.process-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.process-steps {
  width: min(760px, 100%);
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.6rem;
  align-items: start;
}

.process-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  color: var(--gold-bright);
}

.process-step-icon svg {
  width: 28px;
  height: 28px;
}

.process-step-number {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-contrast);
  margin: 0 0 0.4rem;
}

.process-step h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 56ch;
}

.process-actions {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.faq-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.faq-list {
  width: min(800px, 100%);
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 240ms ease, background 240ms ease;
}

.faq-item.is-open {
  border-color: var(--gold);
  background: var(--surface-strong);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold-contrast);
  transition: transform 320ms var(--ease-spring), border-color 200ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}

.faq-answer p {
  margin: 0;
  padding: 0 1.6rem 1.5rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 64ch;
}

/* ================================================ */
/* Pricing                                           */
/* ================================================ */

.pricing-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  text-align: left;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
  transition: border-color 240ms ease, background 240ms ease;
}

.pricing-card:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
}

.pricing-card-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-contrast);
  margin: 0;
}

.pricing-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.pricing-card-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0;
}

.pricing-card-price span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.3rem;
}

.pricing-card-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pricing-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-card-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.pricing-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.pricing-card .button {
  align-self: flex-start;
  margin-top: 0.4rem;
}

.pricing-note {
  width: min(640px, 100%);
  margin: 3rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ================================================ */
/* AI Integration — neural network hero              */
/* ================================================ */

.neural-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.neural-hero svg {
  width: 100%;
  height: 100%;
  display: block;
}

.neural-link {
  stroke: var(--gold);
  stroke-opacity: 0.22;
  stroke-width: 1;
  stroke-dasharray: 4 7;
  animation: dashFlow 26s linear infinite;
}

.neural-link-soft {
  stroke-opacity: 0.12;
}

.neural-node {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 5px var(--gold-glow));
  transform-box: fill-box;
  transform-origin: center;
  animation: neuralPulse 4.5s ease-in-out infinite;
}

.neural-core {
  fill: var(--gold);
  filter: drop-shadow(0 0 20px var(--gold-glow));
  transform-box: fill-box;
  transform-origin: center;
  animation: neuralCorePulse 6s ease-in-out infinite;
}

.neural-core-ring {
  fill: none;
  stroke: var(--gold);
  stroke-opacity: 0.3;
  stroke-width: 1.2;
  stroke-dasharray: 2 6;
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelRotate 100s linear infinite;
}

.neural-pulse {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 6px var(--gold-glow));
  animation: neuralTravel 3s linear infinite;
}

@keyframes neuralPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes neuralCorePulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.1); }
}

@keyframes neuralTravel {
  0% { offset-distance: 0%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@media (max-width: 900px) {
  .neural-hero {
    display: none;
  }
}

/* ================================================ */
/* AI Integration — delivery pipeline                */
/* ================================================ */

.pipeline-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.pipeline-track {
  position: relative;
  width: var(--content);
  margin: 4.5rem auto 0;
  display: flex;
  align-items: flex-start;
}

.pipeline-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: 0 0.6rem;
}

.pipeline-stage-badge {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--gold-bright);
}

.pipeline-stage-badge svg {
  width: 24px;
  height: 24px;
}

.pipeline-stage-badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  animation: pipelinePulse 3.4s ease-in-out infinite;
}

.pipeline-stage-number {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-contrast);
  margin: 0;
}

.pipeline-stage h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  margin: 0;
}

.pipeline-stage p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.pipeline-connector {
  flex: 0 0 clamp(20px, 4vw, 56px);
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 29px;
}

.pipeline-connector svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pipeline-connector-line {
  stroke: var(--gold);
  stroke-opacity: 0.3;
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  animation: dashFlow 14s linear infinite;
}

.pipeline-connector-dot {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 5px var(--gold-glow));
  offset-path: path("M0 6 L100 6");
  animation: neuralTravel 3.2s linear infinite;
}

@keyframes pipelinePulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.75; }
}

@media (max-width: 1000px) {
  .pipeline-track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .pipeline-stage {
    padding: 0;
    max-width: 420px;
  }

  .pipeline-connector {
    flex: 0 0 auto;
    width: 56px;
    height: 40px;
    padding-top: 0;
    transform: rotate(90deg);
  }
}

/* ================================================ */
/* AI Integration — shared chip selector             */
/* ================================================ */

.option-chip {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.option-chip:hover {
  border-color: var(--gold);
}

.option-chip.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: #1a1304;
}

/* ================================================ */
/* AI Integration — pain point workflow demo         */
/* ================================================ */

.pain-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.pain-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  width: var(--content);
  margin: 3rem auto 0;
}

.workflow-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: var(--content);
  margin: 4rem auto 0;
  text-align: left;
}

.workflow-column-label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.workflow-column-after .workflow-column-label {
  color: var(--gold-contrast);
}

.workflow-chain {
  display: none;
  flex-direction: column;
}

.workflow-chain.active {
  display: flex;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}

.workflow-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--muted);
}

.workflow-step-after {
  border-color: var(--gold-dim);
  background: var(--surface-strong);
}

.workflow-step-after .workflow-step-number {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-contrast);
}

.workflow-connector {
  display: flex;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0.1rem 0;
}

.workflow-connector svg {
  width: 100%;
  height: 100%;
  display: block;
}

.workflow-connector-line {
  stroke: var(--border);
  stroke-width: 1.5;
}

.workflow-connector-after .workflow-connector-line {
  stroke: var(--gold);
  stroke-opacity: 0.35;
  stroke-width: 1.5;
  stroke-dasharray: 3 5;
  animation: dashFlow 8s linear infinite;
}

.workflow-connector-dot {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 5px var(--gold-glow));
  offset-path: path("M6 0 L6 28");
  animation: neuralTravel 2.6s linear infinite;
}

@media (max-width: 860px) {
  .workflow-compare {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ================================================ */
/* AI Integration — workflow builder                 */
/* ================================================ */

.builder-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.builder-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  width: var(--content);
  margin: 3rem auto 0;
}

.builder-placeholder {
  margin: 3rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.builder-result {
  width: min(820px, 100%);
  margin: 3rem auto 0;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  text-align: center;
}

.builder-result-heading {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  margin: 0 0 2rem;
  color: var(--text);
}

.builder-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: left;
}

.builder-metric {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.builder-metric-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.builder-metric-value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin: 0;
}

.builder-pilot {
  margin: 1.6rem 0 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}

.builder-pilot span {
  color: var(--gold-contrast);
  font-weight: 600;
}

.builder-result .button {
  margin-top: 1.8rem;
}

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

@media (max-width: 480px) {
  .builder-metrics {
    grid-template-columns: 1fr;
  }
}

/* ================================================ */
/* AI Integration — readiness score details          */
/* ================================================ */

.hc-results-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: min(34rem, 100%);
  margin: 0 0 1.8rem;
  text-align: left;
}

.hc-results-details div {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.hc-results-details dt {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 0.3rem;
}

.hc-results-details dd {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

@media (max-width: 560px) {
  .hc-results-details {
    grid-template-columns: 1fr;
  }
}

/* ================================================ */
/* Services overview (About page)                    */
/* ================================================ */

.services-overview {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.service-pillar {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.service-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.service-pillar-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-bright);
  text-decoration: none;
}

.service-pillar-link:hover .arrow {
  transform: translateX(3px);
}

.services-overview-note {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.services-overview-note a {
  color: var(--gold-bright);
  font-weight: 600;
}

@media (max-width: 860px) {
  .services-overview {
    grid-template-columns: 1fr;
  }
}

/* ================================================ */
/* Insights listing                                  */
/* ================================================ */

.insights-section {
  padding: 8rem 1.3rem;
  text-align: center;
}

.insights-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.insights-grid {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-contrast);
}

.insight-card-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--dim);
}

.insight-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.insight-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-bright);
}

.insight-card-link:hover .arrow,
.insight-card:hover .insight-card-link .arrow {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ================================================ */
/* Insights post article                             */
/* ================================================ */

.post-hero .section-label {
  text-align: center;
  display: block;
}

.post-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

.post-meta-date {
  font-size: 0.9rem;
  color: var(--dim);
  text-align: center;
}

.post-article-section {
  padding: 6rem 1.3rem 8rem;
}

.post-article-wrap {
  width: min(720px, 100%);
  margin: 0 auto;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-bright);
  margin: 0 0 2.5rem;
  transition: transform 200ms ease;
}

.post-back-link:hover {
  transform: translateX(-3px);
}

.post-article h2 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  margin: 2.6rem 0 1.1rem;
  color: var(--text);
}

.post-article h2:first-child {
  margin-top: 0;
}

.post-article h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.35;
  margin: 2.1rem 0 0.9rem;
  color: var(--text);
}

.post-article p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.post-article ul,
.post-article ol {
  margin: 0 0 1.4rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-article li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.post-article li::marker {
  color: var(--gold);
  font-weight: 700;
}

.post-article a {
  color: var(--gold-contrast);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-dim);
  text-underline-offset: 0.18em;
  transition: text-decoration-color 200ms ease;
}

.post-article a:hover {
  text-decoration-color: var(--gold);
}

.post-article strong {
  color: var(--text);
  font-weight: 700;
}

.post-article .table-scroll {
  overflow-x: auto;
  margin: 0 0 1.8rem;
}

.post-article table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.92rem;
}

.post-article th,
.post-article td {
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
  text-align: left;
  line-height: 1.5;
  color: var(--muted);
}

.post-article th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
}

.post-article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

@media (prefers-reduced-motion: reduce) {
  .aurora,
  .emblem-scan,
  .emblem-fill,
  .orbit-group,
  .arch-connector,
  .wheel-ring-group,
  .wheel-spoke,
  .wheel-hub,
  .wheel-sweep,
  .wheel-node-badge,
  .node-point,
  .node-links line,
  .hero-scroll-cue span,
  .marquee-track,
  .button-glow,
  .preloader-bar-fill,
  .neural-link,
  .neural-node,
  .neural-core,
  .neural-core-ring,
  .neural-pulse,
  .pipeline-connector-line,
  .pipeline-connector-dot,
  .pipeline-stage-badge::after,
  .workflow-connector-after .workflow-connector-line,
  .workflow-connector-dot {
    animation: none !important;
  }

  .reveal,
  .why-line {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hc-card {
    transition: none !important;
  }

  .faq-answer,
  .faq-icon {
    transition: none !important;
  }

  .hc-card.is-transitioning {
    opacity: 1 !important;
    transform: none !important;
  }

  .contact-modal,
  .contact-modal-panel,
  .contact-modal-close {
    transition: none !important;
  }

  .emblem-mark-path {
    stroke-dashoffset: 0 !important;
  }

  .emblem-shape {
    opacity: 1 !important;
  }

  .word > span {
    transform: none !important;
  }

  .preloader {
    display: none !important;
  }

  body.is-loading {
    overflow: visible !important;
  }

  body.is-loading .hero-pin > * {
    opacity: 1 !important;
  }
}

/* ================================================ */
/* Responsive overrides for sections defined above   */
/* (must come after their base rules to win cascade) */
/* ================================================ */

@media (max-width: 1000px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page-hero {
    padding: 6rem 1.3rem 3rem;
  }

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

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

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

  .process-step-icon {
    width: 52px;
    height: 52px;
  }

  .faq-question {
    padding: 1.1rem 1.3rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.3rem 1.3rem;
  }

  .contact-page {
    padding: 6rem 1.3rem 3rem;
  }

  .contact-page-panel {
    border-radius: var(--radius-md);
  }
}
