:root {
  --ink: #0a0c0b;
  --ink-soft: #171a18;
  --paper: #f2f3ef;
  --paper-warm: #e9ebe4;
  --white: #ffffff;
  --lime: #95ef00;
  --lime-bright: #adff20;
  --gray: #6f756e;
  --gray-light: #cbd0c8;
  --line: rgba(10, 12, 11, 0.15);
  --line-dark: rgba(255, 255, 255, 0.15);
  --container: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Full-screen brand film intro */
.video-intro {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #050706;
}

.video-intro-media,
.video-intro-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-intro-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08);
}

.video-intro-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.88) 0%, rgba(3, 5, 4, 0.7) 43%, rgba(3, 5, 4, 0.34) 73%, rgba(3, 5, 4, 0.52) 100%),
    linear-gradient(180deg, rgba(3, 5, 4, 0.35) 0%, rgba(3, 5, 4, 0.08) 52%, rgba(3, 5, 4, 0.72) 100%);
  pointer-events: none;
}

.video-intro::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
  pointer-events: none;
}

.video-intro-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 86px);
  padding-bottom: 132px;
}

.video-intro-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.video-intro-kicker span {
  width: 42px;
  height: 2px;
  background: var(--lime);
  box-shadow: 12px 0 26px rgba(149, 239, 0, 0.72);
}

.video-intro h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6.7vw, 102px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.34);
}

.video-intro h1 em {
  color: var(--lime);
  font-style: normal;
}

.video-intro-lead {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.65;
}

.video-intro-lead strong {
  color: var(--white);
  font-weight: 850;
}

.video-intro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 264px;
  margin-top: 35px;
  padding: 18px 21px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  font-size: 14px;
  font-weight: 900;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.video-intro-cta:hover {
  color: var(--white);
  background: rgba(10, 12, 11, 0.48);
  transform: translateY(-3px);
}

.video-intro-cta span {
  font-size: 19px;
}

.video-intro-scroll {
  position: absolute;
  z-index: 2;
  right: max(30px, calc((100vw - var(--container)) / 2));
  bottom: 36px;
  display: grid;
  justify-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.56);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.video-intro-scroll i {
  position: relative;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.video-intro-scroll i::after {
  position: absolute;
  inset: -100% 0 auto;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--lime);
  animation: intro-scroll-line 2s ease-in-out infinite;
}

@keyframes intro-scroll-line {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(200%); }
}

@media (max-width: 920px) {
  .video-intro-content {
    padding-top: calc(var(--header-height) + 74px);
    padding-bottom: 118px;
  }

  .video-intro-media {
    object-position: 54% center;
  }

  .video-intro-shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 4, 0.88) 0%, rgba(3, 5, 4, 0.63) 72%, rgba(3, 5, 4, 0.5) 100%),
      linear-gradient(180deg, rgba(3, 5, 4, 0.28), rgba(3, 5, 4, 0.68));
  }
}

