@font-face {
  font-family: InterLocal;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: SourceSansLocal;
  src: url('../assets/fonts/source-sans-3-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: SourceSerifLocal;
  src: url('../assets/fonts/source-serif-4-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #181817;
  --bg-deep: #10100f;
  --surface: #20201e;
  --surface-2: #292927;
  --panel: #242422;
  --text: #f3f0e7;
  --muted: rgba(243, 240, 231, 0.62);
  --faint: rgba(243, 240, 231, 0.38);
  --line: rgba(243, 240, 231, 0.16);
  --line-strong: rgba(243, 240, 231, 0.31);
  --accent: #bf6a27;
  --accent-soft: rgba(191, 106, 39, 0.18);
  --ok: #e0e7d8;
  --button-bg: #eceee5;
  --button-text: #171a15;
  --noise-opacity: 0.2;
}

[data-theme='light'] {
  color-scheme: light;
  --bg: #f0eee8;
  --bg-deep: #fbfaf5;
  --surface: #e8e5dc;
  --surface-2: #ddd8cc;
  --panel: #f8f6ef;
  --text: #171a15;
  --muted: rgba(23, 26, 21, 0.62);
  --faint: rgba(23, 26, 21, 0.38);
  --line: rgba(23, 26, 21, 0.16);
  --line-strong: rgba(23, 26, 21, 0.3);
  --accent: #bb5f1f;
  --accent-soft: rgba(187, 95, 31, 0.16);
  --ok: #385640;
  --button-bg: #171a15;
  --button-text: #f0eee8;
  --noise-opacity: 0.12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: SourceSansLocal, InterLocal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: '';
}

body::before {
  opacity: var(--noise-opacity);
  background-image:
    radial-gradient(circle at 18% 24%, currentColor 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 82% 76%, currentColor 0 0.8px, transparent 0.9px);
  background-size: 9px 9px, 13px 13px;
  color: var(--text);
}

body::after {
  z-index: -4;
  background:
    radial-gradient(circle at 72% 18%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 28%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 42%, var(--bg-deep) 100%),
    var(--bg);
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  padding: 10px 14px;
}

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

.announce {
  position: relative;
  z-index: 50;
  height: 40px;
  width: 100vw;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--button-bg);
  color: var(--button-text);
}

.announce button {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  padding: 0 20px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}

.announce span,
.announce em,
.section-kicker,
.investor-copy > span,
.module-copy > span,
.module-copy > p:first-of-type,
.divider,
.footer nav > span,
.footer-contact > span,
.audience-line,
.stack-row strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announce i {
  width: 1px;
  height: 14px;
  background: currentColor;
  opacity: 0.35;
}

.announce strong {
  overflow: hidden;
  min-width: 0;
  max-width: min(58vw, 560px);
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 13px;
  font-weight: 400;
  text-overflow: ellipsis;
}

.announce em {
  font-size: 10px;
}

.nav {
  position: absolute;
  inset: 40px 0 auto 0;
  z-index: 40;
  display: flex;
  width: 100vw;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 7vw, 54px);
}

.brand,
.nav-actions,
.contact-actions,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 8px;
  color: var(--text);
}

.brand-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
  background: color-mix(in srgb, var(--bg) 18%, transparent);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.brand-glyph {
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url('../assets/lunon-mark.svg') center / contain no-repeat;
  -webkit-mask: url('../assets/lunon-mark.svg') center / contain no-repeat;
}

.brand span:last-child {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.nav-actions {
  gap: 20px;
}

.book-demo,
.contact-actions a,
.contact-form button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  background: var(--button-bg);
  color: var(--button-text);
  padding: 0 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.book-demo:hover,
.contact-actions a:hover,
.contact-form button:hover {
  transform: translateY(-1px);
}

.theme-toggle,
.menu-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--text);
}

.theme-toggle span {
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow:
    0 -7px 0 -6px currentColor,
    0 7px 0 -6px currentColor,
    7px 0 0 -6px currentColor,
    -7px 0 0 -6px currentColor,
    5px 5px 0 -6px currentColor,
    -5px -5px 0 -6px currentColor,
    5px -5px 0 -6px currentColor,
    -5px 5px 0 -6px currentColor;
}

[data-theme='light'] .theme-toggle span {
  border-radius: 50%;
  box-shadow: inset -6px -1px 0 0 var(--bg);
}

.menu-toggle {
  gap: 6px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.menu-panel {
  position: absolute;
  top: 66px;
  right: clamp(20px, 7vw, 54px);
  display: grid;
  min-width: 230px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-deep) 92%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(20px);
}

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

