:root {
  --focus-orange: #f53900;
  --focus-orange-dark: #c92f00;
  --deep-navy: #06101f;
  --deep-navy-2: #0a1728;
  --ink: #111927;
  --muted: #596579;
  --background: #f6f8fb;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --surface-soft: #edf1f5;
  --line: rgba(17, 25, 39, 0.14);
  --line-strong: rgba(17, 25, 39, 0.24);
  --header-bg: rgba(255, 255, 255, 0.78);
  --header-border: rgba(17, 25, 39, 0.12);
  --shadow-soft: 0 24px 80px rgba(15, 27, 44, 0.1);
  --shadow-card: 0 16px 46px rgba(15, 27, 44, 0.1);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --header-height: 72px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #f4f7fb;
  --muted: #a9b3c1;
  --background: #07101d;
  --surface: #0c1726;
  --surface-raised: #111e2e;
  --surface-soft: #101c2b;
  --line: rgba(230, 238, 248, 0.13);
  --line-strong: rgba(230, 238, 248, 0.24);
  --header-bg: rgba(6, 16, 31, 0.78);
  --header-border: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 26px 90px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 18px 52px rgba(0, 0, 0, 0.3);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --ink: #f4f7fb;
    --muted: #a9b3c1;
    --background: #07101d;
    --surface: #0c1726;
    --surface-raised: #111e2e;
    --surface-soft: #101c2b;
    --line: rgba(230, 238, 248, 0.13);
    --line-strong: rgba(230, 238, 248, 0.24);
    --header-bg: rgba(6, 16, 31, 0.78);
    --header-border: rgba(255, 255, 255, 0.14);
    --shadow-soft: 0 26px 90px rgba(0, 0, 0, 0.32);
    --shadow-card: 0 18px 52px rgba(0, 0, 0, 0.3);
    color-scheme: dark;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h3 {
  letter-spacing: -0.025em;
  line-height: 1.15;
}

::selection {
  background: var(--focus-orange);
  color: #ffffff;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111927;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  position: relative;
  z-index: 1;
  padding-block: clamp(92px, 12vw, 176px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--focus-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: #ff6c3c;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--focus-orange);
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(245, 57, 0, 0.24);
}

.button--primary:hover {
  background: var(--focus-orange-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.particle-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
}

/* Floating navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
}

.admin-bar .site-header {
  top: 50px;
}

.site-header__bar {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--header-border);
  border-radius: 999px;
  background: var(--header-bg);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  transition: min-height 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-compact .site-header__bar {
  min-height: 62px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.site-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-brand__mark {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 0 5px rgba(245, 57, 0, 0.12);
}

.site-brand__mark::before,
.site-brand__mark span {
  position: absolute;
  width: 4px;
  height: 12px;
  border-radius: 4px;
  background: #ffffff;
  content: "";
}

.site-brand__mark::before {
  transform: translate(-3px, -1px) rotate(24deg);
}

.site-brand__mark span {
  transform: translate(4px, 2px) rotate(24deg);
}

.site-brand__word {
  font-size: 1rem;
}

.site-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-brand .custom-logo {
  width: auto;
  max-width: 180px;
  height: 34px;
}

.site-nav {
  justify-self: center;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 680;
  text-decoration: none;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-demo {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 17px;
  border-radius: 999px;
  background: var(--focus-orange);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
}

.theme-toggle,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.theme-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.js .theme-toggle {
  display: grid;
}

.theme-toggle:hover {
  background: var(--surface-soft);
}

.theme-toggle__dot {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(245, 57, 0, 0);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

html[data-theme="dark"] .theme-toggle__dot {
  border-color: #ff7045;
  background: var(--focus-orange);
  box-shadow: 0 0 0 5px rgba(245, 57, 0, 0.15), 0 0 16px rgba(245, 57, 0, 0.42);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.menu-toggle > span:not(.screen-reader-text) {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle > span:nth-of-type(2) {
  transform: translateY(-3px);
}

.menu-toggle > span:nth-of-type(3) {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #030711;
  color: #ffffff;
  isolation: isolate;
}

.hero__media,
.hero__fallback,
.hero__video,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__fallback {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 70%, rgba(245, 57, 0, 0.16), transparent 12%),
    radial-gradient(circle at 50% 18%, rgba(94, 137, 187, 0.2), transparent 34%),
    linear-gradient(180deg, #070d17 0%, #030711 58%, #090b11 100%);
}

.hero__horizon {
  position: absolute;
  top: 7%;
  right: -10%;
  left: -10%;
  height: 18%;
  background: linear-gradient(180deg, rgba(137, 158, 184, 0.08), rgba(255, 255, 255, 0.16), rgba(9, 16, 27, 0));
  filter: blur(12px);
}

.hero__beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(184, 208, 234, 0.16), rgba(84, 110, 142, 0.06) 70%, rgba(245, 57, 0, 0.06));
  clip-path: polygon(1% 0, 99% 0, 58% 100%, 42% 100%);
  opacity: 0.7;
}

.hero__grid {
  position: absolute;
  right: -8%;
  bottom: -42%;
  left: -8%;
  height: 78%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, transparent, #000 26%, transparent 82%);
  transform: perspective(620px) rotateX(62deg);
  transform-origin: 50% 0;
}

.hero__video {
  object-fit: cover;
  opacity: 0.58;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.91) 0%, rgba(3, 7, 17, 0.56) 58%, rgba(3, 7, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 7, 17, 0.32) 0%, rgba(3, 7, 17, 0.08) 45%, rgba(3, 7, 17, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: clamp(96px, 12vh, 142px);
}

.hero__copy {
  width: min(790px, 68vw);
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6.7vw, 7rem);
  font-weight: 630;
  line-height: 0.91;
}

.hero__heritage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.03em;
}

.hero__heritage::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 0 4px rgba(245, 57, 0, 0.12);
  content: "";
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero__signal {
  position: absolute;
  z-index: 2;
  right: clamp(34px, 8vw, 132px);
  bottom: 10%;
  width: clamp(190px, 22vw, 330px);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero__signal::before {
  position: absolute;
  right: -44%;
  bottom: -30%;
  left: -44%;
  height: 118%;
  background: radial-gradient(ellipse at 50% 75%, rgba(245, 57, 0, 0.2), transparent 58%);
  content: "";
  filter: blur(18px);
}

.hero-core-mini {
  position: absolute;
  inset: 0;
  transform: perspective(720px) rotateX(58deg) rotateZ(-8deg);
  transform-style: preserve-3d;
}

.hero-core-mini__ring {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.018), 0 0 58px rgba(245, 57, 0, 0.1);
}

.hero-core-mini__center {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24%;
  background: linear-gradient(145deg, rgba(245, 57, 0, 0.85), rgba(132, 24, 0, 0.8));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  transform: translateZ(44px);
}

.hero-core-mini__center i {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.62);
}

.hero-core-mini__tile {
  position: absolute;
  width: 23%;
  height: 17%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(18, 32, 51, 0.84);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.hero-core-mini__tile::after {
  position: absolute;
  right: 12%;
  bottom: 17%;
  left: 12%;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
  box-shadow: 0 -9px 0 rgba(255, 255, 255, 0.12);
}

.hero-core-mini__tile--one {
  top: 5%;
  left: 15%;
  transform: translateZ(20px) rotate(-6deg);
}

.hero-core-mini__tile--two {
  top: 28%;
  right: 2%;
  transform: translateZ(34px) rotate(8deg);
}

.hero-core-mini__tile--three {
  bottom: 9%;
  left: 10%;
  transform: translateZ(26px) rotate(4deg);
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 28px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero__scroll i::after {
  position: absolute;
  inset: 0;
  background: var(--focus-orange);
  content: "";
  transform: translateY(-100%);
  animation: focus-scroll-pulse 2s ease-in-out infinite;
}

@keyframes focus-scroll-pulse {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* Purpose */
.purpose {
  background:
    radial-gradient(circle at 12% 30%, rgba(245, 57, 0, 0.06), transparent 26%),
    var(--background);
}

.purpose__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.purpose__intro {
  position: sticky;
  top: 24vh;
}

.purpose__intro h2 {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 620;
}

.purpose__intro > p:last-child {
  max-width: 510px;
  color: var(--muted);
  font-size: 1.05rem;
}

.purpose__journey {
  position: relative;
  min-height: 1160px;
}

.purpose-path {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 320px;
  height: 100%;
  overflow: visible;
  transform: translateX(-50%);
}

.purpose-path__base,
.purpose-path__progress {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.purpose-path__base {
  stroke: var(--line-strong);
  stroke-width: 1.5;
  stroke-dasharray: 5 9;
}

.purpose-path__progress {
  stroke: var(--focus-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
  filter: drop-shadow(0 0 7px rgba(245, 57, 0, 0.3));
}

.purpose-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 150px;
  padding: 56px 0 0;
  margin: 0;
  list-style: none;
}

.purpose-step {
  display: grid;
  width: min(390px, 68%);
  min-height: 168px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  box-shadow: var(--shadow-card);
  transition: border-color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.purpose-step:nth-child(even) {
  justify-self: end;
}

.motion-ready .purpose-step {
  opacity: 0.38;
  transform: translateY(18px);
}

.motion-ready .purpose-step.is-active {
  border-color: rgba(245, 57, 0, 0.52);
  opacity: 1;
  transform: translateY(0);
}

.purpose-step__number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--focus-orange);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.purpose-step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.16rem, 1.7vw, 1.5rem);
}

.purpose-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Scroll statement */
.statement {
  min-height: 150vh;
  padding-block: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 80% 35%, rgba(245, 57, 0, 0.12), transparent 28%),
    var(--background);
  color: var(--ink);
}

.statement .shell {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
}

.statement__visual {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(3rem, 7.3vw, 7.4rem);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.statement__word {
  display: inline;
  color: #ffffff;
  transition: color 320ms ease, text-shadow 320ms ease;
}

.statement__word::after {
  content: " ";
}

.motion-ready .statement__word {
  color: rgba(255, 255, 255, 0.22);
}

.motion-ready .statement__word.is-filled {
  color: #ffffff;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.06);
}

.motion-ready .statement__word:last-child.is-filled {
  color: #ff7045;
}

/* Core + module composition */
.modules {
  overflow: clip;
  background:
    radial-gradient(circle at 50% 54%, rgba(245, 57, 0, 0.09), transparent 24%),
    var(--background);
}

.modules__header,
.integrations__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.modules__header h2,
.integrations__header h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 620;
}

.modules__header > p,
.integrations__header > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.module-stage {
  position: relative;
  min-height: 930px;
  margin-top: clamp(72px, 9vw, 120px);
  isolation: isolate;
}

.module-stage::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 870px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 57, 0, 0.07), transparent 63%);
  content: "";
  transform: translate(-50%, -50%);
}

