:root {
  --bg: #000000;
  --text: #fbfce8;
  --muted: rgba(251, 252, 232, 0.66);
  --panel: #000000;
  --border: rgba(251, 252, 232, 0.18);
  --accent: #0f766e;
  --accent-dark: #115e59;
  --warning: #b45309;
  --success: #15803d;
  --ink: #000000;
  --cream: #fbfce8;
  --lime: #b9ff00;
  --hover-outline: rgba(185, 255, 0, 0.72);
  --shadow: none;
  --radius: 8px;
  --container: 1180px;
  --header-zoom: 1;
  --header-height: calc(64px + (60px * var(--header-zoom)));
  --brand-size: calc(30px + (12px * var(--header-zoom)));
  --nav-gap: calc(22px + (6px * var(--header-zoom)));
  --nav-link-size: calc(14px + (1px * var(--header-zoom)));
  --nav-link-y: calc(8px + (2px * var(--header-zoom)));
  --nav-cta-height: calc(42px + (18px * var(--header-zoom)));
  --nav-cta-x: calc(20px + (7px * var(--header-zoom)));
  --nav-cta-offset: calc(28px + (14px * var(--header-zoom)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.article-open {
  overflow: hidden;
}

body.article-open .site-header,
body.article-open main,
body.article-open .site-footer {
  opacity: 0.28;
  transform: translateX(-9vw);
  transition: opacity 560ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header,
main,
.site-footer {
  transition: opacity 560ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

:focus-visible {
  outline: 3px solid rgba(185, 255, 0, 0.34);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: var(--ink);
  border-bottom: 0;
  transition: min-height 240ms ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-size: var(--brand-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: font-size 240ms ease;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--accent-dark);
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  transition: gap 240ms ease;
}

.site-nav a {
  border-radius: 0;
  color: var(--cream);
  font-size: var(--nav-link-size);
  font-weight: 500;
  line-height: 1;
  padding: var(--nav-link-y) 2px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, font-size 240ms ease, padding 240ms ease;
}

.site-nav a:hover {
  background: transparent;
  color: var(--lime);
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: var(--nav-cta-height);
  align-items: center;
  margin-left: var(--nav-cta-offset);
  border-radius: var(--radius);
  background: var(--lime);
  color: #020403;
  border: 1px solid var(--lime);
  padding: 0 var(--nav-cta-x);
  font-weight: 600;
  transition: min-height 240ms ease, margin-left 240ms ease, padding 240ms ease, border-radius 240ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav .nav-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: #020403;
}

.is-menu-jumping .site-header,
.is-menu-jumping .header-inner,
.is-menu-jumping .brand,
.is-menu-jumping .site-nav,
.is-menu-jumping .site-nav a,
.is-menu-jumping .site-nav .nav-cta {
  transition-duration: 0ms;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(251, 252, 232, 0.32);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: width 240ms ease, height 240ms ease, border-radius 240ms ease;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: max(640px, calc(100svh - var(--header-height)));
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(185, 255, 0, 0.075), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-editorial {
  min-height: max(640px, calc(100svh - var(--header-height)));
  padding: 88px 0 96px;
}

.hero-copy,
.delivery-console,
.section-heading,
.service-panel,
.case-row > *,
.process-timeline li,
.comparison-row div,
.contact-inner > *,
.footer-inner > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 900px;
  text-align: center;
}

.hero-lede {
  max-width: 640px;
  margin: 0 auto 30px;
  color: rgba(251, 252, 232, 0.74);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: #020403;
}

.button-primary:hover {
  background: var(--cream);
}

.button-secondary {
  background: transparent;
  border-color: rgba(251, 252, 232, 0.28);
  color: var(--cream);
}

.button-secondary:hover {
  border-color: rgba(251, 252, 232, 0.68);
}

.delivery-console {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.console-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.console-kicker {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.console-header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.console-status {
  flex: 0 0 auto;
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: 999px;
  background: rgba(21, 128, 61, 0.08);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 8px;
}

.console-list {
  display: grid;
  gap: 2px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.console-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: var(--radius);
  padding: 10px 8px;
  transition: background-color 180ms ease;
}

.console-list li:hover {
  background: rgba(251, 252, 232, 0.05);
}

.console-list strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.console-list span:not(.status-dot) {
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--border);
  box-shadow: 0 0 0 4px rgba(229, 231, 235, 0.55);
}

.status-done {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}

.status-active {
  background: var(--warning);
  box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.14);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.metric-grid div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  background: #000000;
}

.metric-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.trust-strip {
  padding: 18px 0 42px;
}

.trust-inner {
  display: grid;
  gap: 18px;
  border-block: 1px solid var(--border);
  padding: 22px 0;
}

.trust-inner p {
  max-width: 940px;
  margin: 0;
  color: var(--muted);
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.label-row span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #000000;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  padding: 7px 9px;
}

section {
  scroll-margin-top: calc(var(--header-height) + 4px);
}

.services,
.who,
.work,
.process,
.difference,
.contact {
  padding: 56px 0;
}

.menu-focus-section,
section:target {
  display: flex;
  align-items: flex-start;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(72px, 10svh, 112px);
  padding-bottom: 56px;
}

.menu-focus-section > .container,
section:target > .container {
  width: min(100% - 48px, var(--container));
}

.who {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(251, 252, 232, 0.08);
  border-bottom: 1px solid rgba(251, 252, 232, 0.08);
}

.who::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 255, 0, 0.86), transparent);
  transform: translateX(-100%);
  animation: whoSignal 8s linear infinite;
}

.who-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: start;
  min-height: 430px;
}

.who-copy {
  display: grid;
  align-content: start;
  max-width: 700px;
  min-height: 330px;
  padding-top: 30px;
}

.who-copy > p {
  max-width: 620px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.58;
}

.who-copy > p + p {
  margin-top: 16px;
}

.ai-tool-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  max-width: 620px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.ai-tool-icons li {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  line-height: 1;
}

.ai-tool-icons img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(97%) sepia(8%) saturate(405%) hue-rotate(19deg) brightness(105%) contrast(101%);
}

