:root {
  --bg: #121509;
  --surface: #1a1d11;
  --surface-2: #1e2115;
  --surface-3: #282b1f;
  --ink: #e2e4d1;
  --muted: #c4c9ae;
  --soft: rgba(226, 228, 209, 0.58);
  --line: #444934;
  --primary: #c2ee31;
  --primary-dim: #abd60d;
  --on-primary: #161e00;
  --max: 1440px;
  --page: clamp(20px, 5vw, 64px);
  --section: clamp(76px, 8vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  label,
  [role="button"] {
    cursor: none;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

.custom-cursor {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 999;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--cursor-x, -40px), var(--cursor-y, -40px), 0);
  transition: opacity 180ms ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor-trail,
.custom-cursor-dot,
.custom-cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
}

.custom-cursor-trail,
.custom-cursor-dot,
.custom-cursor-ring {
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor-trail {
  width: 46px;
  height: 46px;
  background: radial-gradient(circle, rgba(194, 238, 49, 0.22), rgba(194, 238, 49, 0) 68%);
  filter: blur(2px);
  opacity: 0.72;
  transform: translate(calc(var(--cursor-trail-x, -40px) - var(--cursor-x, -40px) - 50%), calc(var(--cursor-trail-y, -40px) - var(--cursor-y, -40px) - 50%));
  transition: opacity 160ms ease;
}

.custom-cursor.is-active .custom-cursor-trail {
  opacity: 0.34;
}

.custom-cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(194, 238, 49, 0.88);
}

.custom-cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(194, 238, 49, 0.72);
  box-shadow: inset 0 0 18px rgba(194, 238, 49, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.custom-cursor.is-active .custom-cursor-ring {
  background: rgba(194, 238, 49, 0.1);
  border-color: var(--primary);
  transform: translate(-50%, -50%) scale(1.55);
}

.custom-cursor.is-active .custom-cursor-dot {
  background: var(--on-primary);
}

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at center, rgba(194, 238, 49, 0.18), transparent 34%),
    linear-gradient(135deg, #121509, #1a1d11 48%, #0d1007);
  text-align: center;
  transition: opacity 640ms ease, visibility 640ms ease;
}

.page-intro.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-intro.is-exiting .page-intro-mark {
  border-color: transparent;
  box-shadow: none;
  animation: none;
}

.page-intro.is-exiting .page-intro-mark::before,
.page-intro.is-exiting .page-intro-mark::after {
  opacity: 0;
}

.page-intro-mark {
  position: relative;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(194, 238, 49, 0.56);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(194, 238, 49, 0.26),
    0 0 70px rgba(194, 238, 49, 0.18),
    inset 0 0 22px rgba(194, 238, 49, 0.08);
  animation: intro-mark 1.8s ease-in-out infinite;
}

.page-intro-mark::before,
.page-intro-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(194, 238, 49, 0.18);
  border-radius: inherit;
}

.page-intro-mark::after {
  inset: -11px;
  opacity: 0.42;
  animation: intro-ring 1.8s ease-out infinite;
}

.page-intro-mark span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e8ff72;
  box-shadow:
    0 0 12px rgba(232, 255, 114, 1),
    0 0 28px rgba(194, 238, 49, 0.92),
    0 0 54px rgba(194, 238, 49, 0.5);
  transform: translate(-50%, -50%) rotate(calc(var(--intro-dot) * 120deg)) translateY(-35px);
}

.page-intro-mark span:nth-child(1) {
  --intro-dot: 0;
}

.page-intro.is-exiting .page-intro-mark span:nth-child(1) {
  animation: intro-scatter-one 920ms cubic-bezier(0.16, 0.7, 0.2, 1) forwards;
}

.page-intro-mark span:nth-child(2) {
  --intro-dot: 1;
}

.page-intro.is-exiting .page-intro-mark span:nth-child(2) {
  animation: intro-scatter-two 920ms cubic-bezier(0.16, 0.7, 0.2, 1) forwards;
}