.module-stage__halo {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 540px;
  height: 540px;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

.module-stage__halo::before,
.module-stage__halo::after {
  position: absolute;
  inset: 12%;
  border: 1px dashed var(--line);
  border-radius: inherit;
  content: "";
}

.module-stage__halo::after {
  inset: 31%;
  border-style: solid;
  border-color: rgba(245, 57, 0, 0.22);
  box-shadow: 0 0 70px rgba(245, 57, 0, 0.1);
}

.motion-ready .module-stage__halo {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready .module-stage.is-visible .module-stage__halo {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1);
}

.core-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 310px;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), transparent 48%),
    var(--surface-raised);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 57, 0, 0.08) inset;
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.core-card__pulse {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.core-card__pulse::before,
.core-card__pulse::after {
  position: absolute;
  border: 1px dashed rgba(245, 57, 0, 0.38);
  border-radius: 50%;
  content: "";
}

.core-card__pulse::before {
  inset: -12px;
}

.core-card__pulse::after {
  inset: -25px;
  opacity: 0.4;
}

.core-card__pulse span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 26px rgba(245, 57, 0, 0.76);
}

.core-card__kicker {
  margin-bottom: 0;
  color: #ff7045;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.core-card h3 {
  margin-bottom: 22px;
  font-size: 3.35rem;
  font-weight: 620;
  letter-spacing: -0.06em;
}

.core-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  list-style: none;
}

.core-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.core-card li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--focus-orange);
  content: "";
}

.core-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.core-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67d39a;
  box-shadow: 0 0 0 4px rgba(103, 211, 154, 0.12);
}

.module-card {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 300px;
  min-height: 142px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-card);
  transition: border-color 220ms ease, box-shadow 220ms ease, opacity 560ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.module-card:hover {
  border-color: rgba(245, 57, 0, 0.42);
  box-shadow: 0 24px 64px rgba(15, 27, 44, 0.15);
}

.module-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.module-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.48;
}

.module-card__arrow {
  color: var(--muted);
  font-size: 0.9rem;
}

.module-card--01 { top: 0; left: 5%; }
.module-card--02 { top: 0; right: 5%; }
.module-card--03 { top: 30%; left: 0; }
.module-card--04 { top: 30%; right: 0; }
.module-card--05 { bottom: 30%; left: 0; }
.module-card--06 { right: 0; bottom: 30%; }
.module-card--07 { bottom: 0; left: 5%; }
.module-card--08 { right: 5%; bottom: 0; }

.motion-ready .module-card {
  opacity: 0;
}

.motion-ready .module-card:nth-child(odd) {
  transform: translateX(36px) scale(0.95);
}

.motion-ready .module-card:nth-child(even) {
  transform: translateX(-36px) scale(0.95);
}

.motion-ready .module-stage.is-visible .module-card {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.motion-ready .module-stage.is-visible .module-card:nth-child(2) { transition-delay: 70ms; }
.motion-ready .module-stage.is-visible .module-card:nth-child(3) { transition-delay: 120ms; }
.motion-ready .module-stage.is-visible .module-card:nth-child(4) { transition-delay: 170ms; }
.motion-ready .module-stage.is-visible .module-card:nth-child(5) { transition-delay: 220ms; }
.motion-ready .module-stage.is-visible .module-card:nth-child(6) { transition-delay: 270ms; }
.motion-ready .module-stage.is-visible .module-card:nth-child(7) { transition-delay: 320ms; }
.motion-ready .module-stage.is-visible .module-card:nth-child(8) { transition-delay: 370ms; }

.module-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--focus-orange);
}