.who-principles {
  display: grid;
  align-self: stretch;
  align-content: start;
}

.who-principles div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.who-principles div:last-child {
  border-bottom: 0;
}

.who-principles span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.who-principles p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.48;
}

.who-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.who-heading h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

.who-heading p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes whoSignal {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.services .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-heading p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact p {
  color: var(--muted);
}

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

.service-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 252, 232, 0.34);
  box-shadow: none;
}

.service-panel h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.25;
}

.service-panel p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 14px;
}

.service-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 620;
}

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

.capability-showcase {
  padding: 56px 0;
}

.image-accordion {
  --accordion-collapsed-width: 88px;
  --accordion-gap: 12px;
  --accordion-active-stage-width: 880px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  gap: var(--accordion-gap);
  width: 100%;
  overflow: hidden;
}

.accordion-panel {
  position: relative;
  flex: 0 0 var(--accordion-collapsed-width);
  height: 450px;
  min-width: var(--accordion-collapsed-width);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #000000;
  color: var(--cream);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: flex-grow 820ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease;
  will-change: flex-grow;
}

.accordion-panel::before,
.think-card::before,
.process-timeline li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 220ms ease;
}

.accordion-panel::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  color: var(--cream);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  text-orientation: mixed;
  transform: translateX(-50%);
  transform-origin: center;
  transition: opacity 260ms ease 220ms;
  writing-mode: vertical-rl;
}

.accordion-panel.is-active {
  flex: 1 1 auto;
  border-color: rgba(251, 252, 232, 0.42);
}

.accordion-panel.is-active::after {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 0ms;
}

.accordion-panel:hover,
.accordion-panel:focus-visible {
  border-color: transparent;
}

.accordion-panel:hover::before,
.accordion-panel:focus-visible::before {
  border-color: var(--hover-outline);
}

.accordion-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.accordion-panel img {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--accordion-active-stage-width);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.04);
  transform: translateX(-50%);
  transform-origin: center center;
  transition: none;
  will-change: auto;
}

.accordion-panel.is-active img {
  filter: saturate(0.9) contrast(1.04);
  transform: translateX(-50%);
}

.accordion-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.34));
}

.accordion-content {
  position: absolute;
  inset: auto 32px 32px 32px;
  z-index: 1;
  display: grid;
  grid-template-rows: 36px 50px;
  gap: 8px;
  align-content: end;
  min-width: 0;
  width: 556px;
  min-height: 94px;
  opacity: 0;
  transform: none;
  overflow: hidden;
  transition: opacity 480ms ease;
}

