/* Self-hosted fonts (latin) — no third-party requests, CSP-safe, no render-blocking @import. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/manrope-400.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/manrope-500.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/manrope-600.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/manrope-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/manrope-800.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/dmmono-400.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/dmmono-500.woff2") format("woff2");
}

:root {
  --bg: #05070a;
  --bg-soft: #080b10;
  --surface: #0b0f15;
  --surface-bright: #101620;
  --line: rgba(154, 177, 209, 0.14);
  --line-bright: rgba(82, 153, 255, 0.34);
  --text: #f4f7fb;
  --muted: #919cac;
  --muted-bright: #b9c2cf;
  --blue: #2f81f7;
  --blue-bright: #58a6ff;
  --blue-dark: #0d4eae;
  --green: #46d995;
  --font-sans: "Manrope", Arial, sans-serif;
  --font-mono: "DM Mono", "Courier New", monospace;
  --container: 1180px;
  --radius: 8px;
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--blue-dark);
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: currentColor;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--text);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

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

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

.section-surface {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  overflow: hidden;
  place-items: center;
  font-size: 0.8rem;
  background: var(--surface-bright);
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(47, 129, 247, 0.25);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-dot,
.accent {
  color: var(--blue-bright);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted-bright);
  font-size: 0.8rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="true"] {
  color: var(--text);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: var(--text);
  border: 1px solid var(--line-bright);
  border-radius: 4px;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  background: rgba(47, 129, 247, 0.12);
  border-color: var(--blue-bright);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: 42px;
  overflow: hidden;
}

.hero-grid,
.services-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(91, 127, 173, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 127, 173, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--bg) 2%, transparent 35%, transparent 68%, var(--bg) 98%);
}

.hero-glow {
  position: absolute;
  top: 12%;
  right: -12%;
  width: 600px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(30, 111, 227, 0.13), transparent 67%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  gap: 80px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  padding: 7px 10px;
  color: var(--muted-bright);
  background: rgba(12, 17, 25, 0.72);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(70, 217, 149, 0.1), 0 0 12px rgba(70, 217, 149, 0.4);
}

.eyebrow,
.section-index,
.mini-label,
.record-label,
.content-type {
  margin: 0;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 4px 0 0;
  font-size: clamp(5rem, 11vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero-role {
  margin: 22px 0 24px;
  color: #d9e0e9;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-role span {
  color: var(--blue-bright);
}

.hero-summary {
  max-width: 670px;
  margin: 0;
  color: var(--muted-bright);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-proof {
  max-width: 650px;
  margin: 18px 0 0;
  padding-left: 14px;
  color: #d0d7e0;
  border-left: 2px solid var(--blue);
  font-size: 0.84rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.79rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(47, 129, 247, 0.16);
}

.button-primary:hover {
  background: #3b8cf9;
  border-color: #3b8cf9;
}

.button-secondary {
  color: var(--text);
  background: rgba(10, 14, 20, 0.8);
  border-color: var(--line);
}

.button-secondary:hover {
  background: var(--surface-bright);
  border-color: var(--line-bright);
}

.button-tertiary {
  min-height: 42px;
  padding-inline: 8px;
  color: var(--muted-bright);
  border-bottom-color: var(--line-bright);
  border-radius: 0;
}

.button-tertiary:hover {
  color: var(--text);
  border-bottom-color: var(--blue-bright);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-row a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-row a:hover {
  color: var(--blue-bright);
  background: rgba(47, 129, 247, 0.08);
  border-color: var(--line-bright);
}

.social-row svg {
  width: 15px;
  height: 15px;
}

.hero-visual {
  position: relative;
}

.terminal-card {
  position: relative;
  overflow: hidden;
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(105, 144, 194, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(16, 28, 45, 0.16);
}

.terminal-card::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  content: "";
  background: linear-gradient(145deg, rgba(76, 150, 255, 0.25), transparent 30%);
  border-radius: inherit;
}

.terminal-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 14px;
  color: #6f7b8d;
  background: #090d13;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.terminal-dots {
  display: flex;
  gap: 5px;
}

.terminal-dots span {
  width: 6px;
  height: 6px;
  background: #273140;
  border-radius: 50%;
}

.terminal-state {
  justify-self: end;
  color: #556174;
  letter-spacing: 0.1em;
}

.terminal-body {
  padding: 23px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 2;
}

.code-line {
  display: grid;
  grid-template-columns: 34px 1fr;
  color: #aab5c4;
}

.line-no {
  color: #364151;
  user-select: none;
}

.code-line b {
  color: #c78cff;
  font-weight: 400;
}

.code-line em {
  color: #57a7ff;
  font-style: normal;
}

.code-line i,
.code-line strong {
  color: #8bd5ca;
  font-style: normal;
  font-weight: 400;
}

.terminal-scan {
  padding: 20px 22px 22px;
}

.scan-heading {
  display: flex;
  justify-content: space-between;
  color: #657185;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.scan-live {
  color: var(--green);
}

.scan-live span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  background: currentColor;
  border-radius: 50%;
}

.scan-ring {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  margin: 20px auto;
  place-items: center;
  border: 1px solid rgba(47, 129, 247, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(47, 129, 247, 0.06);
}

.scan-ring::before,
.scan-ring::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(109, 165, 241, 0.18);
  border-radius: 50%;
}

.scan-ring::before {
  inset: 11px;
  animation: rotate 18s linear infinite;
}

.scan-ring::after {
  inset: 27px;
  border-style: solid;
}

.scan-core {
  display: grid;
  z-index: 1;
  width: 88px;
  height: 88px;
  overflow: hidden;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(47, 129, 247, 0.09);
  border: 2px solid rgba(88, 166, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(47, 129, 247, 0.26);
}

.scan-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.scan-meta div {
  padding: 10px;
  background: #090d13;
  border: 1px solid var(--line);
}

.scan-meta span,
.scan-meta strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 400;
}

.scan-meta span {
  margin-bottom: 3px;
  color: #546174;
}

.scan-meta strong {
  color: #aeb9c8;
}

.visual-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #8d9aac;
  background: #090d13;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.59rem;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.visual-label span {
  color: var(--blue-bright);
}

.visual-label-top {
  top: 24%;
  right: -28px;
}

.visual-label-bottom {
  bottom: 18%;
  left: -30px;
}

.trust-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 76px;
  padding-top: 22px;
  color: #7d8999;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.trust-strip > span {
  color: #4f5967;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.experience-intro h2,
.services-heading h2,
.contact-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading > p,
.experience-intro > p:not(.section-index),
.services-heading > p:not(.section-index),
.contact-copy > p:not(.section-index) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

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

.capability-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  background: rgba(10, 14, 20, 0.56);
  transition: background 220ms ease;
}

.capability-card + .capability-card {
  border-left: 1px solid var(--line);
}

.capability-card:hover {
  background: var(--surface-bright);
}

.capability-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.capability-card:hover::after {
  transform: scaleX(1);
}

.card-number {
  color: #526072;
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 44px 0 28px;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(47, 129, 247, 0.08);
  border: 1px solid rgba(47, 129, 247, 0.2);
  border-radius: 6px;
}

.card-icon svg {
  width: 23px;
}

.capability-card h3 {
  margin: 0 0 15px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.card-tags span {
  padding: 5px 8px;
  color: #768498;
  background: #080c11;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.security-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.security-feature {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.security-feature::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle at top right, rgba(47, 129, 247, 0.1), transparent 68%);
}

.security-feature-top {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.platform-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
}

.cantina-mark {
  color: #69a9ff;
  background: #0b203c;
  border: 1px solid #164c8b;
}

.sherlock-mark {
  color: #c6d2e0;
  background: #19212b;
  border: 1px solid #374454;
}

.security-feature h3 {
  margin: 2px 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.record-label {
  color: #697689;
  font-size: 0.55rem;
}

.verified-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #98a5b7;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.verified-label i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.security-feature > p {
  position: relative;
  max-width: 520px;
  margin: 34px 0 24px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.8;
}

.security-evidence {
  position: relative;
  display: block;
  height: 220px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #f4f6f9;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.security-evidence::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(3, 7, 12, 0.78), transparent 48%);
}

.security-evidence img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 350ms ease;
}

.security-evidence-sherlock {
  background: #202029;
}

.security-evidence-sherlock img {
  object-position: center 13%;
}

.security-evidence > span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eef5ff;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-evidence i {
  color: var(--blue-bright);
  font-style: normal;
}

.security-evidence:hover img {
  transform: scale(1.025);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d6dee9;
  font-size: 0.76rem;
  font-weight: 700;
}

.text-link span {
  color: var(--blue-bright);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.method-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.method-intro h3 {
  margin: 16px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 0 0 20px;
}

.method-list li + li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.method-list > li > span {
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.method-list strong {
  font-size: 0.93rem;
}

.method-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.experience-intro {
  position: sticky;
  top: calc(var(--header-height) + 45px);
  align-self: start;
}

.experience-intro > p:not(.section-index) {
  margin-top: 28px;
}

.community-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 7px 10px;
  color: #aab5c4;
  background: rgba(70, 217, 149, 0.04);
  border: 1px solid rgba(70, 217, 149, 0.18);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--blue), rgba(47, 129, 247, 0.08));
}

.timeline-item {
  position: relative;
  padding: 0 0 56px 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 3px;
  left: -35px;
  display: grid;
  width: 12px;
  height: 12px;
  place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.timeline-marker span {
  width: 4px;
  height: 4px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.timeline-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.timeline-meta span {
  padding: 4px 7px;
  color: #748195;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.53rem;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.timeline-item h4 {
  margin: 4px 0 16px;
  color: #a8b3c2;
  font-size: 0.8rem;
  font-weight: 500;
}

.timeline-item p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.community-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border: 1px solid var(--line);
}

.community-services article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  background: rgba(8, 12, 18, 0.46);
}

.community-services article + article {
  border-left: 1px solid var(--line);
}

.community-services article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.community-services article:hover::after {
  transform: scaleX(1);
}

.community-services article > span {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.community-services h3 {
  margin: 54px 0 13px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.community-services p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.community-proof {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.proof-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.proof-lead h3 {
  margin: 14px 0 18px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.proof-lead > div > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

.proof-quote,
.proof-card {
  margin: 0;
}

.proof-quote {
  padding: 10px;
  background: #05070a;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.proof-quote img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.proof-quote figcaption,
.proof-card figcaption {
  color: #6f7b8c;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-quote figcaption {
  padding: 11px 4px 2px;
}

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

.proof-card {
  min-width: 0;
}

.proof-image-wrap {
  height: 470px;
  overflow: hidden;
  background: #080b10;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.proof-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 350ms ease;
}

.proof-image-profile img {
  object-position: center 11%;
}

.proof-card:hover img {
  transform: scale(1.018);
}

.proof-card figcaption {
  display: flex;
  gap: 10px;
  padding: 13px 2px 0;
}

.proof-card figcaption span {
  color: var(--blue-bright);
}

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

.content-feature {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.content-feature:hover {
  background: var(--surface-bright);
  border-color: var(--line-bright);
  transform: translateY(-3px);
}

.content-preview {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #0b1017;
  border-bottom: 1px solid var(--line);
}

.content-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 7, 11, 0.68), transparent 52%);
}

.content-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.content-preview-contain {
  padding: 30px 14px;
  background: #eef1f5;
}

.content-preview-contain img {
  object-fit: contain;
}

.content-feature:hover .content-preview img {
  transform: scale(1.025);
}

.content-preview > span {
  position: absolute;
  z-index: 1;
  right: 13px;
  bottom: 11px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #f2f6fb;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content-preview i {
  color: var(--blue-bright);
  font-style: normal;
}

.content-feature-body {
  padding: 22px;
}

.content-feature-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #6e7a8d;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-feature-meta span {
  color: var(--blue-bright);
}

.content-feature h3 {
  margin: 18px 0 12px;
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.content-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
}

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

.content-list-secondary {
  margin-top: 36px;
}

.content-item {
  display: grid;
  grid-template-columns: 70px 1fr 48px;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, background 200ms ease;
}

.content-item:hover {
  padding-inline: 18px;
  background: rgba(13, 19, 28, 0.65);
}

.content-number {
  color: #536072;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.content-type {
  color: var(--blue-bright);
  font-size: 0.56rem;
}

.content-item h3 {
  margin: 7px 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.content-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-bright);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.content-item:hover .content-arrow {
  background: rgba(47, 129, 247, 0.1);
  transform: translate(2px, -2px);
}

.content-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted-bright);
  font-size: 0.75rem;
  font-weight: 700;
}

.content-profile-link span {
  color: var(--blue-bright);
}

.content-profile-link:hover {
  color: var(--text);
}

.services-section {
  overflow: hidden;
  background: #07101d;
  border-block: 1px solid rgba(61, 130, 224, 0.2);
}

.services-grid {
  opacity: 0.55;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.services-section .container {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.services-heading h2 {
  max-width: 450px;
}

.services-heading > p:not(.section-index) {
  max-width: 440px;
  margin-top: 28px;
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(121, 165, 226, 0.2);
}

.services-list li {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(121, 165, 226, 0.2);
}

.services-list span {
  color: #56759e;
  font-family: var(--font-mono);
  font-size: 0.59rem;
}

.services-list strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.services-list i {
  color: #5d87bd;
  font-size: 0.8rem;
  font-style: normal;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  padding: 65px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-panel::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 500px;
  height: 500px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 129, 247, 0.11), transparent 67%);
}

.contact-copy > p:not(.section-index) {
  max-width: 570px;
  margin-top: 28px;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.email-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 25px 56px 25px 25px;
  background: var(--blue);
  border-radius: 5px;
  box-shadow: 0 15px 40px rgba(47, 129, 247, 0.15);
  transition: background 180ms ease, transform 180ms ease;
}

.email-link:hover {
  background: #3a8af7;
  transform: translateY(-2px);
}

.email-link span,
.email-link strong {
  grid-column: 1;
}

.email-link span {
  margin-bottom: 5px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
}

.email-link strong {
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
}

.email-link i {
  position: absolute;
  top: 50%;
  right: 24px;
  font-style: normal;
  transform: translateY(-50%);
}

.telegram-link {
  margin-top: 18px;
  color: var(--muted-bright);
  font-size: 0.75rem;
  text-align: center;
}

.telegram-link span {
  color: var(--blue-bright);
}

.site-footer {
  padding-top: 48px;
  background: #040609;
  border-top: 1px solid var(--line);
}

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

.footer-main > p {
  margin: 0;
  color: #697586;
  font-size: 0.72rem;
}

.footer-main nav {
  display: flex;
  gap: 24px;
}

.footer-main nav a,
.footer-bottom a {
  color: #929dad;
  font-size: 0.68rem;
  font-weight: 600;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  color: #4f5967;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-family: var(--font-mono);
  font-size: inherit;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 45px;
  }

  .hero-title {
    font-size: clamp(4.8rem, 11vw, 7rem);
  }

  .section-heading,
  .experience-layout,
  .services-section .container {
    gap: 60px;
  }

  .capability-card {
    padding: 24px;
  }

  .contact-panel {
    gap: 45px;
    padding: 48px;
  }
}

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

  .section {
    padding: 84px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

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

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

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    visibility: hidden;
    background: rgba(5, 7, 10, 0.98);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .primary-nav > a {
    font-size: 1.5rem;
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
    font-size: 1rem;
  }

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

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

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

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

  .trust-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .trust-strip > span {
    width: 100%;
  }

  .section-heading,
  .experience-layout,
  .services-section .container,
  .contact-panel,
  .method-row,
  .community-proof {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

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

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

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

  .content-preview {
    height: min(310px, 56vw);
  }

  .community-services {
    grid-template-columns: 1fr;
  }

  .community-services article {
    min-height: 0;
  }

  .community-services article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .community-services h3 {
    margin-top: 30px;
  }

  .capability-card {
    min-height: 0;
  }

  .capability-card + .capability-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-icon {
    margin: 30px 0 23px;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .method-row {
    gap: 44px;
  }

  .experience-intro {
    position: static;
  }

  .timeline {
    margin-top: 18px;
  }

  .community-proof {
    gap: 48px;
    margin-top: 70px;
    padding-top: 56px;
  }

  .proof-lead {
    gap: 36px;
  }

  .services-section .container {
    gap: 48px;
  }

  .contact-panel {
    gap: 48px;
  }

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

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

  .section {
    padding: 70px 0;
  }

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

  .status-pill {
    margin-bottom: 26px;
    font-size: 0.56rem;
  }

  .hero-title {
    font-size: clamp(4.4rem, 24vw, 6rem);
  }

  .hero-role {
    font-size: 1rem;
  }

  .hero-summary {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .terminal-topbar {
    grid-template-columns: 1fr 1fr;
  }

  .terminal-topbar > span:nth-child(2) {
    display: none;
  }

  .terminal-body {
    padding: 18px 12px;
    font-size: 0.56rem;
  }

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

  .visual-label {
    display: none;
  }

  .trust-strip {
    gap: 14px 20px;
    margin-top: 50px;
  }

  .trust-strip div {
    width: calc(50% - 10px);
    font-size: 0.54rem;
  }

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

  .section-heading h2,
  .experience-intro h2,
  .services-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .security-feature {
    padding: 22px;
  }

  .security-feature-top {
    grid-template-columns: auto 1fr;
  }

  .verified-label {
    grid-column: 1 / -1;
  }

  .method-row {
    margin-top: 52px;
    padding-top: 52px;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline-item {
    padding-left: 12px;
  }

  .timeline-marker {
    left: -25px;
  }

  .timeline-meta {
    flex-wrap: wrap;
  }

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

  .proof-image-wrap {
    height: min(620px, 125vw);
  }

  .content-item {
    grid-template-columns: 30px 1fr 38px;
    gap: 10px;
    min-height: 120px;
  }

  .content-feature-body {
    padding: 19px;
  }

  .content-arrow {
    width: 36px;
    height: 36px;
  }

  .services-list li {
    grid-template-columns: 30px 1fr 14px;
  }

  .services-list strong {
    font-size: 0.74rem;
  }

  .contact-panel {
    width: min(calc(100% - 32px), var(--container));
    padding: 32px 22px;
  }

  .email-link {
    padding: 20px 46px 20px 18px;
  }

  .email-link strong {
    font-size: 0.85rem;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    gap: 20px;
  }
}

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

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