.module-icon i,
.module-icon b,
.module-icon::before,
.module-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.module-icon--hardhat i {
  top: 12px;
  left: 11px;
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 3px 3px;
}

.module-icon--hardhat b {
  top: 27px;
  left: 8px;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.module-icon--risk i {
  inset: 10px;
  border: 1px solid currentColor;
  background-image:
    linear-gradient(currentColor 1px, transparent 1px),
    linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 50% 50%;
  opacity: 0.85;
}

.module-icon--risk b {
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
}

.module-icon--ai i,
.module-icon--ai b,
.module-icon--ai::after {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.module-icon--ai i { top: 10px; left: 18px; }
.module-icon--ai b { right: 9px; bottom: 11px; }
.module-icon--ai::after { bottom: 9px; left: 9px; }

.module-icon--ai::before {
  top: 18px;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  box-shadow: 2px 6px 0 currentColor;
  transform: rotate(28deg);
  transform-origin: center;
}

.module-icon--machine i {
  inset: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-bottom-color: transparent;
}

.module-icon--machine b {
  top: 22px;
  left: 21px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-48deg);
  transform-origin: left;
}

.module-icon--incident i {
  top: 21px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: currentColor;
}

.module-icon--incident b {
  top: 14px;
  left: 16px;
  width: 12px;
  height: 15px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: skewX(-24deg);
}

.module-icon--learning i {
  top: 9px;
  left: 12px;
  width: 20px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.module-icon--learning b {
  top: 16px;
  left: 17px;
  width: 10px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.module-icon--permit i {
  top: 8px;
  left: 11px;
  width: 22px;
  height: 27px;
  border: 1px dashed currentColor;
  border-radius: 4px;
}

.module-icon--permit b {
  top: 14px;
  left: 17px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.module-icon--iot i,
.module-icon--iot b,
.module-icon--iot::before {
  border: 1px solid currentColor;
  border-radius: 50%;
}

.module-icon--iot i { inset: 9px; }
.module-icon--iot b { inset: 14px; }
.module-icon--iot::before { inset: 19px; background: currentColor; }

/* See, interpret, act */
.workflow {
  background: var(--surface-soft);
}

.section-heading--center {
  max-width: 880px;
  margin: 0 auto clamp(60px, 8vw, 92px);
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.6vw, 6.6rem);
  font-weight: 620;
}

.workflow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-card {
  position: relative;
  min-height: 500px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-card);
}

.workflow-card__visual {
  position: relative;
  height: 254px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 32px 32px;
}

.workflow-card__number {
  margin-bottom: 10px;
  color: var(--focus-orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.workflow-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.workflow-card > p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow-card__visual--scan span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.workflow-card__visual--scan span::before,
.workflow-card__visual--scan span::after {
  position: absolute;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  content: "";
}

.workflow-card__visual--scan span::before { inset: -28px; }
.workflow-card__visual--scan span::after { inset: 28px; background: rgba(245, 57, 0, 0.13); }

.workflow-card__visual--scan i,
.workflow-card__visual--scan b {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 0 6px rgba(245, 57, 0, 0.1);
}

.workflow-card__visual--scan i { top: 25%; left: 24%; }
.workflow-card__visual--scan b { right: 21%; bottom: 28%; }

.workflow-card__visual--interpret span {
  position: absolute;
  top: 45px;
  right: 42px;
  bottom: 45px;
  left: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-raised);
  transform: rotate(-4deg);
  box-shadow: 12px 12px 0 var(--surface-soft), 12px 12px 0 1px var(--line);
}

.workflow-card__visual--interpret span::before {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  height: 7px;
  border-radius: 8px;
  background: var(--focus-orange);
  content: "";
  box-shadow: 0 24px 0 var(--line-strong), 0 48px 0 var(--line-strong), 0 72px 0 var(--line);
}

.workflow-card__visual--interpret i {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-raised);
}

.workflow-card__visual--act span {
  position: absolute;
  top: 36px;
  right: 36px;
  bottom: 36px;
  left: 36px;
  border-left: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.workflow-card__visual--act span::before {
  position: absolute;
  right: 6%;
  bottom: 16%;
  left: 8%;
  height: 3px;
  background: var(--focus-orange);
  clip-path: polygon(0 74%, 18% 54%, 34% 68%, 52% 28%, 68% 40%, 100% 0, 100% 100%, 0 100%);
  content: "";
  box-shadow: 0 0 18px rgba(245, 57, 0, 0.45);
  transform: scaleY(25);
  transform-origin: bottom;
}

.workflow-card__visual--act i,
.workflow-card__visual--act b {
  position: absolute;
  right: 24%;
  width: 48px;
  height: 20px;
  border-radius: 999px;
  background: var(--surface-raised);
  box-shadow: 0 0 0 1px var(--line);
}

.workflow-card__visual--act i { top: 22%; }
.workflow-card__visual--act b { top: 38%; width: 72px; }

/* AISG heritage */
.heritage {
  background: var(--background);
}

.heritage__card {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
  padding: clamp(38px, 6vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 13% 80%, rgba(245, 57, 0, 0.16), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(77, 107, 145, 0.18), transparent 32%),
    var(--surface-raised);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.heritage__marks {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.heritage__marks::before,
.heritage__marks::after {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.heritage__marks::before { width: 340px; height: 340px; }
.heritage__marks::after { width: 230px; height: 230px; border-color: rgba(245, 57, 0, 0.28); }

.heritage__aisg,
.heritage__focus {
  position: absolute;
  z-index: 2;
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 16px 26px;
  border-radius: 18px;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.heritage__aisg {
  top: 75px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.heritage__focus {
  right: 0;
  bottom: 70px;
  background: var(--focus-orange);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(245, 57, 0, 0.25);
}

.heritage__bridge {
  position: absolute;
  width: 140px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 50%, transparent 50%);
  background-size: 10px 1px;
  transform: rotate(34deg);
}

.heritage__bridge::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 20px rgba(245, 57, 0, 0.8);
  content: "";
}

.heritage__copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 620;
}

.heritage__copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.heritage__note {
  display: grid;
  gap: 5px;
  margin-top: 32px;
  padding: 18px 20px;
  border-left: 2px solid var(--focus-orange);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.heritage__note strong {
  color: #ffffff;
}

/* Trust */
.trust {
  background: var(--surface-soft);
}

.trust__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(62px, 9vw, 140px);
  align-items: start;
}

.trust__intro {
  position: sticky;
  top: 160px;
}

.trust__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  font-weight: 620;
}

.trust__intro > p:last-child {
  color: var(--muted);
}

.trust__list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.trust-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.trust-item__index {
  padding-top: 2px;
  color: var(--focus-orange);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.trust-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.trust-item p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
}

.status-pill--progress {
  border-color: rgba(245, 57, 0, 0.3);
  background: rgba(245, 57, 0, 0.08);
  color: var(--focus-orange);
}

.status-pill--planned {
  border-color: rgba(56, 139, 253, 0.28);
  background: rgba(56, 139, 253, 0.08);
  color: #3176cc;
}

.status-pill--research {
  border-color: rgba(164, 112, 255, 0.28);
  background: rgba(164, 112, 255, 0.08);
  color: #8554d9;
}

/* Integrations */
.integrations {
  background: var(--background);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(60px, 8vw, 100px);
}

.integration-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-card);
}

.integration-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 64px;
}

.integration-card__node {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.integration-card__node::before,
.integration-card__node::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--focus-orange);
  content: "";
}