.accordion-panel.is-active .accordion-content {
  opacity: 1;
  transform: none;
  transition-delay: 400ms;
}

.accordion-title {
  display: block;
  color: var(--cream);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  min-height: 36px;
  overflow: hidden;
  transform: none;
  transition: none;
}

.accordion-copy {
  display: block;
  max-width: 640px;
  min-height: 50px;
  color: rgba(251, 252, 232, 0.72);
  font-size: 17px;
  line-height: 1.45;
  max-height: 160px;
  opacity: 1;
  overflow: hidden;
  transform: none;
  transition: none;
}

.case-list {
  border-top: 1px solid var(--border);
}

.case-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  transition: background-color 180ms ease;
}

.case-row:hover {
  background: rgba(251, 252, 232, 0.04);
}

.case-title {
  display: grid;
  gap: 10px;
}

.case-title span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.case-title h3,
.case-row h4 {
  margin-bottom: 0;
}

.case-title h3 {
  font-size: 18px;
  line-height: 1.3;
}

.case-row h4 {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.case-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.think-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.think-heading h2 {
  margin-bottom: 12px;
  font-size: 34px;
  letter-spacing: 0;
}

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

.think-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(251, 252, 232, 0.12);
  border-radius: var(--radius);
  background: #080907;
  color: var(--cream);
  cursor: pointer;
  isolation: isolate;
  transition: border-color 220ms ease;
}

.think-card img,
.think-card-shade,
.think-card-diagram {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.think-card img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.think-card-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0));
  transition: background 420ms ease;
}

.think-card-content {
  position: absolute;
  inset: 36px 28px auto 28px;
  z-index: 2;
  display: grid;
  gap: 14px;
  color: #fffdec;
  transform: none;
}

.think-card-content span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.think-card-content h3 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.14;
  color: #fffdec;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.think-card-content p {
  margin: 0;
  color: rgba(255, 253, 236, 0.86);
  font-size: 15px;
  line-height: 1.45;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.think-card:hover,
.think-card:focus-visible {
  border-color: transparent;
  outline: 0;
}

.think-card:hover::before,
.think-card:focus-visible::before {
  border-color: var(--hover-outline);
}

.think-card:hover img,
.think-card:focus-visible img {
  filter: saturate(0.95) contrast(1);
  transform: scale(1.08);
}

.think-card:hover .think-card-shade,
.think-card:focus-visible .think-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.54) 46%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.14));
}

.think-card:hover .think-card-content,
.think-card:focus-visible .think-card-content {
  transform: none;
}

.think-card:hover .think-card-content p,
.think-card:focus-visible .think-card-content p {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 90ms;
}

.think-card::after {
  content: "Open";
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 32px;
  border: 1px solid rgba(251, 252, 232, 0.24);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.42);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.think-card:hover::after,
.think-card:focus-visible::after {
  border-color: rgba(185, 255, 0, 0.74);
  opacity: 1;
  transform: translateY(0);
}

.think-card-light .think-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0));
}

.think-card-light:hover .think-card-shade,
.think-card-light:focus-visible .think-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.12));
}

.think-card-plain {
  background: var(--cream);
  color: #050505;
}

.think-card-plain .think-card-shade {
  background:
    linear-gradient(180deg, rgba(251, 252, 232, 0.16), rgba(251, 252, 232, 0.2) 42%, rgba(251, 252, 232, 0.96)),
    linear-gradient(135deg, transparent 0 68%, rgba(185, 255, 0, 0.32) 68% 70%, transparent 70%);
}

.think-card-plain .think-card-content h3 {
  color: #050505;
  text-shadow: none;
}

.think-card-plain .think-card-content p {
  color: rgba(5, 5, 5, 0.72);
}