.menu-panel button {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--muted);
  text-align: left;
}

.menu-panel button:last-child {
  border-bottom: 0;
}

.menu-panel button:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 40px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 126px clamp(20px, 5.4vw, 54px) 88px;
  overflow: hidden;
}

.hero-copy,
.hero-object {
  position: relative;
}

.hero-copy {
  z-index: 3;
}

.hero-object {
  z-index: 2;
}

.audience-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 30px;
  color: var(--muted);
}

.audience-line b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-weight: 500;
}

.audience-line b::before {
  width: 7px;
  height: 7px;
  background: currentColor;
  content: '';
}

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

.hero h1 {
  max-width: 930px;
  font-size: clamp(56px, 7.7vw, 112px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
}

.hero-description {
  max-width: 720px;
  margin-top: 36px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 300;
  line-height: 1.35;
}

.hero-object {
  display: grid;
  min-height: 540px;
  place-items: center;
}

.loom-frame {
  position: relative;
  width: min(46vw, 584px);
  min-width: 330px;
  aspect-ratio: 1.12;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background:
    radial-gradient(circle at 72% 22%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 28%),
    linear-gradient(118deg, color-mix(in srgb, var(--surface-2) 78%, transparent), color-mix(in srgb, var(--surface) 72%, transparent));
  box-shadow:
    inset 0 0 72px color-mix(in srgb, var(--bg-deep) 68%, transparent),
    0 24px 90px color-mix(in srgb, var(--bg-deep) 62%, transparent);
  overflow: hidden;
}

.loom-grid,
.loom-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loom-grid {
  background:
    linear-gradient(90deg, transparent 0 19px, color-mix(in srgb, var(--text) 8%, transparent) 20px, transparent 21px),
    linear-gradient(transparent 0 23px, color-mix(in srgb, var(--text) 7%, transparent) 24px, transparent 25px);
  background-size: 40px 40px, 40px 40px;
  opacity: 0.62;
}

.loom-scan {
  width: 34%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--text) 13%, transparent), transparent);
  opacity: 0.44;
  transform: translateX(-115%);
  animation: loomScan 7.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.source-stack {
  position: absolute;
  top: 9%;
  left: 7%;
  z-index: 3;
  display: grid;
  width: 31%;
  gap: 8px;
}

.source-sheet {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--panel) 84%, transparent);
  padding: 10px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--bg-deep) 34%, transparent);
  animation: sheetDrift 7.2s ease-in-out infinite alternate;
  backdrop-filter: blur(12px);
}

.source-sheet::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
  background: var(--panel);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 8%, transparent);
  content: '';
  transform: translateY(-50%);
}

.source-sheet:nth-child(2) {
  margin-left: 16px;
  animation-duration: 8.4s;
}

.source-sheet:nth-child(3) {
  margin-left: 3px;
  animation-duration: 7.8s;
}

.source-sheet:nth-child(4) {
  margin-left: 22px;
  animation-duration: 8.8s;
}

.source-sheet:nth-child(5) {
  margin-left: 10px;
  animation-duration: 7.6s;
}

.source-sheet span,
.source-sheet em,
.panel-top span,
.panel-top b,
.claim-row span,
.claim-row strong,
.verified-signal b {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.source-sheet span {
  color: var(--accent);
}

.source-sheet em {
  color: var(--faint);
  letter-spacing: 0.08em;
}

.source-sheet i,
.claim-row i {
  display: block;
  height: 6px;
  background: color-mix(in srgb, var(--text) 22%, transparent);
}

.source-sheet i:nth-of-type(2) {
  width: 68%;
}

.loom-threads {
  position: absolute;
  inset: 5% 1% 1% 0;
  z-index: 2;
  width: 100%;
  height: 94%;
  fill: none;
  overflow: visible;
}

.thread {
  stroke: color-mix(in srgb, var(--text) 30%, transparent);
  stroke-dasharray: 7 13;
  stroke-linecap: square;
  stroke-width: 1;
  animation: threadFlow 5.5s linear infinite;
}

.thread-b {
  animation-duration: 6.2s;
  stroke: color-mix(in srgb, var(--accent) 40%, transparent);
}

.thread-c {
  animation-duration: 5.9s;
}

.thread-d {
  animation-duration: 7s;
  stroke: color-mix(in srgb, var(--accent) 34%, transparent);
}

.thread-e {
  animation-duration: 6.7s;
}

.thread-pulse {
  fill: var(--text);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--accent) 64%, transparent));
  opacity: 0.52;
  transform-box: fill-box;
  transform-origin: center;
  animation: nodePulse 3.8s ease-in-out infinite;
}