.integration-card__node::before { top: 7px; left: 6px; }
.integration-card__node::after { right: 6px; bottom: 7px; }

.integration-card__node i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 0 6px rgba(245, 57, 0, 0.1);
}

.integration-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.integration-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Closing CTA */
.final-cta {
  padding-top: 40px;
  background: var(--background);
}

.final-cta__card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  color: var(--ink);
  isolation: isolate;
}

.final-cta__card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  content: "";
}

.final-cta__glow {
  position: absolute;
  z-index: -1;
  top: -52%;
  right: -8%;
  width: 680px;
  height: 680px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.018), 0 0 180px rgba(245, 57, 0, 0.13);
}

.final-cta__glow::after {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 90px rgba(245, 57, 0, 0.64);
  content: "";
  opacity: 0.62;
}

.final-cta__content {
  display: flex;
  min-height: 570px;
  width: min(820px, 72%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 7vw, 90px);
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 620;
}

.final-cta__content > p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.final-cta .button-row {
  margin-top: 18px;
}

.final-cta__app {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.final-cta__app strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer and generic WordPress content */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 82px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--background);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(180px, 0.7fr) minmax(260px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.site-brand--footer {
  margin-bottom: 20px;
}

.site-footer__grid > div > p {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer__contact {
  display: grid;
  gap: 9px;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.6;
}

.site-footer__contact strong {
  color: var(--heading);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__contact a:hover {
  color: var(--focus-orange);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer__bottom p {
  margin: 0;
}

.content-page {
  min-height: 75vh;
  padding-top: 180px;
  background: var(--background);
}

.content-page__inner {
  max-width: 880px;
}

.content-page__header {
  margin-bottom: 56px;
}

.content-page__header h1,
.content-page--center h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.content-page--center {
  display: grid;
  text-align: center;
}

.content-page--center .eyebrow {
  justify-content: center;
}

.entry-content > * + * {
  margin-top: 1.5em;
}

.entry-content a,
.post-card a {
  color: var(--focus-orange);
}

.entry-content img {
  height: auto;
  border-radius: 18px;
}

.post-list {
  display: grid;
  gap: 20px;
}

.post-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-raised);
}

.post-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.post-card__meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
}

.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.article-detail__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.article-detail__navigation span:last-child {
  text-align: right;
}

.article-detail__navigation a {
  color: var(--focus-orange);
  font-weight: 700;
  text-decoration: none;
}

/* Responsive composition */
@media (max-width: 1080px) {
  .site-header__bar {
    gap: 14px;
  }

  .site-nav__list,
  .site-nav .menu {
    gap: 16px;
  }

  .purpose__layout,
  .trust__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    gap: 54px;
  }

  .module-card {
    width: 270px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .js .menu-toggle {
    display: grid;
    order: 2;
  }

  .site-header__bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 28px;
  }

  .site-brand {
    margin-right: auto;
  }

  .site-header__actions {
    order: 3;
  }

  .site-nav {
    order: 4;
    width: 100%;
    padding: 6px 8px 10px;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: block;
  }

  .site-nav__list,
  .site-nav .menu {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

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

  .hero__copy {
    width: min(700px, 82vw);
  }

  .hero__signal {
    right: -44px;
    bottom: 14%;
    opacity: 0.72;
  }

  .purpose__layout,
  .trust__layout {
    grid-template-columns: 1fr;
  }

  .purpose__intro,
  .trust__intro {
    position: relative;
    top: auto;
  }

  .purpose__journey {
    min-height: auto;
  }

  .purpose-path {
    left: 60px;
    width: 180px;
  }

  .purpose-steps {
    gap: 86px;
    padding-left: 80px;
  }

  .purpose-step,
  .purpose-step:nth-child(even) {
    width: min(500px, 86%);
    justify-self: start;
  }

  .modules__header,
  .integrations__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .module-stage {
    display: grid;
    min-height: auto;
    gap: 24px;
  }

  .module-stage::before,
  .module-stage__halo {
    display: none;
  }

  .core-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 330px;
    transform: none;
  }

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

  .module-card,
  .module-card--01,
  .module-card--02,
  .module-card--03,
  .module-card--04,
  .module-card--05,
  .module-card--06,
  .module-card--07,
  .module-card--08 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 164px;
  }

  .motion-ready .module-card,
  .motion-ready .module-card:nth-child(odd),
  .motion-ready .module-card:nth-child(even),
  .motion-ready .module-stage.is-visible .module-card {
    transform: translateY(16px);
  }

  .motion-ready .module-stage.is-visible .module-card {
    transform: translateY(0);
  }

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

  .workflow-card {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    column-gap: 28px;
    align-items: center;
  }

  .workflow-card__visual {
    grid-row: 1 / span 4;
    height: 300px;
    margin-bottom: 0;
  }

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

  .heritage__marks {
    min-height: 330px;
  }

  .final-cta__content {
    width: 82%;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 26px;
  }

  html {
    scroll-padding-top: 98px;
  }

  .section-pad {
    padding-block: 86px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .admin-bar .site-header {
    top: 56px;
  }

  .site-header__bar {
    min-height: 64px;
    gap: 6px;
    padding: 8px 8px 8px 14px;
    border-radius: 24px;
  }

  .site-brand__word {
    font-size: 0.92rem;
  }

  .site-brand__mark {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .header-demo {
    min-height: 40px;
    padding-inline: 13px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero__content {
    padding-top: 132px;
    padding-bottom: 92px;
  }

  .hero__copy {
    width: 100%;
  }

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

  .hero__lead {
    max-width: 94%;
    font-size: 1rem;
  }

  .hero__signal {
    right: -76px;
    bottom: 21%;
    width: 230px;
    opacity: 0.42;
  }

  .hero__scroll {
    right: 6px;
    bottom: 18px;
  }

  .purpose__intro h2,
  .trust__intro h2,
  .heritage__copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.3rem);
  }

  .purpose-path {
    left: 14px;
    width: 120px;
  }

  .purpose-steps {
    gap: 58px;
    padding-top: 40px;
    padding-left: 32px;
  }

  .purpose-step,
  .purpose-step:nth-child(even) {
    width: 100%;
    padding: 20px;
  }

  .statement {
    min-height: 132vh;
  }

  .statement__visual {
    font-size: clamp(2.75rem, 13vw, 4.8rem);
    line-height: 1.02;
  }

  .modules__header h2,
  .integrations__header h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.75rem, 12.8vw, 4.7rem);
  }

  .module-stage {
    margin-top: 58px;
  }

  .module-stage__orbit,
  .integration-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-card {
    display: block;
    padding: 18px;
  }

  .workflow-card__visual {
    height: 240px;
    margin-bottom: 26px;
  }

  .heritage__card {
    padding: 24px;
  }

  .heritage__marks {
    min-height: 270px;
  }

  .heritage__marks::before { width: 270px; height: 270px; }
  .heritage__marks::after { width: 180px; height: 180px; }

  .heritage__aisg {
    top: 36px;
    left: 0;
  }

  .heritage__focus {
    right: 0;
    bottom: 42px;
  }

  .trust-item {
    grid-template-columns: 34px 1fr;
  }

  .trust-item .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .integration-card__top {
    margin-bottom: 44px;
  }

  .final-cta__card {
    min-height: 620px;
  }

  .final-cta__content {
    min-height: 620px;
    width: 100%;
    justify-content: flex-end;
    padding: 32px 24px 52px;
  }

  .final-cta__glow {
    top: -44%;
    right: -55%;
  }

  .site-footer__grid,
  .site-footer__bottom {
    display: grid;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .site-footer__grid > * {
    min-width: 0;
  }

  .site-footer__contact {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer__bottom {
    margin-top: 44px;
  }

  .content-page {
    padding-top: 150px;
  }
}

@media (max-width: 420px) {
  .site-brand__word {
    display: none;
  }

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

  .final-cta__app {
    width: 100%;
    text-align: center;
  }
}

@media (max-height: 700px) and (min-width: 681px) {
  .hero__content {
    align-items: flex-start;
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vh, 5rem);
  }

  .hero__scroll {
    display: none;
  }
}

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

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

  .hero__video,
  .particle-field {
    display: none;
  }

  .statement {
    min-height: auto;
  }

  .statement .shell {
    position: relative;
    min-height: auto;
    padding-block: 120px;
  }

  .motion-ready .statement__word,
  .motion-ready .statement__word.is-filled {
    color: #ffffff;
  }

  .motion-ready .purpose-step,
  .motion-ready .module-card,
  .motion-ready .module-card:nth-child(odd),
  .motion-ready .module-card:nth-child(even),
  .motion-ready .module-stage__halo {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .site-header__bar,
  .module-card,
  .workflow-card,
  .integration-card,
  .heritage__card,
  .final-cta__card {
    border: 1px solid CanvasText;
  }

  .theme-toggle__dot,
  .site-brand__mark,
  .core-card__pulse span {
    forced-color-adjust: none;
  }
}

