:root {
  color-scheme: dark;
  --bg: #070709;
  --bg-deep: #030304;
  --surface: #0c0c0f;
  --surface-2: #101014;
  --surface-3: #151519;
  --panel: rgba(13, 13, 16, 0.94);
  --text: #f5f3f4;
  --text-soft: #d2cdd0;
  --muted: #989095;
  --faint: #6b6468;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --red: #e6002d;
  --red-bright: #ff3855;
  --red-soft: rgba(230, 0, 45, 0.1);
  --red-line: rgba(230, 0, 45, 0.34);
  --red-glow: rgba(230, 0, 45, 0.18);
  --green: #65dfa3;
  --shell: 1280px;
  --header-height: 74px;
  --radius: 10px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --sans: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  background: var(--bg-deep);
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 90% 2%, rgba(176, 0, 32, 0.18), transparent 32rem),
    radial-gradient(circle at -4% 44%, rgba(120, 0, 23, 0.09), transparent 34rem),
    linear-gradient(180deg, #09090b 0%, var(--bg) 28%, #050506 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 4%, var(--red) 23%, var(--red-bright) 50%, var(--red) 77%, transparent 96%);
  box-shadow: 0 0 16px var(--red-glow);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  opacity: 0.018;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255, 255, 255, 0.6) 4px);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
a,
button,
small,
span {
  overflow-wrap: break-word;
}

::selection {
  background: rgba(230, 0, 45, 0.38);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: #060607;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #060607;
  border-radius: 999px;
  background: #3e2027;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b1d2e;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: #09090b;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.ambient__orb--orange {
  width: 620px;
  height: 620px;
  top: -330px;
  right: -180px;
  background: rgba(194, 0, 35, 0.25);
}

.ambient__orb--teal {
  width: 480px;
  height: 480px;
  top: 48%;
  left: -350px;
  background: rgba(104, 0, 20, 0.12);
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 56%, transparent 96%);
}

.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 7, 9, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 7px;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover .brand__mark {
  transform: translateY(-1px);
  filter: drop-shadow(0 7px 16px rgba(230, 0, 45, 0.14));
}