.pulse-b {
  animation-delay: 0.8s;
}

.pulse-c {
  animation-delay: 1.5s;
}

.pulse-d {
  animation-delay: 2.2s;
}

.verification-panel {
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: 5;
  display: grid;
  width: 44%;
  gap: 14px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  padding: 16px;
  box-shadow: 0 18px 44px color-mix(in srgb, var(--bg-deep) 36%, transparent);
  animation: panelDrift 9s ease-in-out infinite alternate;
  backdrop-filter: blur(16px);
}

.panel-top,
.claim-row,
.verified-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-top {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.panel-top span,
.claim-row span {
  color: var(--faint);
}

.panel-top b,
.claim-row strong {
  color: var(--accent);
  font-size: 9px;
  justify-self: end;
  white-space: nowrap;
}

.claim-row {
  display: grid;
  grid-template-columns: 68px minmax(42px, 1fr) max-content;
  min-width: 0;
}

.claim-row i {
  height: 6px;
  min-width: 0;
  background:
    linear-gradient(90deg, var(--text) 0 var(--w), color-mix(in srgb, var(--text) 16%, transparent) var(--w) 100%);
}

.verified-signal {
  justify-content: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.verified-signal span {
  width: 12px;
  height: 12px;
  background:
    linear-gradient(90deg, transparent 44%, var(--ok) 45% 55%, transparent 56%),
    linear-gradient(transparent 44%, var(--ok) 45% 55%, transparent 56%);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--ok) 10%, transparent);
}

.verified-signal b {
  color: var(--ok);
  white-space: nowrap;
}

.investor-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 38%),
    color-mix(in srgb, var(--bg-deep) 70%, transparent);
  padding: 28px clamp(20px, 5.4vw, 54px);
}

.investor-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.investor-copy > span {
  color: var(--faint);
}

.investor-copy p {
  max-width: 360px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
}

.investor-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 54%, transparent);
}

.logo-wordmark {
  position: relative;
  display: grid;
  min-height: 86px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: color-mix(in srgb, var(--text) 70%, transparent);
  overflow: hidden;
  padding: 16px;
  text-align: center;
  white-space: nowrap;
}

.logo-wordmark:last-child {
  border-right: 0;
}

.logo-wordmark::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--text) 26%, transparent), transparent);
  content: '';
}

.logo-wordmark.gc {
  font-family: InterLocal, SourceSansLocal, sans-serif;
  font-size: 17px;
  font-weight: 520;
  letter-spacing: -0.02em;
}