/* --------------------------------------------------------------------------
   Visual direction revision: minimal hero, continuous story and package flow
   -------------------------------------------------------------------------- */

:root {
  --statement-dim: #778395;
  --stage-grid: rgba(17, 25, 39, 0.065);
}

html[data-theme="dark"] {
  --statement-dim: #5f6d80;
  --stage-grid: rgba(230, 238, 248, 0.06);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --statement-dim: #5f6d80;
    --stage-grid: rgba(230, 238, 248, 0.06);
  }
}

/* Taller AISG-proportioned floating navigation. */
.site-header {
  top: 14px;
  width: min(1224px, calc(100% - 32px));
}

.site-header__bar {
  min-height: 84px;
  gap: 30px;
  padding: 14px 18px 14px 24px;
  border-radius: 26px;
  background: var(--header-bg);
  box-shadow: 0 16px 58px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
}

.site-header.is-compact .site-header__bar {
  min-height: 70px;
  padding-block: 8px;
}

.site-brand {
  gap: 12px;
}

.site-brand__mark {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.site-brand__word {
  font-size: 1.16rem;
}

.site-brand .custom-logo {
  height: 40px;
  max-width: 210px;
}

.site-nav__list,
.site-nav .menu {
  gap: clamp(20px, 2.7vw, 34px);
}

.site-nav a {
  font-size: 0.9rem;
}

.header-demo {
  min-height: 48px;
  padding: 11px 22px;
  border-radius: 16px;
  font-size: 0.88rem;
}

.theme-toggle {
  width: 48px;
  height: 48px;
}

/* Minimal lower-center hero. */
.hero__content {
  justify-content: center;
  padding-top: 150px;
  padding-bottom: clamp(76px, 9vh, 112px);
}

.hero__copy {
  width: min(800px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero__copy .eyebrow {
  justify-content: center;
  margin-bottom: 15px;
}

.hero h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 4.85vw, 5rem);
  line-height: 0.96;
}

.hero__lead {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 25px;
  margin-left: auto;
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
}

.hero .button-row {
  justify-content: center;
}

.hero__text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 730;
  text-decoration: none;
}

.hero__text-link span {
  color: #ff7045;
  transition: transform 180ms ease;
}

.hero__text-link:hover span {
  transform: translate(2px, -2px);
}

.hero__former {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  margin: 19px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 7, 17, 0.25);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero__former::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--focus-orange);
  content: "";
}

.hero__video-control {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 24px;
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 7, 17, 0.48);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 720;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.js .hero__video-control {
  display: inline-flex;
}

.hero__video-control:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(3, 7, 17, 0.68);
}

.hero__video-control-icon {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero__video-control-icon i {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ffffff;
}

.hero__video-control-icon b {
  display: none;
  width: 7px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.hero__video-control[aria-pressed="true"] .hero__video-control-icon i {
  display: none;
}

.hero__video-control[aria-pressed="true"] .hero__video-control-icon b {
  display: block;
}

html[data-theme="light"] .hero__veil {
  background:
    linear-gradient(180deg, rgba(3, 7, 17, 0.22) 0%, rgba(3, 7, 17, 0.04) 42%, rgba(3, 7, 17, 0.76) 100%),
    linear-gradient(90deg, rgba(3, 7, 17, 0.28), rgba(3, 7, 17, 0.12), rgba(3, 7, 17, 0.28));
}

/* One continuous line that enters, branches and leaves the purpose story. */
.purpose {
  overflow: hidden;
  isolation: isolate;
}

.purpose__layout,
.purpose__handoff {
  position: relative;
  z-index: 2;
}

.purpose__journey {
  min-height: 1320px;
}

.purpose-flow {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.purpose-flow__base,
.purpose-flow__progress,
.purpose-flow__branch {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.purpose-flow__base {
  stroke: var(--line-strong);
  stroke-width: 1.4;
  stroke-dasharray: 0.006 0.009;
}

.purpose-flow__progress {
  stroke: var(--focus-orange);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 8 11;
  filter: drop-shadow(0 0 7px rgba(245, 57, 0, 0.28));
}

.purpose-flow__branch {
  stroke: var(--line-strong);
  stroke-width: 1;
  stroke-dasharray: 0.005 0.008;
}

.purpose-step {
  position: relative;
}

.purpose-step::before {
  position: absolute;
  top: 50%;
  width: 70px;
  border-top: 1px dashed var(--line-strong);
  content: "";
}

.purpose-step:nth-child(odd)::before {
  right: 100%;
}

.purpose-step:nth-child(even)::before {
  left: 100%;
}

.motion-ready .purpose-step.is-active::before {
  border-color: var(--focus-orange);
}

.purpose__handoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -80px;
  margin-bottom: -120px;
  color: var(--muted);
}

.purpose__handoff span {
  width: 1px;
  height: 150px;
  background: linear-gradient(var(--focus-orange), var(--line-strong));
}

.purpose__handoff p {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-raised);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* The statement is light in light mode and fills with actual brand color. */
.statement {
  position: relative;
  background:
    radial-gradient(circle at 80% 35%, rgba(245, 57, 0, 0.1), transparent 28%),
    var(--background);
  color: var(--ink);
}

.statement::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 92px;
  background: linear-gradient(var(--line-strong), transparent);
  content: "";
}

.statement__word {
  position: relative;
  display: inline-block;
  color: var(--statement-dim);
  text-shadow: none;
}

.statement__word::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--focus-orange) 0%, #ff845d 42%, var(--ink) 88%);
  background-clip: text;
  color: transparent;
  content: attr(data-word);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 0 0 0);
  transition: clip-path 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms ease;
}