.brand__wordmark {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.brand__name {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.13em;
  white-space: nowrap;
  font-variant-ligatures: none;
  font-kerning: none;
}

.brand__name-base,
.brand__name-accent {
  display: inline-block;
  flex: 0 0 auto;
  font: inherit;
  line-height: 1;
  letter-spacing: inherit;
}

.brand__name-accent {
  color: var(--red-bright);
}

.brand__cursor {
  width: 2px;
  height: 13px;
  flex: 0 0 auto;
  align-self: center;
  background: var(--red-bright);
  box-shadow: 0 0 7px var(--red-glow);
  animation: blink 1.05s steps(1) infinite;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__label {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 7px var(--red-glow);
  transition: right 160ms ease, left 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

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

.language-toggle,
.icon-button,
.menu-toggle {
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: rgba(15, 15, 18, 0.72);
  color: var(--text-soft);
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.language-toggle:hover,
.icon-button:hover,
.menu-toggle:hover {
  border-color: var(--red-line);
  background: var(--red-soft);
  color: #fff;
}

.language-toggle {
  min-width: 42px;
  height: 38px;
  padding: 0 11px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 38px;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

main {
  position: relative;
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: 810px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(58px, 7vw, 104px);
  padding-top: calc(var(--header-height) + 68px);
  padding-bottom: 92px;
}

.hero::after {
  content: "FIELD NOTES // 0x00";
  position: absolute;
  right: 0;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.hero__copy,
.hero-console {
  min-width: 0;
}

.hero__copy {
  position: relative;
  padding-left: 28px;
}

.hero__copy::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--red), rgba(230, 0, 45, 0.05) 72%, transparent);
}

.hero__copy::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -3px;
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}

.hero__access {
  max-width: 670px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__access > span:first-child {
  color: var(--red-bright);
}

.hero__operator {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.62em;
}

.hero__operator .brand-lockup {
  color: var(--text);
}

.hero__access > span:last-child::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(101, 223, 163, 0.45);
  vertical-align: 1px;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid var(--red-bright);
  background: var(--red);
  transform: rotate(45deg);
}

.hero h1 {
  max-width: 740px;
  margin: 28px 0 23px;
  color: #fff;
  font-size: clamp(3.75rem, 5.25vw, 5.35rem);
  font-weight: 780;
  line-height: 0.93;
  letter-spacing: -0.064em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 > span {
  display: block;
}

.hero__accent {
  width: fit-content;
  max-width: 100%;
  color: var(--red-bright);
  text-shadow: 0 0 26px rgba(230, 0, 45, 0.12);
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.hero__roles span {
  min-width: 0;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
}

.hero__roles span::before {
  content: "/";
  margin-right: 7px;
  color: var(--red);
  font-weight: 900;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero__actions {
  margin-top: 34px;
}

.button {
  min-height: 49px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button--primary {
  border-color: var(--red-bright);
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(230, 0, 45, 0.17);
}

.button--primary:hover {
  background: var(--red-bright);
  box-shadow: 0 17px 36px rgba(230, 0, 45, 0.23);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(12, 12, 15, 0.74);
  color: var(--text-soft);
}

.button--ghost:hover {
  border-color: var(--red-line);
  background: var(--red-soft);
  color: #fff;
}

.hero__proof {
  max-width: 650px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 33px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero__proof p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  margin-bottom: 2px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avatar-stack {
  position: relative;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
}

.avatar-stack img {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.avatar-stack__ring {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--green);
}

.hero-console {
  position: relative;
  padding: 22px 0;
}

.hero-console::before {
  content: "ANALYSIS NODE // 0x04";
  position: absolute;
  top: 0;
  right: 16px;
  color: rgba(230, 0, 45, 0.64);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-console__halo {
  position: absolute;
  inset: 18% 4% 8% 14%;
  z-index: -2;
  background: rgba(160, 0, 28, 0.22);
  filter: blur(90px);
}

.window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(9, 9, 11, 0.97);
  box-shadow: var(--shadow);
}

.window::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-bright) 34%, rgba(230, 0, 45, 0.08) 78%, transparent);
}

.window__bar {
  min-height: 44px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 19, 23, 0.98), rgba(12, 12, 15, 0.98));
  font-family: var(--mono);
  font-size: 8px;
}

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

.window__controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4c4548;
}

.window__controls span:first-child {
  background: var(--red-bright);
}

.window__controls span:nth-child(2) {
  background: #8c3848;
}

.window__controls span:nth-child(3) {
  background: #514b4e;
}

.window__title {
  min-width: 0;
  overflow: hidden;
  color: var(--faint);
  letter-spacing: 0.02em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  white-space: nowrap;
}

.window__status span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(101, 223, 163, 0.45);
}

.window__body {
  min-width: 0;
  padding: clamp(25px, 3.7vw, 38px);
}

.console-logo {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.console-logo img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
}

.console-logo > div {
  min-width: 0;
}