.page-intro-mark span:nth-child(3) {
  --intro-dot: 2;
}

.page-intro.is-exiting .page-intro-mark span:nth-child(3) {
  animation: intro-scatter-three 920ms cubic-bezier(0.16, 0.7, 0.2, 1) forwards;
}

.page-intro.is-exiting p,
.page-intro.is-exiting strong {
  animation: intro-copy-exit 620ms ease forwards;
}

.page-intro p {
  margin: 12px 0 0;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: intro-copy 720ms ease 980ms forwards;
}

.page-intro strong {
  display: block;
  max-width: 560px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(18px);
  animation: intro-copy 780ms ease 1120ms forwards;
}

@keyframes intro-mark {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(120deg);
  }
}

@keyframes intro-ring {
  0% {
    opacity: 0.52;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes intro-mark-exit {
  to {
    transform: scale(1.1);
  }
}

@keyframes intro-scatter-one {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) translateY(-35px) scale(1);
  }

  62% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) translate(44vw, -38vh) scale(0.2);
  }
}

@keyframes intro-scatter-two {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(120deg) translateY(-35px) scale(1);
  }

  62% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) translate(-44vw, -30vh) scale(0.2);
  }
}

@keyframes intro-scatter-three {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(240deg) translateY(-35px) scale(1);
  }

  62% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) translate(8vw, 42vh) scale(0.2);
  }
}

@keyframes intro-copy-exit {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes intro-copy {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding-inline: var(--page);
  border-bottom: 0.5px solid transparent;
  background: rgba(18, 21, 9, 0.72);
  backdrop-filter: blur(18px);
  left: 0;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(18, 21, 9, 0.94);
}

.brand img {
  width: clamp(150px, 15vw, 230px);
  max-height: 72px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-left: auto;
  margin-right: clamp(18px, 2.2vw, 34px);
}

.header-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--muted);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease;
}

.header-nav a::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

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

.menu-button,
.menu-close {
  border: 0.5px solid var(--line);
  border-radius: 0;
  color: var(--on-primary);
  background: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease;
}

.menu-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
}

.menu-button:hover,
.menu-close:hover {
  opacity: 0.86;
}

.menu-button i {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--on-primary);
  animation: menu-dot-blink 1.6s ease-in-out infinite;
}

.menu-button i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.45);
  animation: menu-dot-ring 1.6s ease-out infinite;
}

@keyframes menu-dot-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}

@keyframes menu-dot-ring {
  0% {
    opacity: 0.38;
    transform: scale(0.45);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-button i,
  .menu-button i::after,
  .page-intro-mark,
  .page-intro-mark::after,
  .page-intro p,
  .page-intro strong {
    animation: none;
  }
}

.menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: grid;
  width: min(440px, 100%);
  gap: 32px;
  padding: 96px 30px 34px;
  color: var(--ink);
  background: var(--bg);
  border-left: 0.5px solid var(--line);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.44);
  transform: translateX(100%);
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-panel.is-open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 26px;
  right: 30px;
  padding: 12px 18px;
}

.menu-panel nav {
  display: grid;
  align-content: center;
  gap: 12px;
}