.logo-wordmark.sv {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-wordmark.deel {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.logo-wordmark.dnp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.logo-wordmark.more {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.divider {
  display: flex;
  align-items: center;
  height: 43px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-deep) 78%, transparent);
  color: var(--faint);
  padding: 0 clamp(16px, 2vw, 18px);
}

.platform-grid {
  display: grid;
  gap: 0;
  padding: clamp(82px, 10vw, 124px) clamp(16px, 2.3vw, 24px);
}

.platform-card {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
  align-items: stretch;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  margin-bottom: 28px;
  overflow: hidden;
}

.platform-card:last-child {
  margin-bottom: 0;
}

.corner {
  position: absolute;
  z-index: 5;
  width: 12px;
  height: 12px;
  border-color: var(--line-strong);
  pointer-events: none;
}

.corner-tl {
  top: 8px;
  left: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-tr {
  top: 8px;
  right: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.corner-bl {
  bottom: 8px;
  left: 8px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.corner-br {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.system-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  place-items: center;
}

.system-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 31px, color-mix(in srgb, var(--text) 5%, transparent) 32px, transparent 33px),
    linear-gradient(transparent 0 31px, color-mix(in srgb, var(--text) 4%, transparent) 32px, transparent 33px);
  background-size: 64px 64px;
  opacity: 0.42;
  content: '';
}

.system-visual svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: color-mix(in srgb, var(--text) 34%, transparent);
  stroke-width: 1;
}

.system-diagram {
  inset: 4% 5%;
  width: 90%;
  height: 92%;
  overflow: visible;
}

.diagram-route,
.diagram-pipeline path {
  fill: none;
  stroke: color-mix(in srgb, var(--text) 34%, transparent);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.diagram-accent {
  stroke: color-mix(in srgb, var(--accent) 58%, transparent);
}

.diagram-card > rect,
.diagram-agent-board > rect,
.diagram-pipeline > rect {
  fill: color-mix(in srgb, var(--panel) 90%, transparent);
  stroke: var(--line-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.diagram-port {
  fill: var(--panel);
  stroke: color-mix(in srgb, var(--accent) 78%, transparent);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.diagram-label,
.diagram-pipeline text,
.diagram-agent-board text {
  fill: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.diagram-pipeline text,
.diagram-agent-board text {
  font-family: SourceSansLocal, InterLocal, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}

.diagram-step {
  fill: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.diagram-value {
  fill: var(--text);
  font-family: SourceSansLocal, InterLocal, ui-sans-serif, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.diagram-value-small {
  font-size: 34px;
}

.diagram-bar {
  fill: color-mix(in srgb, var(--text) 36%, transparent);
}

.diagram-bar-bright {
  fill: color-mix(in srgb, var(--text) 78%, transparent);
}

.diagram-ring {
  fill: none;
  stroke: color-mix(in srgb, var(--text) 18%, transparent);
  stroke-width: 13;
}

.diagram-ring-fill {
  fill: none;
  stroke: var(--ok);
  stroke-width: 13;
}

.stack-row i {
  display: block;
  height: 8px;
  background:
    linear-gradient(90deg, var(--text) 0 var(--w), color-mix(in srgb, var(--text) 18%, transparent) var(--w) 100%);
}

.module-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 54px);
}

.module-copy > span,
.module-copy > p:first-of-type {
  color: var(--faint);
}

.module-copy > p:first-of-type {
  margin-top: auto;
  color: var(--muted);
}

.module-copy h2,
.continuous-copy h2,
.integration h2,
.contact h2 {
  margin-top: 12px;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.module-copy h2 {
  margin-bottom: 24px;
}

.module-copy > p:last-child,
.continuous-copy p,
.integration p,
.contact p,
.audiences p,
.footer p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.46;
}

.audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.audiences article {
  min-height: 310px;
  border-right: 1px solid var(--line);
  padding: clamp(28px, 4.8vw, 54px);
}

.audiences article:last-child {
  border-right: 0;
}

.audiences h3 {
  font-size: clamp(38px, 5.3vw, 62px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.audiences p {
  margin-top: 28px;
}

.continuous-analyst {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 36%),
    color-mix(in srgb, var(--surface) 72%, transparent);
  padding: clamp(72px, 10vw, 124px) clamp(20px, 7vw, 54px);
}

.continuous-copy {
  align-self: center;
}

.continuous-copy > span {
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.continuous-copy h2 {
  font-family: SourceSerifLocal, Georgia, 'Times New Roman', serif;
  font-size: clamp(58px, 6.4vw, 104px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.9;
  max-width: 900px;
  margin-top: 16px;
}

.continuous-copy h2 span {
  display: block;
}

.continuous-copy p {
  max-width: 820px;
  margin-top: 26px;
}

.inbox-flow {
  display: grid;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--panel) 82%, transparent);
}

.inbox-step {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 156px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.inbox-step:last-child {
  border-bottom: 0;
}

.inbox-step::before {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 9px;
  height: 9px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
  content: '';
}

.inbox-step span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.inbox-step strong {
  color: var(--text);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.inbox-step p {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.42;
}

.integration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(72px, 10vw, 126px) clamp(20px, 7vw, 54px);
}

.integration h2 span {
  display: block;
}

.integration p {
  max-width: 830px;
  margin-top: 28px;
}

.stack-visual {
  display: grid;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.stack-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(120px, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
}

.stack-row:last-child {
  border-bottom: 0;
}

.stack-row strong {
  color: var(--accent);
  font-size: 10px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: clamp(80px, 11vw, 138px) clamp(20px, 7vw, 54px);
}

.contact p {
  max-width: 740px;
  margin-top: 22px;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-actions a {
  min-height: 42px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  padding: clamp(18px, 2.4vw, 26px);
}

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

.contact-form label span {
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: color-mix(in srgb, var(--bg-deep) 28%, transparent);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 38%, transparent);
}

.contact-form button {
  min-height: 44px;
  justify-self: start;
  margin-top: 6px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.45fr) minmax(220px, 0.55fr);
  gap: 42px;
  padding: 44px clamp(20px, 7vw, 54px);
}

.footer .brand {
  margin-bottom: 28px;
}

.footer p {
  max-width: 490px;
  font-size: 16px;
}

.footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer nav > span,
.footer-contact > span {
  color: var(--faint);
}

.footer button,
.footer a {
  width: max-content;
  color: var(--muted);
  text-align: left;
}

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

.footer-contact p {
  margin-top: 22px;
  color: var(--faint);
  font-size: 13px;
}

@keyframes loomScan {
  0%,
  16% {
    transform: translateX(-115%);
  }
  68%,
  100% {
    transform: translateX(320%);
  }
}

@keyframes sheetDrift {
  from {
    transform: translate3d(0, -1px, 0);
  }
  to {
    transform: translate3d(0, 1px, 0);
  }
}

@keyframes panelDrift {
  from {
    transform: translate3d(0, 1px, 0);
  }
  to {
    transform: translate3d(0, -1px, 0);
  }
}

@keyframes threadFlow {
  to {
    stroke-dashoffset: -40;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.85);
  }
  45%,
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .platform-card,
  .continuous-analyst,
  .integration,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .investor-band {
    grid-template-columns: 1fr;
  }

  .investor-copy p {
    max-width: 620px;
  }

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

  .logo-wordmark:nth-child(3) {
    border-right: 0;
  }

  .logo-wordmark:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .loom-frame {
    width: min(44vw, 440px);
    min-width: 280px;
  }

  .panel-top span,
  .panel-top b,
  .claim-row span,
  .claim-row strong,
  .verified-signal b {
    font-size: 8px;
  }

  .verification-panel {
    right: 3%;
    width: 52%;
    gap: 10px;
    padding: 12px;
  }

  .claim-row {
    grid-template-columns: 48px minmax(28px, 1fr) max-content;
    gap: 8px;
  }

  .system-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .audiences article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .continuous-copy p {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .announce button {
    justify-content: flex-start;
    overflow: hidden;
  }

  .announce strong {
    max-width: calc(100vw - 126px);
  }

  .nav {
    padding-inline: 18px;
  }

  .nav-actions {
    position: fixed;
    top: 58px;
    right: 18px;
    z-index: 80;
  }

  .book-demo {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100vw;
    min-height: auto;
    padding: 112px 18px 54px;
  }

  .hero-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-object {
    min-height: 390px;
    place-items: start center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 46px);
    letter-spacing: -0.062em;
    line-height: 0.96;
  }

  .hero-description {
    margin-top: 26px;
    max-width: calc(100vw - 36px);
    font-size: 16px;
  }

  .loom-frame {
    width: min(82vw, 420px);
    min-width: 280px;
    aspect-ratio: 1 / 1.16;
  }

  .source-stack {
    left: 5%;
    width: 38%;
    gap: 5px;
  }

  .source-sheet {
    gap: 4px;
    padding: 7px;
  }

  .source-sheet i {
    height: 5px;
  }

  .source-sheet span,
  .source-sheet em,
  .panel-top span,
  .panel-top b,
  .claim-row span,
  .claim-row strong,
  .verified-signal b {
    font-size: 8px;
  }

  .verification-panel {
    top: 20%;
    right: 3%;
    width: 47%;
    gap: 10px;
    padding: 12px;
  }

  .claim-row {
    grid-template-columns: 42px minmax(26px, 1fr) max-content;
    gap: 8px;
  }

  .investor-band {
    padding: 24px 18px;
  }

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

  .logo-wordmark,
  .logo-wordmark:nth-child(3) {
    min-height: 74px;
    border-right: 1px solid var(--line);
  }

  .logo-wordmark:nth-child(even),
  .logo-wordmark:last-child {
    border-right: 0;
  }

  .logo-wordmark:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .logo-wordmark.more {
    grid-column: 1 / -1;
  }

  .platform-grid {
    padding-inline: 14px;
  }

  .platform-card {
    min-height: auto;
  }

  .system-visual {
    min-height: 430px;
  }

  .stack-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 106px;
    padding-block: 16px;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    font-size: 22px;
  }

  .nav-actions {
    gap: 12px;
  }

  .audience-line {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 40px);
  }

  .logo-wordmark.gc,
  .logo-wordmark.sv {
    font-size: 14px;
  }

  .logo-wordmark.deel {
    font-size: 21px;
  }

  .module-copy {
    padding: 28px 20px;
  }

  .module-copy h2,
  .continuous-copy h2,
  .integration h2,
  .contact h2 {
    font-size: 44px;
  }

  .continuous-analyst {
    padding: 56px 18px;
  }

  .inbox-step {
    min-height: 138px;
    padding: 20px;
  }
}

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