.console-logo__label {
  display: block;
  margin-bottom: 5px;
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.console-logo strong {
  max-width: 100%;
  display: block;
  color: #fff;
  font-family: var(--mono);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: 0.14em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.console-logo small {
  display: block;
  margin-top: 7px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.console-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.console-meta > div {
  min-width: 0;
  padding: 10px 11px;
}

.console-meta > div + div {
  border-left: 1px solid var(--line);
}

.console-meta span,
.console-meta strong {
  display: block;
}

.console-meta span {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-meta strong {
  margin-top: 3px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.code {
  max-width: 100%;
  margin: 18px 0 0;
  padding: 17px 18px;
  overflow: auto;
  border-left: 2px solid rgba(230, 0, 45, 0.65);
  background: rgba(0, 0, 0, 0.22);
  color: #b8b0b3;
  font-family: var(--mono);
  font-size: clamp(8.5px, 0.88vw, 11px);
  line-height: 1.7;
  white-space: pre;
  scrollbar-color: #4d1d27 transparent;
}

.code__comment { color: #70686c; }
.code__keyword { color: #ff7588; }
.code__type { color: #f6d9de; }
.code__string { color: #ff4964; }
.code__operator { color: #dca1aa; }

.console-command {
  min-width: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(230, 0, 45, 0.24);
  border-radius: 4px;
  background: rgba(230, 0, 45, 0.035);
  color: #8d8589;
  font-family: var(--mono);
  font-size: 8.5px;
  line-height: 1.35;
}

.console-command__prompt {
  flex: 0 0 auto;
  color: var(--red-bright);
  line-height: 1;
}

.console-command__line {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  line-height: 1.35;
}

.console-command [data-typing-text] {
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-command__cursor {
  width: 2px;
  height: 0.9em;
  flex: 0 0 auto;
  align-self: center;
  background: var(--red-bright);
  box-shadow: 0 0 6px var(--red-glow);
  animation: blink 1s steps(1) infinite;
}

.metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(160px, 0.5fr);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  border-radius: 8px;
  background: rgba(11, 11, 14, 0.86);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.2);
}

.metric,
.metrics__source {
  min-width: 0;
  padding: 25px 28px;
}

.metric {
  border-right: 1px solid var(--line);
}

.metric__value,
.metric__label {
  display: block;
}

.metric__value {
  color: #fff;
  font-family: var(--mono);
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.metric__value::before {
  content: "0x";
  margin-right: 6px;
  color: var(--red-bright);
  font-size: 0.32em;
  letter-spacing: 0;
  vertical-align: top;
}

.metric__label {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.metrics__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.metrics__source > span:first-child {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #756d71;
}

.metrics__source.is-live > span:first-child {
  background: var(--green);
  box-shadow: 0 0 8px rgba(101, 223, 163, 0.45);
}

.section {
  position: relative;
  padding-top: clamp(106px, 10vw, 142px);
  padding-bottom: clamp(106px, 10vw, 142px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(48px, 8vw, 108px);
  margin-bottom: 46px;
}

.section-heading > *,
.about-grid > *,
.site-footer__inner > * {
  min-width: 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px var(--red-glow);
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  max-width: 780px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(2.45rem, 4.3vw, 4.15rem);
  font-weight: 760;
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.text-link {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition: color 140ms ease;
}

.text-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--red-bright);
  transition: transform 140ms ease;
}

.text-link:hover {
  color: #fff;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.text-link--large {
  margin-top: 24px;
  font-size: 11px;
}

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

.expertise-card {
  position: relative;
  min-width: 0;
  min-height: 350px;
  overflow: hidden;
  padding: 25px 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 11, 14, 0.78);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0 70% auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.expertise-card:hover {
  border-color: rgba(230, 0, 45, 0.3);
  background: rgba(14, 14, 17, 0.94);
  transform: translateY(-3px);
}

.expertise-card__index {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.expertise-card__index::before {
  content: "0x";
  color: rgba(230, 0, 45, 0.66);
}

.expertise-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red-line);
  border-radius: 5px;
  background: var(--red-soft);
  color: var(--red-bright);
}

.expertise-card__icon svg {
  width: 23px;
  height: 23px;
}

.expertise-card h3 {
  margin: 24px 0 10px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.expertise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.68;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

.tag-row span {
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.012);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 7.5px;
  line-height: 1.35;
}

.section--about {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(151, 0, 28, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(12, 12, 15, 0.97), rgba(7, 7, 9, 0.98));
}

.section--about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
}

.about-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.78;
}

.method {
  --marker-size: 38px;
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 24px 27px 27px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 7, 9, 0.78);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.method::before {
  content: "";
  position: absolute;
  inset: 0 46% auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.method__header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method__header > span:first-child {
  color: var(--red-bright);
}

.method__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.method__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(101, 223, 163, 0.45);
}

.method__steps {
  position: relative;
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 24px 0 5px;
  list-style: none;
}

.method__steps::before {
  content: "";
  position: absolute;
  left: calc(var(--marker-size) / 2 - 0.5px);
  top: calc(24px + var(--marker-size) / 2);
  bottom: calc(5px + var(--marker-size) / 2);
  width: 1px;
  background: linear-gradient(to bottom, var(--red), rgba(230, 0, 45, 0.2), var(--red));
}

.method__steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: var(--marker-size) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.method__steps li > div {
  min-width: 0;
  padding-top: 1px;
}

.method__number {
  position: relative;
  z-index: 2;
  width: var(--marker-size);
  height: var(--marker-size);
  display: grid;
  place-items: center;
  border: 1px solid var(--red-line);
  border-radius: 5px;
  background: #0b0b0e;
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 900;
  box-shadow: 0 0 0 5px rgba(7, 7, 9, 0.96);
}

.method__steps strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.method__steps p {
  max-width: 100%;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.58;
}

.stack-section {
  padding-bottom: clamp(94px, 9vw, 124px);
}

.stack-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-chip {
  position: relative;
  max-width: 100%;
  padding: 8px 11px 8px 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.012);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8.5px;
  line-height: 1.35;
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}

.stack-chip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 5px;
  height: 5px;
  background: #625c5f;
  transform: translateY(-50%) rotate(45deg);
}

.stack-chip:hover,
.stack-chip--strong {
  border-color: var(--red-line);
  background: var(--red-soft);
  color: var(--text-soft);
}

.stack-chip--strong::before {
  background: var(--red-bright);
}

.contact {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  overflow: hidden;
  margin-bottom: 96px;
  padding: clamp(42px, 5.5vw, 68px);
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--red);
  border-radius: 10px;
  background:
    linear-gradient(110deg, rgba(151, 0, 28, 0.11), transparent 42%),
    rgba(12, 12, 15, 0.95);
  box-shadow: 0 32px 94px rgba(0, 0, 0, 0.3);
}

.contact::before {
  content: "OPEN CHANNEL // GITHUB";
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(230, 0, 45, 0.6);
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact__signal {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 1.8fr 0.7fr 1.1fr 0.4fr 1.5fr;
  gap: 2px;
  opacity: 0.68;
}

.contact__signal span {
  background: rgba(230, 0, 45, 0.16);
}

.contact__signal span:nth-child(odd) {
  background: var(--red);
}

.contact__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact h2 {
  margin-top: 14px;
}

.contact p {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.contact__actions {
  margin-top: 28px;
}

.contact__profile {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 24px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 7, 9, 0.7);
}

.contact__profile::before,
.contact__profile::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.contact__profile::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
}

.contact__profile::after {
  right: 9px;
  bottom: 9px;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

.contact__logo {
  width: min(100%, 205px);
  height: auto;
  object-fit: contain;
}

.contact__profile-copy {
  min-width: 0;
  width: 100%;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact__profile-copy span,
.contact__profile-copy strong,
.contact__profile-copy small {
  display: block;
  max-width: 100%;
  font-family: var(--mono);
  overflow-wrap: anywhere;
}

.contact__profile-copy span {
  color: var(--red-bright);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact__profile-copy strong {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.13em;
}

.contact__profile-copy small {
  margin-top: 4px;
  color: var(--faint);
  font-size: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 4, 5, 0.72);
}

.site-footer__inner {
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.brand--footer .brand__mark {
  width: 35px;
  height: 35px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 11px;
}

.site-footer__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 17px 23px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 8.5px;
}

.site-footer__right a {
  color: var(--muted);
  text-decoration: none;
  transition: color 140ms ease;
}

.site-footer__right a:hover {
  color: var(--red-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal--delay {
  transition-delay: 80ms;
}

.reveal--delay-small {
  transition-delay: 45ms;
}

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

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
    gap: 50px;
  }


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

  .expertise-card {
    min-height: 300px;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: 880px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero__copy {
    max-width: 820px;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(3.8rem, 8vw, 5.5rem);
  }

  .hero-console {
    width: min(100%, 740px);
    margin-inline: auto;
  }

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

  .metrics__source {
    grid-column: 1 / -1;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding: 14px 28px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 23px;
  }

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

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

  .about-copy {
    max-width: 760px;
  }

  .method {
    width: min(100%, 700px);
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

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

  .site-header__inner {
    min-height: var(--header-height);
    grid-template-columns: auto 1fr auto;
    gap: 11px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 12px;
  }

  .brand__cursor {
    height: 12px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .site-header__actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: -1;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 38px 26px 52px;
    border-top: 1px solid var(--line);
    background:
      linear-gradient(145deg, rgba(151, 0, 28, 0.12), transparent 34%),
      rgba(7, 7, 9, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav__label {
    position: absolute;
    top: 24px;
    left: 26px;
    display: inline-flex;
    align-items: baseline;
    gap: 0.62em;
    color: var(--red-bright);
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    white-space: nowrap;
  }

  .site-nav.is-open {
    z-index: 105;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: min(100%, 560px);
    margin-inline: auto;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: clamp(1.05rem, 5vw, 1.55rem);
    letter-spacing: 0.05em;
  }

  .site-nav a::after {
    display: none;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 72px;
  }

  .hero::after {
    display: none;
  }

  .hero__access {
    flex-wrap: wrap;
  }

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

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

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

  .contact__profile {
    width: min(100%, 360px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding-block: 38px;
  }

  .site-footer__right {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header__actions .icon-button {
    display: none;
  }

  .hero {
    gap: 38px;
    padding-top: calc(var(--header-height) + 44px);
  }

  .hero__copy {
    padding-left: 20px;
  }

  .hero__access {
    margin-bottom: 17px;
    font-size: 8px;
  }

  .eyebrow {
    font-size: 8.5px;
  }

  .eyebrow::after {
    width: 28px;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(2.72rem, 12vw, 3.55rem);
    line-height: 0.94;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero__roles {
    margin-top: 22px;
  }

  .hero__actions {
    margin-top: 27px;
  }

  .button {
    min-height: 47px;
    padding-inline: 16px;
  }

  .hero__proof {
    margin-top: 27px;
  }

  .hero-console {
    padding: 10px 0;
  }

  .hero-console::before {
    display: none;
  }

  .window__bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: 12px;
  }

  .window__title,
  .window__status {
    font-size: 7px;
  }

  .window__body {
    padding: 22px 18px;
  }

  .console-logo {
    gap: 13px;
  }

  .console-logo img {
    width: 62px;
    height: 62px;
  }

  .console-logo strong {
    font-size: 14px;
  }

  .console-logo small {
    font-size: 6.5px;
  }

  .console-meta {
    grid-template-columns: 1fr;
  }

  .console-meta > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .code {
    padding: 14px;
    font-size: 8.4px;
  }

  .metric,
  .metrics__source {
    padding: 21px 18px;
  }

  .metric__value {
    font-size: 1.8rem;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

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

  .section-heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.35rem);
  }


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


  .expertise-card {
    min-height: 0;
    padding: 23px 21px;
  }

  .method {
    --marker-size: 36px;
    padding: 22px 19px 23px;
  }

  .method__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .method__steps {
    gap: 21px;
    padding-top: 23px;
  }

  .method__steps::before {
    top: calc(23px + var(--marker-size) / 2);
  }

  .method__steps li {
    gap: 14px;
  }

  .contact {
    margin-bottom: 72px;
    padding: 48px 23px 28px;
  }

  .contact::before {
    top: 14px;
    right: 17px;
    font-size: 6.5px;
  }

  .contact__actions .button {
    width: 100%;
  }

  .contact__profile {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .brand__name {
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }

  .brand__wordmark {
    gap: 2px;
  }

  .brand__cursor {
    height: 11px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .language-toggle {
    min-width: 36px;
    height: 36px;
    padding-inline: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 36px;
  }

  .hero__access span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.12rem, 10.8vw, 2.7rem);
  }

  .hero__accent {
    white-space: nowrap;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    align-items: flex-start;
  }

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

  .metric,
  .metric:nth-child(2),
  .metric:nth-child(3) {
    grid-column: auto;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .metric:first-child {
    border-top: 0;
  }

  .metrics__source {
    grid-column: auto;
  }

  .section-heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(2rem, 11.8vw, 2.85rem);
  }

  .method__status {
    white-space: normal;
  }

  .stack-chip {
    font-size: 8px;
  }

  .site-footer__right {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}


/* Shared RenardDev wordmark treatment: white base, red DEV suffix. */
.brand-lockup {
  max-width: 100%;
  display: inline-flex !important;
  align-items: baseline;
  white-space: nowrap;
  vertical-align: baseline;
  overflow-wrap: normal;
}

.brand-lockup--inline {
  font: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

.brand-lockup > .brand-lockup__base,
.brand-lockup > .brand-lockup__accent {
  display: inline-block !important;
  flex: 0 0 auto;
  font: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  white-space: nowrap;
  overflow-wrap: normal;
}

.brand-lockup > .brand-lockup__base {
  color: var(--text) !important;
}

.brand-lockup > .brand-lockup__accent {
  color: var(--red-bright) !important;
}