.menu-panel nav a {
  width: fit-content;
  color: var(--ink);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

.menu-panel nav a:hover {
  color: var(--primary);
}

.menu-contact {
  align-self: end;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.menu-contact p,
.menu-contact a {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.menu-contact .menu-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  padding: 14px 26px;
  border: 0.5px solid var(--primary);
  background: var(--primary);
  color: var(--on-primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 200ms ease;
}

.menu-contact .menu-cta:hover {
  background: #d6ff45;
}

.hero,
.section,
.contact-actions {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-primary {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(26px, 3vw, 38px);
  padding-right: clamp(64px, 6vw, 84px);
  border: 0.5px solid var(--primary);
  background: var(--primary);
  color: var(--on-primary);
  transition: background 240ms ease;
}

.contact-primary:hover {
  background: #d6ff45;
}

.contact-primary-label {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.contact-primary-note {
  color: rgba(22, 30, 0, 0.68);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-primary i {
  position: absolute;
  top: clamp(26px, 3vw, 38px);
  right: clamp(26px, 3vw, 38px);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(22, 30, 0, 0.34);
}

.contact-primary i::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(-70%, -30%) rotate(-45deg);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.contact-primary:hover i::after {
  transform: translate(-40%, -60%) rotate(-45deg);
}

.contact-alt {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 2.8vw, 34px);
  border: 0.5px solid var(--line);
  background: rgba(18, 21, 9, 0.34);
  transition: border-color 240ms ease;
}

.contact-alt:hover {
  border-color: rgba(194, 238, 49, 0.34);
}

.contact-alt-label {
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-alt a {
  width: fit-content;
  max-width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(194, 238, 49, 0.42);
  color: var(--ink);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-alt a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.contact-alt p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  max-width: var(--max);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
  padding: 112px var(--page) 70px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: -25% -12% auto;
  z-index: 0;
  height: 130%;
  background:
    radial-gradient(38% 44% at 74% 32%, rgba(194, 238, 49, 0.17), transparent 68%),
    radial-gradient(32% 38% at 24% 74%, rgba(126, 255, 229, 0.09), transparent 70%);
  animation: heroAura 18s ease-in-out infinite alternate;
  pointer-events: none;
  content: "";
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(38px, 4.9vw, 72px);
}

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

.hero-visual {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  contain: paint;
  border: 0.5px solid var(--line);
  background: var(--surface-2);
}

.hero-frame::before {
  position: absolute;
  inset: -42%;
  background: conic-gradient(from 210deg, transparent, rgba(194, 238, 49, 0.24), transparent 42%, rgba(126, 255, 229, 0.16), transparent 74%);
  animation: rotateGlow 15s linear infinite;
  content: "";
}

.hero-frame > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) contrast(1.1) saturate(0.8);
  opacity: 0.86;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(148deg, rgba(194, 238, 49, 0.2), transparent 48%),
    linear-gradient(0deg, rgba(18, 21, 9, 0.76), rgba(18, 21, 9, 0.04) 62%);
  pointer-events: none;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    repeating-linear-gradient(90deg, rgba(226, 228, 209, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(226, 228, 209, 0.06) 0 1px, transparent 1px 44px);
  -webkit-mask-image: radial-gradient(72% 72% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(72% 72% at 50% 50%, #000, transparent);
  pointer-events: none;
}

.hero-scan {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 20%;
  background: linear-gradient(180deg, transparent, rgba(194, 238, 49, 0.14) 58%, rgba(194, 238, 49, 0.55) 94%, transparent);
  animation: heroScan 5.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  pointer-events: none;
  content: "";
}

.hero-nodes {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-nodes i {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(194, 238, 49, 0.9);
  animation: heroNode 3s ease-in-out infinite;
  animation-delay: var(--d);
}

.hero-nodes i::after {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(194, 238, 49, 0.55);
  border-radius: 50%;
  animation: heroPing 3s ease-out infinite;
  animation-delay: var(--d);
  content: "";
}

.hero-corner {
  position: absolute;
  z-index: 6;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(194, 238, 49, 0.62);
  pointer-events: none;
}

.hero-corner.tl {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.hero-corner.tr {
  top: 12px;
  right: 12px;
  border-bottom: 0;
  border-left: 0;
}

.hero-corner.bl {
  bottom: 12px;
  left: 12px;
  border-top: 0;
  border-right: 0;
}

.hero-corner.br {
  bottom: 12px;
  right: 12px;
  border-top: 0;
  border-left: 0;
}

.hero-badge {
  position: absolute;
  z-index: 6;
  right: 26px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 0.5px solid rgba(194, 238, 49, 0.4);
  background: rgba(18, 21, 9, 0.72);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: heroNode 1.8s ease-in-out infinite;
}

.hero-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0.5px solid var(--line);
  background: rgba(18, 21, 9, 0.4);
}

.hero-readout div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 0.5px solid var(--line);
}

.hero-readout div:last-child {
  border-right: 0;
}

.hero-readout span {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-readout strong {
  color: var(--primary);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1;
}

@keyframes heroAura {
  to {
    transform: translate3d(-4%, 3%, 0) scale(1.12);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1.07);
  }
}

@keyframes heroScan {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  12%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(500%);
  }
}

@keyframes heroNode {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.7);
  }

  45% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes heroPing {
  0% {
    opacity: 0.65;
    transform: scale(0.5);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.eyebrow,
.section-label,
.section-count,
.copyright {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--primary);
}

.section > .section-label,
.contact-section .section-label {
  display: block;
  margin-bottom: clamp(24px, 3vw, 38px);
}

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

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin: 28px 0 34px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.14;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
}

h4 {
  margin-bottom: 16px;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-sub {
  max-width: 720px;
  margin-bottom: 44px;
  color: var(--muted);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.primary-cta,
.secondary-cta {
  border-bottom: 2px solid var(--primary-dim);
  padding-bottom: 4px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-cta:hover,
.secondary-cta:hover {
  color: var(--primary);
}

.statement-strip {
  position: relative;
  border-block: 0.5px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(64% 130% at 50% 50%, rgba(194, 238, 49, 0.06), transparent 72%),
    var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker-lane {
  --tick-gap: clamp(20px, 2.6vw, 40px);
  display: flex;
  width: max-content;
}

.ticker-lane.is-tech {
  padding: clamp(20px, 2.2vw, 30px) 0;
  animation: tickerReverse 38s linear infinite;
}

.statement-strip:hover .ticker-lane {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: var(--tick-gap);
  padding-right: var(--tick-gap);
  white-space: nowrap;
}

.ticker-group span::after {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(194, 238, 49, 0.55);
  transform: rotate(45deg);
  content: "";
}

.is-tech .ticker-group span {
  color: rgba(226, 228, 209, 0.5);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.is-tech .ticker-group span::after {
  width: 4px;
  height: 4px;
  box-shadow: none;
  opacity: 0.7;
}

.section {
  padding: var(--section) var(--page);
  scroll-margin-top: 88px;
  border-top: 0.5px solid var(--line);
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-count {
  color: rgba(226, 228, 209, 0.4);
}

.section-head,
.story-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
}

.section-head {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head p,
.story-grid p,
.contact-section p {
  font-size: clamp(17px, 1.4vw, 20px);
}

.study-link {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(194, 238, 49, 0.42);
  text-underline-offset: 4px;
}

.study-link:hover {
  color: var(--ink);
  text-decoration-color: var(--primary);
}

.trust-stats strong {
  display: block;
  color: var(--primary);
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.trust-stats em {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-stats span {
  display: block;
  margin-top: auto;
  padding-top: clamp(20px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.bucket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0.5px solid var(--line);
}

.bucket {
  --bucket-pad: clamp(26px, 3.4vw, 48px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: var(--bucket-pad);
  border-right: 0.5px solid var(--line);
}

.bucket:last-child {
  border-right: 0;
}

.bucket-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  padding-bottom: clamp(24px, 3vw, 38px);
}

.bucket-num {
  color: var(--primary);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
}

.bucket-head h3 {
  /* two-line floor keeps both column headers on the same baseline */
  min-height: 2.2em;
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.1;
}

.bucket-lede {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.bucket-domains {
  display: grid;
  align-content: start;
  flex: 1 1 auto;
  border-top: 0.5px solid var(--line);
}

.bucket-domains article {
  position: relative;
  padding: clamp(18px, 2.1vw, 26px) 16px;
  margin-inline: -16px;
  border-bottom: 0.5px solid rgba(226, 228, 209, 0.1);
  transition: background 260ms ease;
}

.bucket-domains article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.bucket-domains article:hover {
  background: rgba(194, 238, 49, 0.045);
}

.bucket-domains article:hover::before {
  transform: scaleY(1);
}

.bucket-domains article:last-child {
  border-bottom: 0;
}

.bucket-domains h4 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.2;
  transition: color 240ms ease;
}

.bucket-domains article:hover h4 {
  color: var(--primary);
}

.bucket-domains h4 span {
  flex: 0 0 auto;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.bucket-domains ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.bucket-domains li,
.w-study-body li {
  position: relative;
  padding-left: 19px;
}

.bucket-domains li::before,
.w-study-body li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary);
  content: "+";
}

.bucket-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 0.5px solid var(--line);
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.bucket-cta i {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0.5px solid var(--line);
  transition: border-color 220ms ease, background 220ms ease;
}

.bucket-cta i::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(-65%, -50%) rotate(45deg);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.bucket-cta:hover {
  color: var(--primary);
}

.bucket-cta:hover i {
  border-color: var(--primary);
  background: rgba(194, 238, 49, 0.12);
}

.bucket-cta:hover i::after {
  transform: translate(-20%, -50%) rotate(45deg);
}

.bucket-domains b,
.w-study-body b {
  color: var(--ink);
  font-weight: 600;
}

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

.why-grid article {
  min-height: 280px;
  padding: clamp(26px, 3vw, 42px);
  border: 0.5px solid var(--line);
  border-left: 0;
}

.why-grid article:first-child {
  border-left: 0.5px solid var(--line);
}

.why-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 34px);
  border-bottom: 0.5px solid var(--line);
}

.work-filter {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 0.5px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.work-filter:hover {
  color: var(--ink);
  border-color: var(--primary-dim);
}

.work-filter[aria-pressed="true"] {
  border-color: var(--primary);
  color: var(--on-primary);
  background: var(--primary);
}

.work-filter b {
  opacity: 0.62;
}

.work-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: var(--soft);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-active-tag[hidden] {
  display: none;
}

.work-active-tag em {
  color: var(--primary);
  font-style: normal;
}

.work-active-tag button {
  padding: 8px 14px;
  border: 0.5px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}

.work-active-tag button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.w-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(18px, 2vw, 26px);
  border: 0.5px solid var(--line);
  transition: background 240ms ease, border-color 240ms ease;
}

.w-card[hidden] {
  display: none;
}

.w-card:hover {
  border-color: rgba(194, 238, 49, 0.34);
  background: var(--surface);
}

.w-media {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  contain: paint;
  border: 0.5px solid rgba(68, 73, 52, 0.72);
  background: var(--surface-2);
}

.w-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.58) contrast(1.08);
  opacity: 0.82;
  transform: scale(1.03);
  transition: filter 700ms ease, opacity 700ms ease, transform 700ms ease;
}

.w-card:hover .w-media img {
  filter: grayscale(0) contrast(1.08);
  opacity: 1;
  transform: scale(1.08);
}

.w-tech {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 10px;
  padding: 6px 11px;
  border: 0.5px solid rgba(194, 238, 49, 0.34);
  background: rgba(18, 21, 9, 0.78);
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 240ms ease, background 240ms ease;
}

.w-card:hover .w-tech {
  border-color: var(--primary);
  background: rgba(18, 21, 9, 0.9);
}

.work-note {
  max-width: 760px;
  margin: clamp(34px, 4vw, 48px) auto 0;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 0.5px solid var(--line);
  color: var(--soft);
  font-size: 15px;
  text-align: center;
}

.work-note a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(194, 238, 49, 0.42);
  text-underline-offset: 4px;
}

.work-note a:hover {
  text-decoration-color: var(--primary);
}

.w-body {
  display: grid;
  gap: 14px;
}

.w-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.w-top .w-practice {
  color: rgba(226, 228, 209, 0.42);
  text-align: right;
}

.w-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
}

.w-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.w-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.w-tag {
  padding: 7px 12px;
  border: 0.5px solid var(--line);
  color: var(--soft);
  background: transparent;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.w-tag:hover {
  border-color: var(--primary-dim);
  color: var(--primary);
}

.w-tag.is-active {
  border-color: var(--primary);
  color: var(--on-primary);
  background: var(--primary);
}

.w-study {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(226, 228, 209, 0.12);
}

.w-study summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.w-study summary::after {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 0.5px solid rgba(194, 238, 49, 0.5);
  content: "+";
}

.w-study[open] summary::after {
  content: "\2212";
}

.w-study summary:hover {
  color: var(--ink);
}

.w-study-body {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.w-study-body strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.w-study-body ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.w-study-body li::before {
  color: var(--primary);
  content: "+ ";
}

.w-study-body p {
  margin: 10px 0 0;
  font-size: 14px;
}

.w-quote {
  color: var(--ink);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(16px, 1.3vw, 19px);
  font-style: italic;
  line-height: 1.38;
}

.work-empty {
  margin: 44px 0 0;
  text-align: center;
}

.work-empty[hidden] {
  display: none;
}

.work-empty button {
  border: 0;
  padding: 0;
  color: var(--primary);
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.steps-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 64px;
}

.steps-grid::before {
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, rgba(194, 238, 49, 0), rgba(194, 238, 49, 0.96), rgba(194, 238, 49, 0));
  box-shadow: 0 0 22px rgba(194, 238, 49, 0.38);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  z-index: 0;
}

.steps-grid.is-connected::before {
  opacity: 1;
  transform: scaleX(1);
}

.steps-grid article {
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.steps-grid span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 28px;
  border: 0.5px solid var(--line);
  background: var(--bg);
  box-shadow: 0 0 0 rgba(194, 238, 49, 0);
  transition: border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
}

.steps-grid.is-connected article span {
  border-color: rgba(194, 238, 49, 0.82);
  background: var(--bg);
  box-shadow: 0 0 26px rgba(194, 238, 49, 0.46);
  animation: stepGlow 2.2s ease-in-out infinite;
}

.agency-section {
  background: var(--surface);
}

.mini-grid {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border: 0.5px solid var(--line);
}

.mini-grid article {
  padding: 20px;
  border-bottom: 0.5px solid var(--line);
}

.mini-grid article:last-child {
  border-bottom: 0;
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.trust-section {
  background: var(--surface-2);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 78px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid var(--line);
}

.trust-stats article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 34px);
  border: 0.5px solid rgba(68, 73, 52, 0.82);
  background: rgba(18, 21, 9, 0.34);
  transition: border-color 260ms ease, background 260ms ease;
}

.trust-stats article:hover {
  border-color: rgba(194, 238, 49, 0.32);
  background: rgba(18, 21, 9, 0.58);
}

.trust-stats strong {
  max-width: 100%;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1;
  overflow-wrap: normal;
}

.brand-showcase {
  margin: 0 0 78px;
  padding: clamp(30px, 4vw, 54px) 0;
  overflow: hidden;
  border-block: 0.5px solid rgba(226, 228, 209, 0.12);
  background: rgba(18, 21, 9, 0.34);
}

.brand-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  margin: 0 auto clamp(26px, 3vw, 38px);
  padding-inline: var(--page);
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-label::before,
.brand-label::after {
  flex: 1 1 auto;
  max-width: 110px;
  height: 1px;
  content: "";
}

.brand-label::before {
  background: linear-gradient(90deg, transparent, var(--line));
}

.brand-label::after {
  background: linear-gradient(90deg, var(--line), transparent);
}

.brand-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding-block: 10px;
  animation: brand-slide 28s linear infinite;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo {
  flex: 0 0 auto;
  color: #f3f4ed;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(17px, 1.85vw, 27px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 0 14px rgba(226, 228, 209, 0.08));
}

.brand-logo.logo-script {
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  font-weight: 800;
  text-transform: none;
}

.brand-logo.logo-stripe::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 13px;
  margin-right: 9px;
  background: repeating-linear-gradient(0deg, #f3f4ed 0 4px, transparent 4px 8px);
  vertical-align: -2px;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 0.5px solid var(--line);
}

.testimonial-grid p {
  color: var(--muted);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(23px, 2vw, 32px);
  font-style: italic;
  line-height: 1.3;
}

.testimonial-grid cite {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  align-items: start;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: var(--section) var(--page) 0;
  border-top: 0.5px solid var(--line);
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(0, 0.62fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 76px);
  padding-bottom: clamp(42px, 5vw, 66px);
}

.footer-brand img {
  width: min(270px, 64vw);
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-heading {
  margin-bottom: 5px;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color 200ms ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 2.6vw, 30px) 0 clamp(30px, 3.4vw, 44px);
  border-top: 0.5px solid var(--line);
}

.copyright {
  color: rgba(226, 228, 209, 0.5);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0.5px solid var(--line);
  color: var(--muted);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--on-primary);
  background: var(--primary);
}

.footer-social svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-watermark {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
  user-select: none;
  pointer-events: none;
}

.footer-watermark text {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 122px;
  font-weight: 500;
}

.sector-strip {
  position: relative;
  overflow: hidden;
  border-block: 0.5px solid var(--line);
  background:
    radial-gradient(70% 150% at 50% 50%, rgba(194, 238, 49, 0.055), transparent 74%),
    var(--surface);
}

.sector-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page);
}

.sector-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding-right: clamp(20px, 3vw, 44px);
  border-right: 0.5px solid var(--line);
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sector-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(194, 238, 49, 0.75);
  animation: heroNode 2.2s ease-in-out infinite;
}

.sector-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
}

.sector-flow {
  display: flex;
  width: max-content;
  padding: clamp(22px, 2.6vw, 34px) 0;
  animation: sectorFlow 42s linear infinite;
}

.sector-strip:hover .sector-flow {
  animation-play-state: paused;
}

.sector-group {
  counter-reset: sector;
  white-space: nowrap;
}

.sector-group span {
  counter-increment: sector;
  color: var(--ink);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.sector-group span::before {
  margin-right: 11px;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  vertical-align: 0.85em;
  content: counter(sector, decimal-leading-zero);
}

.sector-group span::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-inline: clamp(24px, 2.8vw, 44px);
  background: var(--primary);
  box-shadow: 0 0 12px rgba(194, 238, 49, 0.5);
  transform: rotate(45deg);
  vertical-align: 0.3em;
  content: "";
}

@keyframes sectorFlow {
  to {
    transform: translateX(-33.333%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes tickerReverse {
  from {
    transform: translateX(-33.333%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes brand-slide {
  to {
    transform: translateX(-50%);
  }
}

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

@keyframes stepGlow {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(194, 238, 49, 0.28);
  }

  50% {
    box-shadow: 0 0 30px rgba(194, 238, 49, 0.64);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scan,
  .hero-nodes i::after {
    display: none;
  }

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(38px, 6vw, 56px);
    padding-top: 128px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .section-head,
  .story-grid,
  .contact-section,
  .footer-main,
  .bucket-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats,
  .testimonial-grid,
  .work-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bucket {
    border-right: 0;
    border-bottom: 0.5px solid var(--line);
  }

  .bucket:last-child {
    border-bottom: 0;
  }

  .bucket-head h3 {
    min-height: 0;
  }

  .why-grid article,
  .why-grid article:first-child {
    border: 0.5px solid var(--line);
    margin: -0.5px 0 0 -0.5px;
  }

  .brand-track {
    gap: 42px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: 18px;
    --section: 64px;
  }

  body {
    min-width: 0;
  }

  .site-header {
    height: 72px;
    padding-inline: var(--page);
  }

  .brand img {
    width: clamp(138px, 46vw, 170px);
  }

  .menu-button {
    min-height: 40px;
    gap: 9px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  h1,
  .hero h1 {
    margin: 22px 0 24px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.06;
  }

  .hero-frame {
    aspect-ratio: 16 / 10;
  }

  .hero-corner {
    width: 18px;
    height: 18px;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .hero-readout div {
    padding: 14px 12px;
  }

  .hero-readout span {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  h3 {
    font-size: clamp(23px, 7vw, 30px);
  }

  p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-sub {
    margin-bottom: 34px;
    font-size: 21px;
  }

  .hero-actions {
    display: grid;
    gap: 18px;
  }

  .primary-cta,
  .secondary-cta {
    width: fit-content;
  }

  .menu-panel {
    width: min(360px, 92%);
    padding: 88px 24px 30px;
  }

  .menu-close {
    right: 24px;
  }

  .menu-panel nav a {
    font-size: clamp(30px, 12vw, 42px);
  }

  .section-top {
    display: grid;
    gap: 10px;
    margin-bottom: 34px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .ticker-lane {
    --tick-gap: 18px;
  }

  .ticker-lane.is-tech {
    padding-block: 18px;
    animation-duration: 27s;
  }

  .is-tech .ticker-group span {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .ticker-group span::after {
    width: 5px;
    height: 5px;
  }

  .trust-stats,
  .testimonial-grid,
  .work-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .bucket-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bucket-domains article {
    padding-inline: 12px;
    margin-inline: -12px;
  }

  .bucket-cta {
    font-size: 11px;
  }

  .bucket-cta i {
    width: 34px;
    height: 34px;
  }

  .bucket-domains ul,
  .w-study-body ul {
    font-size: 14px;
  }

  .brand-showcase {
    margin-bottom: 56px;
    padding-block: 30px;
  }

  .brand-track {
    gap: 34px;
    animation-duration: 22s;
  }

  .sector-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .sector-label {
    padding: 18px 0 0;
    border-right: 0;
  }

  .sector-marquee {
    width: 100%;
  }

  .sector-flow {
    padding: 14px 0 20px;
    animation-duration: 30s;
  }

  .sector-group span {
    font-size: 21px;
  }

  .sector-group span::after {
    margin-inline: 20px;
  }

  .brand-logo {
    font-size: 17px;
  }

  .brand-logo.logo-stripe::before {
    width: 34px;
    height: 12px;
  }

  .steps-grid span {
    margin-bottom: 14px;
  }

  .steps-grid {
    margin-top: 42px;
    gap: 42px;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid.is-connected::before {
    display: none;
  }

  .steps-grid article {
    max-width: 360px;
    margin-inline: auto;
    padding-inline: 0;
  }

  .steps-grid span {
    margin-bottom: 18px;
  }

  .trust-stats {
    gap: 12px;
    margin-bottom: 48px;
    padding-bottom: 42px;
  }

  .trust-stats article {
    padding: 20px;
  }

  .testimonial-grid {
    gap: 26px;
  }

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

  .footer-brand img {
    width: min(210px, 62vw);
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 430px) {
  :root {
    --page: 16px;
  }

  .page-intro strong {
    font-size: 30px;
  }

  .page-intro-mark {
    width: 78px;
    height: 78px;
  }

  .page-intro-mark span {
    transform: translate(-50%, -50%) rotate(calc(var(--intro-dot) * 120deg)) translateY(-29px);
  }

  .menu-button {
    padding-inline: 12px;
  }

  .menu-button i {
    width: 6px;
    height: 6px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 42px);
  }

  .hero-sub {
    font-size: 19px;
  }

  .brand-track {
    gap: 28px;
  }

  .brand-logo {
    font-size: 16px;
  }

  .trust-stats strong {
    font-size: 40px;
  }
}

/* Touch devices: enlarge hit areas without changing the visual design.
   Extra height is added above the text, so underlines and borders stay put. */
@media (pointer: coarse) {
  .primary-cta,
  .secondary-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: flex-end;
  }

  .header-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .w-tag {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
  }

  .w-study summary {
    min-height: 44px;
  }

  .footer-col a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-col {
    gap: 4px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
  }

  .work-active-tag button {
    min-height: 40px;
  }

  .study-link,
  .work-note a,
  .contact-alt a {
    display: inline-flex;
    min-height: 40px;
    align-items: flex-end;
  }
}