@media (max-width: 600px) {
  .video-intro-content {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 102px;
  }

  .video-intro-kicker {
    margin-bottom: 21px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .video-intro-kicker span {
    width: 30px;
  }

  .video-intro h1 {
    max-width: 360px;
    font-size: clamp(45px, 14vw, 60px);
    line-height: 1.07;
  }

  .video-intro-lead {
    margin-top: 29px;
    font-size: 17px;
    line-height: 1.65;
  }

  .video-intro-cta {
    width: min(100%, 310px);
    margin-top: 29px;
  }

  .video-intro-scroll {
    right: 17px;
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-intro-media {
    display: none;
  }

  .video-intro-scroll i::after {
    animation: none;
    transform: translateY(100%);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "SUIT", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(10, 12, 11, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: none;
}

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px;
  height: 35px;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  font-family: Arial Black, Impact, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -1px;
  clip-path: polygon(0 20%, 12% 20%, 12% 0, 28% 0, 28% 34%, 40% 0, 100% 0, 100% 80%, 88% 80%, 88% 100%, 70% 100%, 70% 72%, 58% 100%, 0 100%);
}

.brand-symbol::after {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 4px;
  height: 8px;
  content: "";
  background: var(--ink);
  box-shadow: -6px 2px 0 var(--ink), -12px 5px 0 var(--ink);
  opacity: 0.65;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-copy > span {
  color: rgba(255, 255, 255, 0.55);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta).is-active {
  color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 17px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  color: var(--white);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -7vw;
  width: min(58vw, 820px);
  height: 78%;
  content: "";
  background: var(--ink-soft);
  clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 84%);
}

.hero::after {
  position: absolute;
  top: 140px;
  right: -80px;
  width: 300px;
  height: 300px;
  content: "";
  border: 60px solid rgba(149, 239, 0, 0.04);
  transform: rotate(45deg);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 50px;
  align-items: center;
  min-height: 860px;
  padding-top: var(--header-height);
  padding-bottom: 80px;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #4e554e;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.eyebrow span {
  width: 23px;
  height: 2px;
  background: var(--lime);
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(50px, 5.25vw, 78px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.hero h1 em,
.method-section h2 em,
.contact-copy h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero-description {
  max-width: 610px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

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

.button-primary span {
  font-size: 18px;
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.button-secondary:hover {
  border-color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof p {
  font-size: 14px;
  font-weight: 800;
}

.hero-proof a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  transition: color 0.2s ease;
}

.hero-proof a:hover {
  color: var(--lime);
}

.hero-machine {
  position: relative;
  width: min(100%, 590px);
  margin-left: auto;
}

.machine-shell {
  position: relative;
  padding: 16px;
  background: #1e221f;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 20px 24px 0 rgba(0, 0, 0, 0.28);
}

.machine-shell::before,
.machine-shell::after {
  position: absolute;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid #5f665f;
  border-radius: 50%;
}

.machine-shell::before {
  top: 8px;
  left: 8px;
}

.machine-shell::after {
  right: 8px;
  bottom: 8px;
}

.machine-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 6px;
  color: #90968f;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.live-status i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(149, 239, 0, 0.1);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(149, 239, 0, 0);
  }
}

.machine-screen {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background-color: #0d100e;
  background-image:
    linear-gradient(rgba(149, 239, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 239, 0, 0.045) 1px, transparent 1px);
  background-size: 29px 29px;
  border: 1px solid #343a35;
}

.machine-screen::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(149, 239, 0, 0.13);
  clip-path: polygon(0 0, 32px 0, 32px 1px, calc(100% - 32px) 1px, calc(100% - 32px) 0, 100% 0, 100% 32px, calc(100% - 1px) 32px, calc(100% - 1px) calc(100% - 32px), 100% calc(100% - 32px), 100% 100%, calc(100% - 32px) 100%, calc(100% - 32px) calc(100% - 1px), 32px calc(100% - 1px), 32px 100%, 0 100%, 0 calc(100% - 32px), 1px calc(100% - 32px), 1px 32px, 0 32px);
}

.engine-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  padding: 25px;
  text-align: center;
  background: var(--lime);
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
  transform: translate(-50%, -50%);
}

.engine-core::after {
  position: absolute;
  inset: 9px;
  z-index: -1;
  content: "";
  background: var(--ink);
  clip-path: inherit;
}

.engine-core strong {
  align-self: end;
  color: var(--white);
  font-family: Arial Black, sans-serif;
  font-size: 47px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.engine-core small {
  align-self: start;
  margin-top: 9px;
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 6px;
  letter-spacing: 0.1em;
}

.core-crown {
  position: absolute;
  top: 24px;
  color: var(--lime);
  font-size: 10px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(149, 239, 0, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::after {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--lime);
  transform: rotate(45deg);
}

.orbit-one {
  width: 265px;
  height: 265px;
  animation: rotate 18s linear infinite;
}

.orbit-two {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 255, 255, 0.11);
  animation: rotateBack 27s linear infinite;
}

.orbit-two::after {
  top: auto;
  right: 12%;
  bottom: 16%;
  left: auto;
  width: 6px;
  height: 6px;
  background: #6d746d;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateBack {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.data-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 104px;
  padding: 10px 12px;
  background: rgba(10, 12, 11, 0.91);
  border: 1px solid rgba(149, 239, 0, 0.32);
  font-family: "Courier New", monospace;
}

.data-card span {
  color: #7d857d;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.data-card b {
  color: var(--lime);
  font-size: 11px;
}

.data-card-a {
  top: 48px;
  right: 27px;
}

.data-card-b {
  right: 29px;
  bottom: 45px;
}

.data-card-c {
  bottom: 53px;
  left: 22px;
}

.machine-console {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 13px 8px 0;
}

.console-readout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 53px;
  padding: 0 14px;
  background: #141815;
  border: 1px solid #343a35;
}

.console-readout > span {
  color: #747a73;
  font-family: "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.signal-bars {
  display: flex;
  gap: 5px;
  align-items: end;
  justify-content: end;
  height: 28px;
}

.signal-bars i {
  width: 7px;
  height: 28%;
  background: var(--lime);
  animation: signal 1.9s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(2) { height: 43%; animation-delay: -0.2s; }
.signal-bars i:nth-child(3) { height: 31%; animation-delay: -0.55s; }
.signal-bars i:nth-child(4) { height: 66%; animation-delay: -0.3s; }
.signal-bars i:nth-child(5) { height: 53%; animation-delay: -0.7s; }
.signal-bars i:nth-child(6) { height: 81%; animation-delay: -0.1s; }
.signal-bars i:nth-child(7) { height: 100%; animation-delay: -0.45s; }

@keyframes signal {
  to { height: 92%; }
}

.console-dial {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 5px solid #0e110f;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #586057, 0 0 0 1px #394039;
}

.console-dial span {
  width: 2px;
  height: 18px;
  background: var(--lime);
  transform: translateY(-7px) rotate(24deg);
  transform-origin: bottom;
}

.machine-note {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 18px;
  width: 78%;
  margin: -2px 0 0 auto;
  padding: 19px 22px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 13px 13px 0 rgba(0, 0, 0, 0.18);
}

.machine-note > span {
  color: rgba(10, 12, 11, 0.45);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.machine-note p {
  font-size: 13px;
  line-height: 1.55;
}

.machine-note b {
  font-weight: 900;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-block: 1px solid var(--ink);
}

.hero-ticker > div {
  display: flex;
  gap: 36px;
  justify-content: center;
  min-width: max-content;
  padding: 19px 25px;
  font-family: Arial Black, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero-ticker i {
  font-size: 8px;
  font-style: normal;
}

.section {
  position: relative;
  padding: 142px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading h2,
.services-section h2,
.values-title h2 {
  margin-top: 24px;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.13;
}

.section-heading > p,
.section-heading.horizontal > p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.problem-section {
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.problem-card {
  position: relative;
  min-height: 425px;
  padding: 32px 34px 38px;
  border-right: 1px solid var(--line);
}

.problem-card:last-child {
  border-right: 0;
}

.problem-card::after {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--lime);
  box-shadow: -10px 0 0 rgba(10, 12, 11, 0.15), 0 -10px 0 rgba(10, 12, 11, 0.15);
}

.card-number {
  display: block;
  color: var(--gray);
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.problem-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin-top: 40px;
}

.problem-icon i {
  position: absolute;
  width: 21px;
  height: 21px;
  background: var(--ink);
}

.problem-icon i:nth-child(1) { top: 0; left: 0; }
.problem-icon i:nth-child(2) { top: 0; left: 28px; background: var(--lime); }
.problem-icon i:nth-child(3) { top: 28px; left: 28px; }
.problem-icon i:nth-child(4) { top: 28px; left: 56px; opacity: 0.2; }

.icon-target {
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-target::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-target i:nth-child(1) {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  z-index: 2;
  background: var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-target i:nth-child(2) {
  top: -5px;
  left: 49%;
  width: 2px;
  height: 84px;
  background: rgba(10, 12, 11, 0.15);
}

.icon-target i:nth-child(3) {
  top: 49%;
  left: -5px;
  width: 84px;
  height: 2px;
  background: rgba(10, 12, 11, 0.15);
}

.icon-loop {
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-loop::before,
.icon-loop::after {
  position: absolute;
  content: "";
  background: var(--paper);
}

.icon-loop::before { top: -5px; right: 10px; width: 28px; height: 15px; }
.icon-loop::after { bottom: -5px; left: 10px; width: 28px; height: 15px; }

.icon-loop i:nth-child(1),
.icon-loop i:nth-child(2) {
  z-index: 2;
  width: 12px;
  height: 12px;
  background: var(--lime);
  transform: rotate(45deg);
}

.icon-loop i:nth-child(1) { top: 1px; right: 11px; }
.icon-loop i:nth-child(2) { bottom: 1px; left: 11px; }

.problem-card h3 {
  margin-top: 31px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.45;
}

.problem-card p {
  margin-top: 18px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.method-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.method-section::before {
  position: absolute;
  top: -130px;
  left: -150px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(149, 239, 0, 0.15);
  transform: rotate(45deg);
}

.method-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 100px;
  align-items: end;
}

.section-index.light {
  color: rgba(255, 255, 255, 0.44);
}

.method-intro h2 {
  margin-top: 24px;
  font-size: clamp(43px, 4.8vw, 68px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.12;
}

.method-intro > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
}

.growth-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 104px;
  padding: 0 30px;
}

.flow-track {
  position: absolute;
  top: 73px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.flow-track span {
  position: relative;
  display: block;
  width: 0;
  height: 3px;
  margin-top: -1px;
  overflow: hidden;
  background: var(--lime);
  transition: width 1.4s var(--ease) 0.2s;
}

.flow-track span::after {
  position: absolute;
  inset: 0 auto 0 -24%;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, transparent, var(--lime-bright) 48%, #ffffff 50%, var(--lime-bright) 52%, transparent);
  box-shadow: 0 0 16px rgba(149, 239, 0, 0.9);
  opacity: 0;
}

.growth-flow.is-visible .flow-track span {
  width: 100%;
}

.growth-flow.is-visible .flow-track span::after {
  opacity: 1;
  animation: flow-track-x 2.8s ease-in-out 1.45s infinite;
}

@keyframes flow-track-x {
  0% { transform: translateX(0); }
  72%, 100% { transform: translateX(520%); }
}

@keyframes flow-track-y {
  0% { transform: translateY(0); }
  72%, 100% { transform: translateY(520%); }
}

.flow-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.flow-step > span {
  color: rgba(255, 255, 255, 0.38);
  font-family: "Courier New", monospace;
  font-size: 9px;
}

.flow-node {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 23px auto;
  color: var(--lime);
  background: var(--ink);
  border: 1px solid rgba(149, 239, 0, 0.45);
  font-family: Arial Black, sans-serif;
  font-size: 23px;
  transform: rotate(45deg);
  transition: background 0.3s ease, color 0.3s ease;
}

.flow-node::first-letter {
  transform: rotate(-45deg);
}

.flow-node.active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.flow-node > span {
  display: block;
  transform: rotate(-45deg);
}

.flow-node:not(.active) {
  line-height: 86px;
  text-indent: 0;
}

.flow-step h3 {
  margin-top: 35px;
  font-size: 20px;
}

.flow-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.65;
}

.method-statement {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 100px;
  padding: 27px 30px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.method-statement p {
  color: rgba(255, 255, 255, 0.48);
}

.method-statement strong {
  color: var(--lime);
  font-size: 15px;
}

.services-section {
  background: var(--paper-warm);
}

.section-heading.horizontal {
  grid-template-columns: 1.5fr 0.5fr;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 29px 30px 28px;
  background: var(--paper);
  border: 1px solid rgba(10, 12, 11, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-9px);
  box-shadow: 0 20px 50px rgba(10, 12, 11, 0.12);
}

.service-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card.featured::before {
  position: absolute;
  top: -1px;
  right: 27px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--lime);
  content: "CORE SERVICE";
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.featured .service-id {
  border-color: var(--line-dark);
}

.service-id span {
  color: var(--lime);
  font-family: Arial Black, sans-serif;
  font-size: 20px;
}

.service-id small {
  color: var(--gray);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-main > p {
  min-height: 42px;
  margin-top: 32px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.65;
}

.featured .service-main > p {
  color: rgba(255, 255, 255, 0.47);
}

.service-main h3 {
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.service-main strong {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 850;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.service-card li {
  position: relative;
  padding-left: 17px;
  color: var(--gray);
  font-size: 13px;
}

.service-card li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--lime);
}

.featured li {
  color: rgba(255, 255, 255, 0.62);
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.featured > a {
  border-color: var(--line-dark);
}

.service-card > a span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--ink);
  background: var(--lime);
  transition: transform 0.25s var(--ease);
}

.service-card > a:hover span {
  transform: rotate(45deg);
}

.story-section {
  overflow: hidden;
  color: var(--white);
  background: #141715;
}

.story-section::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  content: "KDP";
  color: rgba(255, 255, 255, 0.025);
  font-family: Arial Black, sans-serif;
  font-size: 165px;
  font-weight: 900;
  letter-spacing: -0.1em;
  transform: rotate(-90deg);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 92px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 536 / 432;
  overflow: hidden;
  background: #050706;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 24px 24px 0 rgba(0, 0, 0, 0.24);
}

.story-video-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(149, 239, 0, 0.13);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.story-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.story-visual::before {
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  content: "";
  border-top: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
}

.story-copy h2 {
  margin-top: 25px;
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.19;
}

.story-copy > p:not(.section-index) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.85;
}

.story-copy .story-lead {
  margin-top: 32px !important;
  color: var(--white) !important;
  font-size: 17px !important;
  font-weight: 800;
}

.story-copy blockquote {
  margin-top: 33px;
  padding: 20px 0 20px 21px;
  color: var(--lime);
  border-left: 3px solid var(--lime);
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 31px;
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.values-section {
  background: var(--paper);
}

.values-title {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: start;
  margin-bottom: 67px;
}

.values-title h2 {
  margin-top: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.value-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.value-card::after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  content: "";
  border: 1px solid currentColor;
  opacity: 0.18;
  transform: rotate(45deg);
}

.value-card.dark {
  color: var(--white);
  background: var(--ink);
}

.value-card.lime {
  background: var(--lime);
  border-color: var(--lime);
}

.value-code {
  color: var(--gray);
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.dark .value-code {
  color: rgba(255, 255, 255, 0.4);
}

.lime .value-code {
  color: rgba(10, 12, 11, 0.5);
}

.value-kicker {
  display: block;
  margin-top: 86px;
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.lime .value-kicker {
  color: rgba(10, 12, 11, 0.5);
}

.value-card h3 {
  margin-top: 9px;
  font-size: 47px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.value-card p {
  max-width: 280px;
  margin-top: 25px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.dark p {
  color: rgba(255, 255, 255, 0.53);
}

.lime p {
  color: rgba(10, 12, 11, 0.67);
}

.kdp-section {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.kdp-mark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  aspect-ratio: 1.35;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.kdp-mark span {
  display: grid;
  place-items: center;
  color: var(--lime);
  border-right: 1px solid var(--line-dark);
  font-family: Arial Black, sans-serif;
  font-size: clamp(60px, 8vw, 115px);
  font-weight: 900;
  letter-spacing: -0.12em;
  transform: skewX(-7deg);
}

.kdp-mark span:nth-child(2) {
  color: var(--white);
  background: #151916;
}

.kdp-mark span:last-child {
  color: var(--ink);
  background: var(--lime);
  border-right: 0;
}

.kdp-copy h2 {
  margin-top: 25px;
  font-family: Arial, sans-serif;
  font-size: clamp(37px, 3.7vw, 56px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.13;
}

.kdp-copy > p:not(.section-index) {
  margin-top: 17px;
  color: var(--lime);
  font-size: 16px;
  font-weight: 800;
}

.kdp-copy dl {
  margin-top: 43px;
  border-top: 1px solid var(--line-dark);
}

.kdp-copy dl > div {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.kdp-copy dt {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.kdp-copy dt b {
  display: inline-block;
  width: 25px;
  color: var(--lime);
}

.kdp-copy dd {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.contact-section {
  overflow: hidden;
  color: var(--white);
  background: #121512;
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  content: "";
  background: var(--lime);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.04;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 95px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2 {
  margin-top: 25px;
  font-size: clamp(41px, 4.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.15;
}

.contact-copy > p:not(.section-index) {
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.8;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-direct a {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  width: fit-content;
  color: var(--white);
}

.contact-direct span {
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-direct strong {
  font-size: 14px;
  font-weight: 700;
}

.contact-promise {
  display: grid;
  gap: 11px;
  margin-top: 75px;
  padding-top: 23px;
  border-top: 1px solid var(--line-dark);
}

.contact-promise span {
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-promise strong {
  font-size: 16px;
  line-height: 1.55;
}

.contact-form {
  padding: 40px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.24);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.form-heading span {
  color: var(--gray);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.form-heading b {
  font-size: 22px;
  font-weight: 900;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form > label,
.form-row label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.contact-form label > span {
  color: #4d534d;
  font-size: 11px;
  font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b8beb5;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.contact-form label small {
  color: #8a9088;
  font-size: 9px;
  font-weight: 500;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--ink);
}

.contact-form ::placeholder {
  color: #a1a69f;
}

.consent-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: center;
  margin: 26px 0 20px !important;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--ink);
}

.consent-row span {
  font-size: 11px !important;
  font-weight: 500 !important;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
  border-color: var(--ink);
}

.form-submit:hover {
  color: var(--white);
  background: var(--ink);
}

.form-note {
  margin-top: 13px;
  color: #838981;
  font-size: 10px;
  line-height: 1.5;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: #477400;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  padding: 60px 0 24px;
  color: var(--white);
  background: #080908;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 43px;
}

.footer-main > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 64px);
  }

  .machine-screen {
    min-height: 430px;
  }

  .data-card-c {
    left: 15px;
  }

  .story-layout,
  .contact-layout {
    gap: 60px;
  }

  .service-main h3 {
    font-size: 29px;
  }
}

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

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

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    padding: 72px 44px 40px;
    visibility: hidden;
    background: rgba(10, 12, 11, 0.98);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a,
  .primary-nav .nav-cta {
    padding: 18px 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 26px;
    font-weight: 850;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    top: auto;
    right: -20%;
    bottom: 0;
    width: 100%;
    height: 55%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 160px;
  }

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

  .hero h1 {
    font-size: clamp(52px, 9vw, 78px);
  }

  .hero-machine {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .machine-screen {
    min-height: 500px;
  }

  .section {
    padding: 110px 0;
  }

  .section-heading,
  .section-heading.horizontal {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading > p {
    max-width: 580px;
  }

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

  .problem-card {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-card:last-child {
    border-bottom: 0;
  }

  .problem-icon {
    margin-top: 25px;
  }

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

  .growth-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 70px;
    padding: 0;
  }

  .flow-track {
    top: 55px;
    bottom: 55px;
    left: 43px;
    width: 1px;
    height: auto;
  }

  .flow-track span {
    width: 3px;
    height: 0;
    margin: 0 0 0 -1px;
    transition: height 1.4s var(--ease) 0.2s;
  }

  .growth-flow.is-visible .flow-track span {
    width: 3px;
    height: 100%;
  }

  .flow-track span::after {
    inset: -24% 0 auto;
    width: 100%;
    height: 24%;
    background: linear-gradient(180deg, transparent, var(--lime-bright) 48%, #ffffff 50%, var(--lime-bright) 52%, transparent);
  }

  .growth-flow.is-visible .flow-track span::after {
    animation-name: flow-track-y;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 36px 86px 80px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 136px;
    text-align: left;
  }

  .flow-node {
    margin: 0;
  }

  .flow-step h3 {
    margin: 0;
  }

  .flow-step p {
    margin: 0;
  }

  .method-statement {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 60px;
  }

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

  .service-card {
    min-height: 550px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .story-visual {
    width: min(100%, 680px);
  }

  .values-title {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .value-card {
    min-height: 320px;
  }

  .value-kicker {
    margin-top: 55px;
  }

  .kdp-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .kdp-mark {
    width: min(100%, 680px);
  }

  .contact-copy {
    position: static;
  }

  .contact-form {
    max-width: 680px;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .brand-symbol {
    width: 52px;
    height: 31px;
    font-size: 14px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy > span {
    font-size: 6px;
  }

  .primary-nav {
    padding-inline: 24px;
  }

  .hero-layout {
    gap: 54px;
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1.11;
  }

  .hero-description {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    margin-top: 30px;
  }

  .machine-shell {
    padding: 9px;
    box-shadow: 10px 14px 0 rgba(0, 0, 0, 0.28);
  }

  .machine-topline {
    padding-inline: 2px;
    font-size: 7px;
  }

  .machine-screen {
    min-height: 345px;
    background-size: 22px 22px;
  }

  .engine-core {
    width: 134px;
    height: 134px;
  }

  .engine-core strong {
    font-size: 35px;
  }

  .engine-core small {
    font-size: 4px;
  }

  .core-crown {
    top: 18px;
  }

  .orbit-one {
    width: 205px;
    height: 205px;
  }

  .orbit-two {
    width: 275px;
    height: 275px;
  }

  .data-card {
    min-width: 82px;
    padding: 7px 8px;
  }

  .data-card b {
    font-size: 8px;
  }

  .data-card-a { top: 26px; right: 14px; }
  .data-card-b { right: 12px; bottom: 25px; }
  .data-card-c { bottom: 30px; left: 12px; }

  .console-readout {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 7px;
  }

  .console-readout > span {
    font-size: 6px;
  }

  .signal-bars {
    justify-content: start;
    height: 19px;
  }

  .console-dial {
    width: 46px;
    height: 46px;
  }

  .machine-note {
    width: 91%;
    padding: 16px;
  }

  .hero-ticker > div {
    justify-content: flex-start;
    gap: 24px;
    font-size: 10px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .services-section h2,
  .values-title h2 {
    margin-top: 17px;
    font-size: 39px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .desktop-only {
    display: none;
  }

  .problem-card {
    min-height: 350px;
    padding: 27px 25px 34px;
  }

  .problem-card h3 {
    font-size: 22px;
  }

  .method-intro h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: 39px;
  }

  .method-intro > p {
    font-size: 14px;
  }

  .flow-step {
    grid-template-columns: 26px 66px 1fr;
    gap: 14px;
    min-height: 120px;
  }

  .flow-step > p {
    display: none;
  }

  .flow-node {
    width: 66px;
    height: 66px;
    font-size: 18px;
  }

  .flow-track {
    top: 55px;
    bottom: 55px;
    left: 33px;
  }

  .method-statement {
    padding-inline: 0;
  }

  .service-card {
    min-height: 565px;
    padding: 25px;
  }

  .service-main h3 {
    font-size: 31px;
  }

  .story-layout {
    gap: 65px;
  }

  .story-copy blockquote {
    font-size: 20px;
  }

  .value-card {
    min-height: 300px;
    padding: 25px;
  }

  .value-kicker {
    margin-top: 42px;
  }

  .kdp-layout {
    gap: 48px;
  }

  .kdp-copy h2 {
    font-size: 35px;
  }

  .kdp-copy dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-layout {
    gap: 58px;
  }

  .contact-promise {
    margin-top: 45px;
  }

  .contact-form {
    padding: 27px 22px;
    box-shadow: 9px 11px 0 rgba(0, 0, 0, 0.24);
  }

  .form-heading {
    display: grid;
    gap: 8px;
  }

  .form-heading b {
    font-size: 20px;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    padding-bottom: 32px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

/* Content hub */
.content-page {
  background: var(--paper);
}

.content-page .site-header {
  position: fixed;
}

.content-index-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(149, 239, 0, 0.16), transparent 25%),
    var(--ink);
}

.content-index-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.content-index-hero::after {
  position: absolute;
  right: -4vw;
  bottom: -80px;
  color: transparent;
  content: "KDP";
  font-family: Arial Black, Impact, sans-serif;
  font-size: clamp(180px, 28vw, 460px);
  font-weight: 900;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
}

.content-index-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 680px;
  padding-top: 170px;
  padding-bottom: 72px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.content-index-hero h1 {
  max-width: 950px;
  margin-top: 28px;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.95;
  white-space: pre-line;
}

.content-index-hero-inner > p:not(.section-index) {
  max-width: 690px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.8;
}

.content-index-tabs {
  display: flex;
  gap: 8px;
  margin-top: 42px;
}

.content-index-tabs a {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.content-index-tabs a:hover,
.content-index-tabs a.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.content-index-section {
  padding: 110px 0 130px;
}

.content-index-toolbar {
  display: flex;
  margin-bottom: 42px;
  padding-bottom: 20px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  color: var(--gray);
  font-size: 13px;
}

.content-index-toolbar div {
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.content-index-toolbar div span {
  margin-right: 8px;
  color: var(--lime);
  -webkit-text-stroke: 1px var(--ink);
}

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

.content-card {
  display: flex;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.content-card:hover {
  box-shadow: 9px 10px 0 var(--ink);
  transform: translate(-4px, -5px);
}

.content-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
}

.content-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(10, 12, 11, 0.34), transparent 52%);
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.content-card:hover .content-card-media img {
  transform: scale(1.035);
}

.content-card-media > span {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 15px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.content-card-body {
  display: flex;
  min-height: 310px;
  padding: 26px 25px 24px;
  flex: 1;
  flex-direction: column;
}

.content-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.content-card-meta > span {
  color: #477800;
  font-weight: 900;
}

.content-card h3 {
  margin-top: 23px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.content-card h3 a {
  background-image: linear-gradient(var(--lime), var(--lime));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 7px;
  transition: background-size 0.35s var(--ease);
}

.content-card:hover h3 a {
  background-size: 100% 7px;
}

.content-card-body > p {
  margin-top: 16px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.content-card-link {
  display: flex;
  margin-top: auto;
  padding-top: 25px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.content-card-link span {
  color: #5e9c00;
  font-size: 18px;
}

.home-content-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.home-content-intro {
  max-width: 420px;
  padding-top: 42px;
}

.home-content-intro p {
  color: var(--gray);
  line-height: 1.8;
}

.home-content-intro .text-link {
  margin-top: 24px;
  color: var(--ink);
  border-color: rgba(10, 12, 11, 0.35);
}

.home-content-grid {
  margin-top: 60px;
}

.content-empty {
  padding: 100px 30px;
  text-align: center;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.content-empty strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.content-empty p {
  margin: 14px 0 28px;
  color: var(--gray);
}

.content-conversion-strip {
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.content-conversion-strip .container {
  display: grid;
  min-height: 180px;
  grid-template-columns: 0.8fr 2fr auto;
  gap: 32px;
  align-items: center;
}

.content-conversion-strip p {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.content-conversion-strip strong {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.content-conversion-strip a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.content-conversion-strip a span {
  color: var(--lime);
}

/* Article and video pages */
.article-hero {
  padding: 175px 0 90px;
  color: var(--white);
  background: var(--ink);
}

.article-hero-inner {
  max-width: 1020px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.article-kicker {
  display: flex;
  gap: 13px;
  margin-top: 70px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
}

.article-kicker span {
  padding: 7px 9px;
  color: var(--ink);
  background: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.article-hero h1 {
  max-width: 940px;
  margin-top: 26px;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.article-hero-inner > p {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  line-height: 1.75;
}

.article-byline {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.45);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.article-shell {
  padding-top: 68px;
  padding-bottom: 120px;
}

.article-cover {
  overflow: hidden;
  width: 100%;
  max-height: 650px;
  aspect-ratio: 16 / 8;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.video-watch {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-watch iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-layout {
  display: grid;
  max-width: 1040px;
  margin: 86px auto 0;
  grid-template-columns: 210px minmax(0, 720px);
  gap: 110px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.article-aside > span {
  color: #5b9600;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.article-aside strong {
  font-size: 17px;
  line-height: 1.55;
}

.article-aside a {
  margin-top: 12px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 800;
}

.article-body {
  min-width: 0;
  color: #222622;
  font-size: 17px;
  line-height: 2;
}

.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > blockquote,
.article-body > pre {
  margin: 0 0 30px;
}

.article-body h2 {
  margin: 78px 0 25px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

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

.article-body h3 {
  margin: 52px 0 20px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 11px;
  padding: 24px 28px 24px 52px;
  background: var(--paper-warm);
  border-left: 4px solid var(--lime);
}

.article-body ul {
  list-style: square;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  padding-left: 5px;
}

.article-body blockquote {
  padding: 30px 34px;
  color: var(--ink);
  background: var(--lime);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.65;
}

.article-body a {
  text-decoration: underline;
  text-decoration-color: #6ba900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-body code {
  padding: 2px 5px;
  color: #3d6500;
  background: #e1e8d7;
  border-radius: 3px;
  font-family: Consolas, monospace;
  font-size: 0.88em;
}

.article-body pre {
  overflow-x: auto;
  padding: 25px;
  color: #d9decf;
  background: var(--ink);
}

.article-body pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.article-tags {
  display: flex;
  gap: 8px;
  margin-top: 78px;
  padding-top: 26px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.article-tags span {
  padding: 8px 11px;
  color: var(--gray);
  background: var(--paper-warm);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.article-cta {
  padding: 100px 0;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.article-cta p {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.article-cta h2 {
  margin: 20px 0 36px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.related-content {
  padding: 120px 0;
  background: var(--paper-warm);
}

.related-heading {
  margin-bottom: 46px;
}

.related-heading h2 {
  margin-top: 16px;
  font-size: 40px;
  letter-spacing: -0.05em;
}

.not-found {
  display: grid;
  min-height: 78vh;
  padding: 180px 0 100px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.not-found span {
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin-top: 22px;
  font-size: clamp(46px, 7vw, 80px);
  letter-spacing: -0.07em;
}

.not-found p {
  margin: 20px 0 34px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 920px) {
  .content-index-hero,
  .content-index-hero-inner {
    min-height: 600px;
  }

  .content-index-hero-inner {
    padding-top: 140px;
  }

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

  .home-content-grid .content-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
  }

  .content-conversion-strip .container {
    padding: 45px 0;
    grid-template-columns: 1fr auto;
  }

  .content-conversion-strip p {
    grid-column: 1 / -1;
  }

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

  .article-aside {
    position: static;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .article-aside > span {
    grid-column: 1 / -1;
  }

  .article-aside strong br {
    display: none;
  }
}

@media (max-width: 600px) {
  .content-index-hero,
  .content-index-hero-inner {
    min-height: 560px;
  }

  .content-index-hero-inner {
    padding-top: 130px;
    padding-bottom: 48px;
  }

  .content-index-hero h1 {
    margin-top: 22px;
    font-size: 48px;
  }

  .content-index-hero-inner > p:not(.section-index) {
    margin-top: 22px;
    font-size: 14px;
  }

  .content-index-tabs {
    width: 100%;
    margin-top: 28px;
  }

  .content-index-tabs a {
    flex: 1;
    padding-inline: 10px;
    text-align: center;
  }

  .content-index-section {
    padding: 72px 0 85px;
  }

  .content-index-toolbar {
    display: grid;
    gap: 10px;
  }

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

  .home-content-grid {
    margin-top: 42px;
  }

  .home-content-grid .content-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .content-card-body {
    min-height: 285px;
    padding: 23px 21px;
  }

  .home-content-intro {
    padding-top: 0;
  }

  .content-conversion-strip .container {
    display: grid;
    padding: 45px 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-conversion-strip p {
    grid-column: auto;
  }

  .content-conversion-strip strong {
    font-size: 21px;
  }

  .content-conversion-strip a {
    width: max-content;
    margin-top: 10px;
  }

  .article-hero {
    padding: 130px 0 68px;
  }

  .article-kicker {
    margin-top: 45px;
  }

  .article-hero h1 {
    font-size: 43px;
  }

  .article-hero-inner > p {
    font-size: 15px;
  }

  .article-byline {
    gap: 10px;
    flex-wrap: wrap;
  }

  .article-shell {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .article-cover {
    aspect-ratio: 16 / 10;
  }

  .article-layout {
    margin-top: 52px;
  }

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

  .article-body {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-body h2 {
    margin-top: 62px;
    font-size: 27px;
  }

  .article-body h3 {
    font-size: 21px;
  }

  .article-body ul,
  .article-body ol {
    padding: 20px 19px 20px 39px;
  }

  .article-body blockquote {
    padding: 25px 22px;
    font-size: 18px;
  }

  .article-cta,
  .related-content {
    padding: 80px 0;
  }

  .related-heading h2 {
    font-size: 31px;
  }
}

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

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

/* 2026 proof-first homepage redesign */
.hero-v2 {
  min-height: auto;
  background:
    radial-gradient(circle at 78% 25%, rgba(149, 239, 0, 0.09), transparent 31%),
    linear-gradient(135deg, #080a09 0%, #101410 62%, #080a09 100%);
}

.hero-v2::before {
  top: 0;
  right: 0;
  width: 49%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-v2::after {
  top: 105px;
  right: 8%;
  width: 230px;
  height: 230px;
  border-width: 1px;
  border-color: rgba(149, 239, 0, 0.14);
}

.hero-v2-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(530px, 1.1fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
  min-height: 800px;
  padding-top: 126px;
  padding-bottom: 44px;
}

.hero-v2-copy {
  padding-top: 0;
}

.hero-v2-kicker {
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-v2-title {
  margin-top: 13px;
  font-size: clamp(58px, 5.7vw, 86px);
  letter-spacing: -0.075em;
  line-height: 1.02;
}

.hero-v2 .hero-description {
  max-width: 590px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 16px;
  line-height: 1.8;
}

.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-v2-stats > div {
  padding: 21px 17px 21px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-v2-stats > div:not(:first-child) {
  padding-left: 17px;
}

.hero-v2-stats > div:last-child {
  border-right: 0;
}

.hero-v2-stats dt {
  color: var(--lime);
  font-family: Arial Black, Impact, sans-serif;
  font-size: clamp(27px, 2.6vw, 39px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

[data-count-to] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.hero-v2-stats dt small {
  margin-left: 3px;
  font-family: inherit;
  font-size: 0.45em;
  letter-spacing: -0.03em;
}

.hero-v2-stats dd {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
  font-weight: 700;
}

.hero-v2-evidence {
  position: relative;
  padding: 20px;
  background: #191d1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 22px 26px 0 rgba(0, 0, 0, 0.28);
}

.hero-v2-evidence::before,
.hero-v2-evidence::after {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  content: "";
  pointer-events: none;
}

.hero-v2-evidence::before {
  top: 9px;
  left: 9px;
  border-top: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
}

.hero-v2-evidence::after {
  right: 9px;
  bottom: 9px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}

.evidence-topline {
  display: flex;
  justify-content: space-between;
  padding: 4px 5px 17px;
  color: #878e87;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.evidence-topline span:last-child {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--lime);
}

.evidence-topline i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(149, 239, 0, 0.1);
}

.evidence-headline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 22px 22px 20px;
  background: #0c0f0d;
  border: 1px solid rgba(149, 239, 0, 0.16);
}

.evidence-headline p,
.evidence-headline small {
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  font-weight: 700;
}

.evidence-headline strong {
  color: var(--white);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.evidence-headline strong b,
.evidence-headline strong em {
  color: var(--lime);
  font-style: normal;
}

.evidence-headline strong span {
  margin-inline: 7px;
  color: rgba(255, 255, 255, 0.26);
}

.evidence-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) 32px minmax(0, 1.24fr);
  gap: 9px;
  align-items: center;
  margin-top: 12px;
}

.evidence-compare figure {
  min-width: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.evidence-compare figcaption {
  margin-bottom: 8px;
  color: #575d57;
  font-family: "Courier New", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.evidence-compare a {
  display: grid;
  place-items: center;
  min-height: 150px;
}

.evidence-compare img {
  width: 100%;
  max-height: 175px;
  object-fit: contain;
}

.evidence-arrow {
  color: var(--lime);
  font-size: 23px;
  font-weight: 900;
  text-align: center;
}

.evidence-note {
  margin-top: 12px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.57);
  background: rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--lime);
  font-size: 13px;
  line-height: 1.65;
}

.evidence-note strong {
  color: var(--white);
}

.hero-v2-signature {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-top: 21px;
  padding-bottom: 92px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
}

.hero-v2-signature strong {
  color: var(--white);
}

.hero-v2-signature span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.proof-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 12, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 11, 0.035) 1px, transparent 1px),
    #eef0eb;
  background-size: 56px 56px;
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.proof-heading h2 {
  margin-top: 25px;
  font-size: clamp(43px, 4.7vw, 70px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.09;
}

.proof-heading h2 em,
.proof-feature h3 em,
.proof-card h3 em {
  color: #5e9900;
  font-style: normal;
}

.proof-heading > p {
  padding-bottom: 7px;
  color: #646b64;
  font-size: 14px;
  line-height: 1.8;
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  padding: 48px;
  color: var(--white);
  background: #0b0e0c;
  border: 1px solid rgba(10, 12, 11, 0.3);
  box-shadow: 18px 20px 0 rgba(10, 12, 11, 0.1);
}

.proof-label {
  color: #6d746d;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.proof-feature .proof-label,
.proof-card .proof-label {
  color: var(--lime);
}

.proof-feature h3 {
  margin-top: 22px;
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.14;
}

.proof-feature-copy > p:not(.proof-label) {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.85;
}

.proof-feature dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-feature dl > div {
  padding: 17px 14px 17px 0;
}

.proof-feature dt {
  color: var(--lime);
  font-family: Arial Black, Impact, sans-serif;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.proof-feature dd {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.proof-feature-gallery,
.proof-media-stack {
  display: grid;
  gap: 12px;
}

.proof-feature-gallery {
  align-content: center;
}

.proof-image {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(10, 12, 11, 0.14);
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, border-color 0.28s ease;
}

.proof-image:hover {
  z-index: 2;
  border-color: #5e9900;
  box-shadow: 0 15px 32px rgba(10, 12, 11, 0.12);
  transform: translateY(-3px);
}

.proof-image > span {
  font-size: 11px;
  font-weight: 850;
}

.proof-image img {
  width: 100%;
  max-height: 265px;
  object-fit: contain;
  background: #fafafa;
}

.proof-image small {
  color: #6a716a;
  font-size: 9px;
  text-align: right;
}

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

.proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 34px;
  min-width: 0;
  padding: 34px;
  background: #151916;
  border: 1px solid rgba(10, 12, 11, 0.26);
}

.proof-card h3 {
  margin-top: 15px;
  color: var(--white);
  font-size: clamp(30px, 2.6vw, 41px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.18;
}

.proof-card header > p:last-child {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.65;
}

.proof-card .proof-image img {
  max-height: 230px;
}

.proof-media-compact {
  grid-template-columns: 1fr 0.52fr;
  align-items: stretch;
}

.proof-media-compact .proof-image:last-child img {
  align-self: center;
  max-height: 125px;
}

.proof-cta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-top: 14px;
  padding: 38px 42px;
  color: var(--white);
  background: #0b0e0c;
  border-left: 8px solid var(--lime);
}

.proof-cta p {
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.55;
}

.proof-cta strong {
  color: var(--lime);
}

.proof-cta .button {
  flex: none;
}

@media (max-width: 1080px) {
  .hero-v2-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 34px;
  }

  .evidence-headline {
    grid-template-columns: 1fr auto;
  }

  .evidence-headline > p {
    display: none;
  }

  .proof-feature {
    gap: 36px;
    padding: 38px;
  }
}

@media (max-width: 920px) {
  .hero-v2::before {
    top: auto;
    right: -18%;
    bottom: 0;
    width: 100%;
    height: 48%;
  }

  .hero-v2-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 45px;
  }

  .hero-v2-copy {
    max-width: 760px;
  }

  .hero-v2-title {
    font-size: clamp(58px, 10vw, 86px);
  }

  .hero-v2-evidence {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .hero-v2-signature,
  .proof-cta {
    align-items: flex-start;
  }

  .proof-heading,
  .proof-feature {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    gap: 28px;
  }

  .proof-heading > p {
    max-width: 620px;
  }

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

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

@media (max-width: 600px) {
  .hero-v2-layout {
    gap: 42px;
    padding-top: 116px;
  }

  .hero-v2-kicker {
    margin-top: 23px;
    font-size: 15px;
  }

  .hero-v2-title {
    margin-top: 12px;
    font-size: clamp(45px, 14.4vw, 62px);
  }

  .hero-v2 .hero-description {
    font-size: 14px;
  }

  .hero-v2-stats {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-v2-stats > div,
  .hero-v2-stats > div:not(:first-child) {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-v2-stats > div:last-child {
    border-bottom: 0;
  }

  .hero-v2-stats dd {
    margin-top: 0;
  }

  .hero-v2-evidence {
    padding: 11px;
    box-shadow: 9px 12px 0 rgba(0, 0, 0, 0.28);
  }

  .evidence-topline {
    padding: 5px 3px 13px;
    font-size: 7px;
  }

  .evidence-headline {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 17px 15px;
  }

  .evidence-headline strong {
    font-size: 28px;
  }

  .evidence-headline small {
    padding: 0;
  }

  .evidence-compare {
    grid-template-columns: 1fr;
  }

  .evidence-arrow {
    transform: rotate(90deg);
  }

  .evidence-compare a {
    min-height: 118px;
  }

  .evidence-note {
    padding: 15px;
    font-size: 12px;
  }

  .hero-v2-signature {
    display: grid;
    gap: 10px;
    padding-bottom: 88px;
    font-size: 12px;
    line-height: 1.6;
  }

  .hero-ticker > div {
    gap: 22px;
    justify-content: flex-start;
    font-size: 9px;
  }

  .proof-heading {
    margin-bottom: 46px;
  }

  .proof-heading h2 {
    font-size: 43px;
  }

  .proof-feature,
  .proof-card {
    padding: 24px 18px;
  }

  .proof-feature {
    gap: 35px;
    box-shadow: 8px 10px 0 rgba(10, 12, 11, 0.1);
  }

  .proof-feature h3 {
    font-size: 37px;
  }

  .proof-feature dl {
    grid-template-columns: 1fr;
  }

  .proof-feature dl > div {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-feature dl > div:last-child {
    border-bottom: 0;
  }

  .proof-feature dd {
    margin-top: 0;
  }

  .proof-feature-gallery,
  .proof-media-compact {
    grid-template-columns: 1fr;
  }

  .proof-card {
    gap: 24px;
  }

  .proof-card h3 {
    font-size: 33px;
  }

  .proof-image {
    padding: 11px;
  }

  .proof-cta {
    display: grid;
    padding: 27px 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .growth-flow.is-visible .flow-track span::after {
    animation: none;
    opacity: 0;
  }
}