.motion-ready .statement__word,
.motion-ready .statement__word.is-filled,
.motion-ready .statement__word:last-child.is-filled {
  color: var(--statement-dim);
  text-shadow: none;
}

.motion-ready .statement__word::before {
  clip-path: inset(0 100% 0 0);
}

.motion-ready .statement__word.is-filled::before {
  clip-path: inset(0 0 0 0);
  filter: drop-shadow(0 0 16px rgba(245, 57, 0, 0.12));
}

/* Previously fixed-dark cards now follow the selected surface theme. */
.heritage__card,
.final-cta__card {
  border-color: var(--line);
  background:
    radial-gradient(circle at 13% 80%, rgba(245, 57, 0, 0.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(77, 107, 145, 0.1), transparent 34%),
    var(--surface-raised);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.heritage__marks::before,
.heritage__marks::after {
  border-color: var(--line-strong);
}

.heritage__marks::after {
  border-color: rgba(245, 57, 0, 0.26);
}

.heritage__aisg {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.heritage__bridge {
  background-image: linear-gradient(90deg, var(--line-strong) 50%, transparent 50%);
}

.heritage__copy > p,
.heritage__note,
.final-cta__content > p,
.final-cta__app {
  color: var(--muted);
}

.heritage__note {
  background: var(--surface-soft);
}

.heritage__note strong,
.final-cta__app strong {
  color: var(--ink);
}

.final-cta__card::before {
  background:
    linear-gradient(var(--stage-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--stage-grid) 1px, transparent 1px);
  background-size: 56px 56px;
}

.final-cta__glow {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 100px rgba(245, 57, 0, 0.018), 0 0 180px rgba(245, 57, 0, 0.13);
}

/* Scroll packaging: individual files converge into one Safety Figure folder. */
.modules {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(245, 57, 0, 0.08), transparent 24%),
    var(--background);
}

.pack-story {
  position: relative;
  height: auto;
  margin-top: clamp(52px, 7vw, 92px);
}

.pack-story__sticky {
  position: relative;
  min-height: 860px;
}

.motion-ready .pack-story {
  height: 290vh;
  height: 290svh;
}

.motion-ready .pack-story__sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  height: 100svh;
  place-items: center;
  overflow: hidden;
}

.pack-stage {
  position: relative;
  min-height: min(780px, calc(100vh - 118px));
  min-height: min(780px, calc(100svh - 118px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(var(--stage-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--stage-grid) 1px, transparent 1px),
    var(--surface-raised);
  background-size: 52px 52px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.pack-stage::before {
  position: absolute;
  z-index: -1;
  right: 20%;
  bottom: -30%;
  left: 20%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 57, 0, 0.14), transparent 64%);
  content: "";
  filter: blur(10px);
}

.pack-stage__header {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pack-stage__phases {
  display: flex;
  gap: 6px;
}

.pack-stage__phases span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.pack-stage__phases span.is-active {
  border-color: rgba(245, 57, 0, 0.32);
  background: rgba(245, 57, 0, 0.09);
  color: var(--focus-orange);
}

.pack-stage__lanes {
  position: absolute;
  z-index: 0;
  inset: 66px 0 0;
  pointer-events: none;
}

.pack-stage__lanes i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(var(--line-strong) 45%, transparent 45%);
  background-size: 1px 12px;
  mask-image: linear-gradient(transparent, #000 18%, #000 72%, transparent);
}

.pack-stage__lanes i:nth-child(1) { left: 25%; transform: rotate(-13deg); transform-origin: bottom; }
.pack-stage__lanes i:nth-child(2) { left: 50%; }
.pack-stage__lanes i:nth-child(3) { right: 25%; transform: rotate(13deg); transform-origin: bottom; }

.pack-files {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pack-file {
  --pack-x: 0px;
  --pack-y: 0px;
  --pack-scale: 1;
  --pack-rotate: 0deg;
  --pack-opacity: 1;
  position: absolute;
  z-index: 3;
  display: grid;
  width: 258px;
  min-height: 118px;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px 18px 17px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px 18px 18px 7px;
  background:
    linear-gradient(90deg, rgba(245, 57, 0, 0.12) 0 4px, transparent 4px),
    var(--surface-raised);
  box-shadow: 0 14px 38px rgba(15, 27, 44, 0.13);
  opacity: var(--pack-opacity);
  transform: translate3d(var(--pack-x), var(--pack-y), 0) rotate(var(--pack-rotate)) scale(var(--pack-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.pack-file::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 76px;
  height: 1px;
  background: var(--line);
  content: "";
}

.pack-file__fold {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 26px;
  height: 26px;
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--surface-soft);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.pack-file .module-icon {
  width: 39px;
  height: 39px;
  border-radius: 11px;
}

.pack-file h3 {
  padding-right: 14px;
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.pack-file p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.42;
}

.pack-file__code {
  position: absolute;
  bottom: 7px;
  left: 18px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.53rem;
  letter-spacing: 0.08em;
}

.pack-file--01 { top: 14%; left: 2.5%; }
.pack-file--02 { top: 14%; right: 2.5%; }
.pack-file--03 { top: 39%; left: 0.8%; }
.pack-file--04 { top: 39%; right: 0.8%; }
.pack-file--05 { bottom: 6%; left: 2.5%; }
.pack-file--06 { right: 2.5%; bottom: 6%; }
.pack-file--07 { top: 12%; left: calc(50% - 129px); }
.pack-file--08 { top: 36%; left: calc(50% - 129px); }

.pack-folder {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 50%;
  width: 350px;
  height: 230px;
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.pack-folder__back {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 12px;
  left: 12px;
  height: 150px;
  border: 1px solid rgba(245, 57, 0, 0.35);
  border-radius: 22px 22px 10px 10px;
  background: color-mix(in srgb, var(--surface-raised) 82%, var(--focus-orange) 18%);
  box-shadow: 0 -14px 42px rgba(245, 57, 0, 0.08);
  transform: perspective(480px) rotateX(-8deg);
  transform-origin: bottom;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pack-folder__back span {
  position: absolute;
  top: -23px;
  left: 20px;
  width: 118px;
  height: 31px;
  border: 1px solid rgba(245, 57, 0, 0.35);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: color-mix(in srgb, var(--surface-raised) 82%, var(--focus-orange) 18%);
}

.pack-folder__slot {
  position: absolute;
  z-index: 2;
  top: 66px;
  right: 34px;
  left: 34px;
  height: 82px;
  overflow: hidden;
  border-radius: 10px;
}

.pack-folder__slot i {
  position: absolute;
  right: 0;
  left: 0;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--surface-raised);
}

.pack-folder__slot i:nth-child(1) { top: 0; transform: rotate(-3deg); }
.pack-folder__slot i:nth-child(2) { top: 14px; transform: rotate(3deg); }
.pack-folder__slot i:nth-child(3) { top: 28px; }

.pack-folder__front {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 158px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 16px 16px 28px 28px;
  background:
    linear-gradient(145deg, rgba(245, 57, 0, 0.1), transparent 46%),
    var(--surface-raised);
  box-shadow: 0 28px 70px rgba(15, 27, 44, 0.2);
}

.pack-folder__brand {
  margin-bottom: 1px;
  color: var(--focus-orange);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pack-folder__front strong {
  color: var(--ink);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.pack-folder__front small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.68rem;
}

.pack-folder__seal {
  position: absolute;
  z-index: 5;
  top: 87px;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 0 8px rgba(245, 57, 0, 0.1), 0 14px 34px rgba(245, 57, 0, 0.25);
  opacity: 0;
  transform: translate(-50%, 16px) scale(0.5);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pack-folder__seal i,
.pack-folder__seal i::after {
  display: block;
  width: 5px;
  height: 17px;
  border-radius: 4px;
  background: #ffffff;
  content: "";
}

.pack-folder__seal i {
  transform: translateX(-4px) rotate(-33deg);
}

.pack-folder__seal i::after {
  transform: translate(7px, -4px) rotate(66deg);
}

.pack-stage__result {
  position: absolute;
  z-index: 7;
  top: 18%;
  left: 50%;
  width: min(560px, 72%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 420ms ease, transform 520ms ease;
}

.pack-stage.is-collecting .pack-folder {
  filter: drop-shadow(0 20px 38px rgba(245, 57, 0, 0.12));
}

.pack-stage.is-packed .pack-folder {
  transform: translateX(-50%) translateY(-30px) scale(1.08);
}

.pack-stage.is-packed .pack-folder__back {
  transform: translateY(32px) perspective(480px) rotateX(-68deg);
}

.pack-stage.is-packed .pack-folder__seal {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.pack-stage.is-packed .pack-stage__result {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Edge AI çalıştır: a theme-aware field intelligence viewport. */
.edge-ai {
  overflow: hidden;
  background: var(--surface-soft);
}

.edge-ai__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.edge-ai__heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.4vw, 6.6rem);
  font-weight: 620;
}

.edge-ai__heading > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.edge-ai-view {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-rows: 64px 1fr;
  margin-top: clamp(58px, 8vw, 100px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
}

.edge-ai-view__bar {
  position: relative;
  z-index: 5;
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.edge-ai-view__bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}

.edge-ai-view__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--focus-orange);
  box-shadow: 0 0 0 5px rgba(245, 57, 0, 0.1);
}

.edge-ai-view__scene {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  min-height: 626px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 62% 42%, rgba(245, 57, 0, 0.12), transparent 23%),
    linear-gradient(165deg, var(--surface-soft), var(--surface-raised));
}

.edge-ai-view__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--stage-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--stage-grid) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(#000, transparent 96%);
}

.edge-ai-view__building {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 9%;
  height: 60%;
  border-bottom: 2px solid var(--line-strong);
}

.edge-ai-view__building i,
.edge-ai-view__building b {
  position: absolute;
  display: block;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--surface-soft) 84%, var(--ink) 4%);
  box-shadow: inset 0 0 0 1px var(--line);
}

.edge-ai-view__building i::before,
.edge-ai-view__building i::after {
  position: absolute;
  background: var(--line-strong);
  content: "";
}

.edge-ai-view__building i:nth-child(1) {
  right: 4%;
  bottom: 0;
  left: 20%;
  height: 46%;
  clip-path: polygon(0 20%, 22% 20%, 22% 0, 44% 20%, 66% 20%, 66% 0, 88% 20%, 100% 20%, 100% 100%, 0 100%);
}

.edge-ai-view__building i:nth-child(1)::before {
  right: 8%;
  bottom: 20%;
  left: 8%;
  height: 8px;
  box-shadow: 0 -42px 0 var(--line-strong);
  opacity: 0.48;
}

.edge-ai-view__building i:nth-child(2) {
  bottom: 0;
  left: 0;
  width: 24%;
  height: 31%;
}

.edge-ai-view__building i:nth-child(2)::before {
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: 1px;
}

.edge-ai-view__building i:nth-child(3) {
  right: 15%;
  bottom: 46%;
  width: 9%;
  height: 45%;
  border-radius: 10px 10px 0 0;
}

.edge-ai-view__building b {
  right: 30%;
  bottom: 14%;
  width: 20%;
  height: 17%;
  border-radius: 7px;
  background: rgba(245, 57, 0, 0.09);
}

.edge-ai-view__scan {
  position: absolute;
  z-index: 2;
  top: -30%;
  right: 0;
  left: 0;
  height: 34%;
  border-bottom: 1px solid rgba(245, 57, 0, 0.7);
  background: linear-gradient(transparent, rgba(245, 57, 0, 0.07));
  box-shadow: 0 10px 34px rgba(245, 57, 0, 0.08);
}

.motion-ready .edge-ai-view__scan {
  animation: edge-ai-scan 6.2s linear infinite;
}

@keyframes edge-ai-scan {
  from { transform: translateY(0); }
  to { transform: translateY(860px); }
}

.edge-ai-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(245, 57, 0, 0.4);
  border-radius: 50%;
  background: var(--surface-raised);
  color: var(--focus-orange);
  box-shadow: 0 0 0 8px rgba(245, 57, 0, 0.08);
  font-size: 0.6rem;
  font-weight: 850;
}

.edge-ai-pin--one { top: 31%; left: 24%; }
.edge-ai-pin--two { top: 49%; right: 24%; }
.edge-ai-pin--three { right: 11%; bottom: 17%; }

.edge-ai-view__reticle {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 56%;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(245, 57, 0, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.edge-ai-view__reticle::before,
.edge-ai-view__reticle::after {
  position: absolute;
  background: rgba(245, 57, 0, 0.45);
  content: "";
}

.edge-ai-view__reticle::before { top: 50%; right: -22px; left: -22px; height: 1px; }
.edge-ai-view__reticle::after { top: -22px; bottom: -22px; left: 50%; width: 1px; }

.edge-ai-view__reticle span {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: rgba(245, 57, 0, 0.15);
  box-shadow: 0 0 28px rgba(245, 57, 0, 0.22);
}

.edge-ai-view__question {
  position: absolute;
  z-index: 6;
  bottom: 28px;
  left: 28px;
  display: grid;
  max-width: 520px;
  gap: 5px;
  padding: 17px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--header-bg);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.edge-ai-view__question span {
  color: var(--focus-orange);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edge-ai-view__question strong {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: -0.025em;
}

.edge-ai-signals {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  align-content: center;
  gap: 0;
  padding: 32px;
  margin: 0;
  background: var(--surface-raised);
  list-style: none;
}

.edge-ai-signal {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.edge-ai-signal:last-child {
  border-bottom: 0;
}

.edge-ai-signal > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
}

.edge-ai-signal strong,
.edge-ai-signal small {
  display: block;
}

.edge-ai-signal strong {
  color: var(--ink);
  font-size: 0.91rem;
}

.edge-ai-signal small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.71rem;
}

.edge-ai-signal--alert > span {
  border-color: rgba(245, 57, 0, 0.36);
  background: rgba(245, 57, 0, 0.08);
  color: var(--focus-orange);
}

.edge-ai-signal--clear > span {
  border-color: rgba(34, 159, 101, 0.3);
  background: rgba(34, 159, 101, 0.08);
  color: #158658;
}

.edge-ai-signal--watch > span {
  border-color: rgba(191, 131, 0, 0.3);
  background: rgba(191, 131, 0, 0.08);
  color: #a56c00;
}

@media (max-width: 1080px) {
  .site-header__bar {
    gap: 18px;
  }

  .pack-file {
    width: 236px;
  }

  .pack-file--07,
  .pack-file--08 {
    left: calc(50% - 118px);
  }

  .edge-ai-view {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
  }

  .site-header__bar {
    min-height: 74px;
    gap: 8px;
    padding: 10px 10px 10px 18px;
    border-radius: 26px;
  }

  .site-header.is-compact .site-header__bar {
    min-height: 68px;
  }

  .site-brand__word {
    font-size: 1rem;
  }

  .header-demo {
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 14px;
  }

  .theme-toggle {
    width: 44px;
    height: 44px;
  }

  .hero__content {
    padding-top: 132px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 10vw, 5.8rem);
  }

  .purpose__journey {
    min-height: auto;
  }

  .purpose-flow {
    left: -18%;
    width: 136%;
  }

  .purpose-step::before {
    display: none;
  }

  .purpose__handoff {
    margin-top: 48px;
    margin-bottom: -96px;
  }

  .motion-ready .pack-story,
  .pack-story {
    height: auto;
  }

  .motion-ready .pack-story__sticky,
  .pack-story__sticky {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .pack-stage {
    min-height: 0;
    padding: 92px 20px 32px;
  }

  .pack-stage__lanes {
    display: none;
  }

  .pack-files {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pack-file,
  .pack-file--01,
  .pack-file--02,
  .pack-file--03,
  .pack-file--04,
  .pack-file--05,
  .pack-file--06,
  .pack-file--07,
  .pack-file--08 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 128px;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .pack-folder,
  .pack-stage.is-packed .pack-folder {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 48px auto 0;
    transform: none;
  }

  .pack-stage.is-packed .pack-folder__back {
    transform: perspective(480px) rotateX(-8deg);
  }

  .pack-folder__seal {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  .pack-stage__result,
  .pack-stage.is-packed .pack-stage__result {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 28px auto 0;
    opacity: 1;
    transform: none;
  }

  .edge-ai__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .edge-ai-view {
    grid-template-columns: 1fr;
    grid-template-rows: 64px 560px auto;
  }

  .edge-ai-view__scene {
    min-height: 560px;
    grid-column: 1;
    grid-row: 2;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .edge-ai-signals {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 28px;
  }

  .edge-ai-signal {
    grid-template-columns: 30px 1fr;
    padding: 20px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .edge-ai-signal:last-child {
    border-right: 0;
  }

  .edge-ai-view__question {
    top: 480px;
    right: 28px;
    bottom: auto;
    left: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 9px;
  }

  .site-header__bar {
    min-height: 68px;
    padding: 8px 8px 8px 14px;
    border-radius: 23px;
  }

  .site-brand__mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .header-demo {
    min-height: 42px;
    padding-inline: 13px;
  }

  .hero__content {
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero__lead {
    max-width: 92%;
  }

  .hero__video-control {
    bottom: 14px;
    left: 14px;
  }

  .hero__scroll {
    display: none;
  }

  .purpose-flow {
    left: -42%;
    width: 184%;
    opacity: 0.72;
  }

  .purpose__handoff p {
    font-size: 0.57rem;
  }

  .statement__visual {
    font-size: clamp(2.65rem, 12.8vw, 4.55rem);
  }

  .modules__header h2,
  .edge-ai__heading h2 {
    font-size: clamp(2.75rem, 12.8vw, 4.7rem);
  }

  .pack-stage {
    width: calc(100% - 20px);
    padding: 84px 12px 24px;
    border-radius: 24px;
  }

  .pack-stage__header {
    min-height: 58px;
    padding-inline: 14px;
  }

  .pack-stage__phases span {
    padding-inline: 7px;
    font-size: 0.56rem;
  }

  .pack-files {
    grid-template-columns: 1fr;
  }

  .pack-file {
    min-height: 112px;
  }

  .pack-folder {
    width: min(330px, 94%);
  }

  .pack-stage__result {
    font-size: 1.55rem;
  }

  .edge-ai-view {
    width: calc(100% - 20px);
    grid-template-rows: 58px 500px auto;
    border-radius: 24px;
  }

  .edge-ai-view__bar {
    padding-inline: 14px;
  }

  .edge-ai-view__bar > span:last-child {
    display: none;
  }

  .edge-ai-view__scene {
    min-height: 500px;
  }

  .edge-ai-view__building {
    right: 3%;
    left: 3%;
  }

  .edge-ai-view__reticle {
    width: 112px;
    height: 112px;
  }

  .edge-ai-view__question {
    top: 410px;
    right: 14px;
    left: 14px;
    padding: 14px 16px;
  }

  .edge-ai-signals {
    grid-template-columns: 1fr;
    padding: 14px 20px;
  }

  .edge-ai-signal {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .edge-ai-signal:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-control {
    display: none !important;
  }

  .motion-ready .statement__word::before,
  .statement__word::before {
    clip-path: inset(0 0 0 0);
  }

  .motion-ready .pack-story,
  .pack-story {
    height: auto;
  }

  .motion-ready .pack-story__sticky,
  .pack-story__sticky {
    position: relative;
    height: auto;
  }

  .pack-file {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .edge-ai-view__scan {
    animation: none;
    transform: translateY(420px);
  }
}

@media (forced-colors: active) {
  .pack-stage,
  .pack-file,
  .pack-folder__back,
  .pack-folder__front,
  .edge-ai-view,
  .edge-ai-view__question {
    border: 1px solid CanvasText;
  }
}