.think-card-diagram {
  z-index: 0;
  opacity: 0.5;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.think-card-diagram::before,
.think-card-diagram::after,
.think-card-diagram span {
  content: "";
  position: absolute;
  border: 1px solid rgba(5, 5, 5, 0.62);
}

.think-card-diagram::before {
  right: 24px;
  bottom: 72px;
  width: 110px;
  height: 82px;
}

.think-card-diagram::after {
  right: 92px;
  bottom: 130px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.think-card-diagram span:first-child {
  left: 34px;
  top: 70px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.think-card-diagram span:nth-child(2) {
  left: 92px;
  top: 126px;
  width: 150px;
  height: 1px;
  border-width: 1px 0 0;
  transform: rotate(18deg);
  transform-origin: left;
}

.think-card-diagram span:nth-child(3) {
  right: 54px;
  top: 84px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
}

.think-card-plain:hover .think-card-diagram,
.think-card-plain:focus-visible .think-card-diagram {
  opacity: 0.72;
  transform: scale(1.04);
}

.process-rail {
  position: relative;
  border-radius: var(--radius);
}

.process-rail-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  min-height: 340px;
  overflow: hidden;
}

.process-timeline li {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  height: 340px;
  padding: 28px 18px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  outline: 0;
  overflow: hidden;
  transition: background-color 180ms ease, border-color 180ms ease, opacity 220ms ease;
}

.process-timeline li:last-child {
  border-right: 0;
}

.process-timeline li:hover,
.process-timeline li:focus-visible,
.process-timeline li.is-active {
  background: rgba(251, 252, 232, 0.04);
}

.process-timeline li:hover,
.process-timeline li:focus-visible,
.process-timeline li.is-active {
  box-shadow: none;
}

.process-timeline li:hover::before,
.process-timeline li:focus-visible::before,
.process-timeline li.is-active::before {
  border-color: var(--hover-outline);
}

.process-timeline span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 32px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 50%;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.process-timeline li:hover span,
.process-timeline li:focus-visible span,
.process-timeline li.is-active span {
  border-color: var(--lime);
  background: var(--lime);
  color: #000000;
  box-shadow: 0 0 18px rgba(185, 255, 0, 0.28);
}

.process-timeline h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-card-summary {
  grid-area: 3 / 1;
  min-width: 0;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 260ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-timeline li.is-active .process-card-summary {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
}

.process-card-detail {
  grid-area: 3 / 1;
  min-width: 0;
  opacity: 0;
  transform: translateX(12px) translateY(2px);
  transition: opacity 360ms ease 80ms, transform 520ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
  pointer-events: none;
}

.process-timeline li.is-active .process-card-detail {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.process-card-detail p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-head {
  background: #000000;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-head div,
.comparison-row div {
  padding: 14px 16px;
}

.comparison-head div:first-child,
.comparison-row div:first-child {
  border-right: 1px solid var(--border);
}

.comparison-row {
  border-top: 1px solid var(--border);
  color: var(--muted);
  transition: background-color 180ms ease;
}

.comparison-row:hover {
  background: rgba(251, 252, 232, 0.04);
}

.comparison-row div:last-child {
  color: var(--text);
  font-weight: 650;
}

.contact {
  padding-bottom: 56px;
}

.contact-heading {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  text-align: center;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-inner {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  min-height: 430px;
  padding: 42px;
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.88fr);
  gap: 56px;
  align-items: start;
}

.contact-copy h3 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.contact-copy p + p {
  margin-top: 14px;
}

.contact-locations {
  display: grid;
  gap: 24px;
  max-width: 610px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-locations div {
  display: grid;
  gap: 6px;
}

.contact-locations span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.contact-locations p {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.contact-company {
  gap: 4px;
}

.contact-company strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

.contact-company p {
  color: var(--muted);
  font-size: 15px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form label:first-child {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #000000;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
  outline: 0;
  padding: 12px 13px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(251, 252, 232, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(185, 255, 0, 0.72);
  background: rgba(251, 252, 232, 0.03);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form-wide,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form .button {
  justify-self: start;
  min-width: 118px;
}

.site-footer {
  border-top: 1px solid var(--border);
  min-height: 220px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

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

.footer-inner strong {
  display: block;
  color: var(--text);
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.article-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.article-transition.is-open,
.article-transition.is-transitioning {
  visibility: visible;
  pointer-events: auto;
}

.article-transition-screen {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 420ms ease;
}

.article-transition.is-transitioning .article-transition-screen,
.article-transition.is-open .article-transition-screen {
  opacity: 1;
}

.article-drawer {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(460px, 0.92fr);
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(185, 255, 0, 0.035), transparent 28%),
    #020202;
  color: var(--cream);
  opacity: 0;
  outline: 0;
  overflow: auto;
  transform: translateX(100%);
  transition: opacity 260ms ease, transform 860ms cubic-bezier(0.77, 0, 0.18, 1);
}

.article-transition.is-open .article-drawer {
  opacity: 1;
  transform: translateX(0);
}

.article-drawer::before {
  content: none;
}

.article-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(251, 252, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.68);
  cursor: pointer;
}

.article-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--cream);
}

.article-close span:first-child {
  transform: rotate(45deg);
}

.article-close span:last-child {
  transform: rotate(-45deg);
}

.article-close:hover,
.article-close:focus-visible {
  border-color: rgba(185, 255, 0, 0.74);
}

.article-media {
  position: relative;
  display: block;
  min-height: 100svh;
  overflow: hidden;
  border-right: 1px solid rgba(251, 252, 232, 0.12);
}

.article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.34));
}

.article-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 360ms;
}

.article-transition.is-content-ready .article-media img {
  transform: scale(1);
}

.article-body {
  display: grid;
  align-content: center;
  min-width: 0;
  width: auto;
  max-height: 100svh;
  overflow: auto;
  margin: 0;
  padding: 72px clamp(34px, 5vw, 72px) 72px;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 420ms ease 340ms, transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 320ms;
}

.article-transition.is-content-ready .article-body {
  opacity: 1;
  transform: translateX(0);
}

.article-kicker {
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-body h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

.article-summary {
  max-width: 780px;
  margin-bottom: 32px;
  color: rgba(251, 252, 232, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.article-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  color: rgba(251, 252, 232, 0.82);
  font-size: 16px;
}

.article-copy::before {
  content: "In brief";
  display: block;
  margin: 36px 0 4px;
  color: var(--cream);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.article-copy p {
  margin: 0;
}

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

.article-copy li {
  position: relative;
  padding-left: 22px;
}

.article-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--lime);
}

.section-reveal {
  opacity: 0;
  transform: translateY(12px);
}

.is-ready .section-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.is-ready .section-reveal:nth-of-type(2) {
  transition-delay: 70ms;
}

.is-ready .section-reveal:nth-of-type(3) {
  transition-delay: 110ms;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 48px;
  }

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

  .delivery-console {
    max-width: 760px;
  }

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

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

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

  .case-title {
    grid-template-columns: 36px 1fr;
    align-items: baseline;
  }

  .who-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
  }

  .who-copy h3 {
    font-size: 28px;
  }

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

  .process-timeline li {
    min-height: 230px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .process-timeline li:nth-child(2n) {
    border-right: 0;
  }

  .process-timeline li:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: calc(56px + (8px * var(--header-zoom)));
    --brand-size: calc(22px + (4px * var(--header-zoom)));
    --nav-toggle-size: calc(40px + (6px * var(--header-zoom)));
  }

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

  .menu-focus-section > .container,
  section:target > .container {
    width: min(100% - 32px, var(--container));
  }

  .menu-focus-section,
  section:target {
    padding-top: clamp(48px, 7svh, 68px);
    padding-bottom: 48px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: inline-block;
    width: var(--nav-toggle-size);
    height: var(--nav-toggle-size);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border-bottom: 1px solid rgba(251, 252, 232, 0.26);
    background: rgba(18, 31, 39, 0.98);
    padding: 12px 16px 18px;
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    margin-left: 0;
    padding: 12px;
  }

  .site-nav .nav-cta {
    min-height: 48px;
    justify-content: center;
    border-radius: var(--radius);
    margin-top: 8px;
  }

  .hero {
    min-height: max(560px, calc(100svh - var(--header-height)));
    padding: 0;
  }

  .hero-editorial {
    min-height: max(560px, calc(100svh - var(--header-height)));
    padding: 34px 0 48px;
    align-items: center;
  }

  h1 {
    font-size: 40px;
    line-height: 1.12;
    max-width: 620px;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.62;
  }

  .section-heading h2,
  .contact h2 {
    font-size: 28px;
  }

  .contact-heading h2 {
    font-size: 28px;
  }

  .who {
    padding: 48px 0;
  }

  .who-heading h2 {
    font-size: 28px;
  }

  .who-copy h3 {
    font-size: 24px;
  }

  .who-copy > p {
    font-size: 16px;
  }

  .who-copy {
    min-height: 0;
  }

  .ai-tool-icons {
    margin-top: 24px;
  }

  .who-principles div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .metric-grid,
  .service-grid,
  .think-card-grid,
  .image-accordion,
  .process-timeline,
  .comparison-head,
  .comparison-row,
  .contact-inner,
  .contact-body,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .contact-inner {
    gap: 28px;
    min-height: 0;
    padding: 28px 22px;
  }

  .contact-copy h3 {
    font-size: 24px;
  }

  .contact-copy p {
    font-size: 16px;
  }

  .contact-copy p + p {
    margin-top: 12px;
  }

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

  .contact-locations {
    gap: 20px;
    margin-top: 30px;
    padding-top: 26px;
  }

  .contact-locations p {
    font-size: 15px;
  }

  .contact-company strong {
    font-size: 20px;
  }

  .contact-form textarea {
    min-height: 132px;
  }

  .capability-showcase {
    padding: 48px 0;
  }

  .think-heading h2 {
    font-size: 28px;
  }

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

  .think-card::after {
    opacity: 1;
    transform: none;
  }

  .think-card-content {
    inset: 24px 20px auto 20px;
    transform: translateY(0);
  }

  .think-card-content h3 {
    max-width: 100%;
    font-size: 24px;
  }

  .think-card-content p {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .article-drawer {
    grid-template-columns: 1fr;
    grid-template-rows: 220px minmax(0, 1fr);
  }

  .article-transition.is-open .article-drawer {
    transform: none;
  }

  .article-close {
    position: fixed;
    top: max(16px, calc(env(safe-area-inset-top) + 12px));
    right: max(16px, calc(env(safe-area-inset-right) + 16px));
    z-index: 140;
  }

  .article-media {
    display: block;
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(251, 252, 232, 0.12);
  }

  .article-media img {
    min-height: 220px;
  }

  .article-body {
    align-content: start;
    width: min(100% - 40px, 980px);
    max-height: none;
    overflow: visible;
    margin: 0 auto;
    padding: 30px 0 max(72px, calc(env(safe-area-inset-bottom) + 64px));
  }

  .article-body h2 {
    font-size: 30px;
    line-height: 1.14;
    margin-bottom: 14px;
  }

  .article-summary {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .article-copy {
    gap: 14px;
  }

  .article-copy::before {
    margin: 12px 0 2px;
    font-size: 24px;
  }

  .article-copy ul {
    margin-bottom: 40px;
  }

  .image-accordion {
    display: grid;
    gap: 10px;
    overflow: visible;
  }

  .accordion-panel,
  .accordion-panel.is-active {
    width: 100%;
    flex-basis: auto;
    height: 86px;
    transition: height 520ms ease, border-color 220ms ease;
  }

  .accordion-panel::after {
    left: 16px;
    right: 16px;
    bottom: 18px;
    transform: none;
    white-space: normal;
    transition-delay: 160ms;
    writing-mode: horizontal-tb;
  }

  .accordion-panel.is-active {
    height: 320px;
  }

  .accordion-panel img {
    left: 0;
    width: 100%;
    transform: none;
  }

  .accordion-panel.is-active img {
    transform: none;
  }

  .accordion-content,
  .accordion-panel:not(.is-active) .accordion-content {
    inset: auto 16px 16px 16px;
    grid-template-rows: auto auto;
    min-width: 0;
    width: calc(100% - 32px);
    min-height: 0;
    overflow: visible;
  }

  .accordion-title {
    min-height: 0;
    overflow: visible;
  }

  .accordion-copy {
    font-size: 16px;
    line-height: 1.48;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .comparison-row {
    gap: 0;
    padding: 0;
  }

  .comparison-row div {
    position: relative;
    padding: 13px 14px;
  }

  .comparison-row div:first-child {
    border-right: 0;
    background: #000000;
  }

  .comparison-row div:first-child::before {
    content: "Typical software house";
  }

  .comparison-row div:last-child::before {
    content: "Sakabytes";
  }

  .comparison-row div::before {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .process-timeline li,
  .process-timeline li:nth-child(2n) {
    grid-column: auto;
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .process-timeline li:last-child {
    border-bottom: 0;
  }

  .process-timeline span {
    margin-bottom: 18px;
  }

  .contact-inner {
    padding: 22px;
    min-height: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    align-items: start;
  }
}

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

  h1 {
    font-size: 38px;
    max-width: 350px;
  }

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

  .delivery-console {
    padding: 14px;
  }

  .console-header {
    align-items: flex-start;
  }
}

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

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
