:root {
  --bg: #151716;
  --surface: #1d211f;
  --surface-raised: #232927;
  --surface-soft: #28302c;
  --line: #3b4441;
  --line-strong: #53615d;
  --text: #f4f7f5;
  --muted: #aeb9b4;
  --subtle: #7f8b86;
  --blue: #48a7ff;
  --cyan: #57d7cf;
  --green: #8fc760;
  --amber: #f3ba4e;
  --ink: #0d1110;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shadow: 0 24px 70px rgb(0 0 0 / 32%);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 2%), transparent 420px),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.technical-grid {
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(rgb(72 167 255 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(72 167 255 / 7%) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 160px 160px, 160px 160px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgb(18 21 20 / 88%);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo-mark {
  display: block;
  width: 56px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 18%));
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: end;
  justify-content: flex-start;
  gap: 5px;
  border: 1px solid rgb(72 167 255 / 72%);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgb(28 74 103 / 92%), rgb(12 31 47 / 96%)),
    #102233;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 5%),
    0 10px 24px rgb(0 0 0 / 18%);
  overflow: hidden;
  padding: 0 0 10px 10px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  top: -1px;
  right: -1px;
  width: 18px;
  height: 18px;
  background: rgb(72 167 255 / 16%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.brand-mark::after {
  top: 7px;
  right: -3px;
  width: 23px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(38deg);
  transform-origin: center;
}

.brand-mark span {
  z-index: 2;
  width: 5px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #62e6e6 0%, #39a9f5 100%);
}

.brand-mark span:nth-child(1) {
  height: 18px;
}

.brand-mark span:nth-child(2) {
  height: 31px;
}

.brand-mark span:nth-child(3) {
  height: 25px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  color: #f5f8f8;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy small {
  color: #9aa5a8;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 5%);
  padding: 3px;
}

.language-option {
  display: inline-flex;
  min-width: 36px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.language-option.is-active {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), #1474dd);
  color: #fff;
  box-shadow: 0 12px 34px rgb(72 167 255 / 20%);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgb(35 41 39 / 80%);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue);
}

.button-large {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 15px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 148px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-image,
.hero-grid,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.08);
}

.hero-grid {
  z-index: -3;
  opacity: 0.5;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(13 17 16 / 94%) 0%, rgb(13 17 16 / 82%) 42%, rgb(13 17 16 / 36%) 100%),
    linear-gradient(180deg, rgb(13 17 16 / 34%) 0%, rgb(13 17 16 / 76%) 100%);
}

.hero-content {
  display: grid;
  align-content: center;
  max-width: 1200px;
  padding-block: 82px 70px;
}

.eyebrow {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 870px;
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-lead {
  max-width: 670px;
  margin-top: 24px;
  color: #d6dfda;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin-top: 54px;
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(255 255 255 / 12%);
  box-shadow: var(--shadow);
}

.hero-meta span {
  min-height: 82px;
  padding: 18px;
  background: rgb(21 23 22 / 78%);
  color: var(--muted);
  font-size: 13px;
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.intro-section {
  border-bottom: 1px solid var(--line);
  background: #f3f6f4;
  color: #14201c;
  padding: 36px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.intro-section .eyebrow {
  color: #1774bb;
}

.intro-section h2 {
  max-width: 560px;
  color: #14201c;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.intro-copy {
  color: #52605b;
  font-size: 16px;
}

.founder-section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(72 167 255 / 9%), transparent 42%),
    linear-gradient(180deg, rgb(255 255 255 / 3%), transparent),
    var(--bg);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

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

.team-member-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: 0 18px 48px rgb(0 0 0 / 24%);
}

.team-member-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.95) contrast(1.04);
}

.team-member-card figcaption {
  min-height: 84px;
  padding: 14px;
}

.team-member-card strong,
.team-member-card span {
  display: block;
}

.team-member-card strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.team-member-card span {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgb(13 17 16 / 52%)),
    linear-gradient(90deg, rgb(72 167 255 / 18%), transparent 54%);
  content: "";
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  max-width: 720px;
}

.founder-copy h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.founder-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-focus-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 5%);
  padding: 20px;
}

.about-focus-label {
  display: block;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-role-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.about-role-list li {
  position: relative;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
}

.about-role-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgb(87 215 207 / 45%);
  content: "";
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.profile-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 5%);
  padding: 14px;
}

.profile-stats strong,
.profile-stats span {
  display: block;
}

.profile-stats strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1.2;
}

.profile-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.experience-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.experience-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  border-left: 1px solid var(--line-strong);
  padding-left: 14px;
}

.experience-list span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.experience-list strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.founder-points.compact {
  margin-top: 16px;
}

.founder-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgb(255 255 255 / 5%);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 3%), transparent),
    var(--surface);
}

.section-heading {
  max-width: 680px;
}

.section-heading.wide {
  max-width: 880px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.capability-card,
.media-card,
.article-card,
.tool-feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
}

.capability-card {
  min-height: 254px;
  padding: 24px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.capability-card:hover {
  border-color: rgb(72 167 255 / 70%);
  background: #26302d;
  transform: translateY(-2px);
}

.capability-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgb(72 167 255 / 42%);
  border-radius: 8px;
  background: rgb(72 167 255 / 10%);
  color: var(--blue);
}

.capability-icon.green {
  border-color: rgb(143 199 96 / 45%);
  background: rgb(143 199 96 / 10%);
  color: var(--green);
}

.capability-icon.amber {
  border-color: rgb(243 186 78 / 45%);
  background: rgb(243 186 78 / 10%);
  color: var(--amber);
}

.capability-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.capability-card h3,
.media-card h3,
.article-card h3,
.tool-feature h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.capability-card p,
.media-card p,
.article-card p,
.tool-feature p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.process-step {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 4%), transparent),
    var(--surface-raised);
  padding: 24px;
  overflow: hidden;
}

.process-step::after {
  position: absolute;
  right: -24px;
  bottom: -38px;
  color: rgb(72 167 255 / 8%);
  content: attr(data-step);
  font-family: var(--font-mono);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(87 215 207 / 38%);
  border-radius: 8px;
  background: rgb(87 215 207 / 10%);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.process-step h3 {
  margin-top: 28px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.process-step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.media-card,
.article-card {
  overflow: hidden;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.media-card:hover,
.article-card:hover,
.tool-feature:hover {
  border-color: rgb(87 215 207 / 62%);
  transform: translateY(-2px);
}

.media-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.media-card figure::after,
.article-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgb(13 17 16 / 42%)),
    linear-gradient(90deg, rgb(72 167 255 / 14%), transparent 54%);
  content: "";
  pointer-events: none;
}

.media-card img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.media-card:hover img,
.article-card:hover img {
  transform: scale(1.025);
}

.media-card-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgb(72 167 255 / 38%);
  border-radius: 5px;
  background: rgb(72 167 255 / 12%);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 5px 9px;
  text-transform: uppercase;
}

.tag.green {
  border-color: rgb(143 199 96 / 42%);
  background: rgb(143 199 96 / 12%);
  color: var(--green);
}

.tag.amber {
  border-color: rgb(243 186 78 / 42%);
  background: rgb(243 186 78 / 12%);
  color: var(--amber);
}

.tag.muted {
  border-color: var(--line-strong);
  background: rgb(255 255 255 / 5%);
  color: var(--muted);
}

.media-card h3,
.article-card h3,
.tool-feature h3 {
  margin-top: 14px;
}

.tools-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
}

.tool-stack {
  display: grid;
  gap: 18px;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tool-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 5%);
  color: var(--muted);
  padding: 6px 10px;
}

.tool-badges b {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
}

.tool-badges em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}

.tool-ribbon-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.tool-ribbon {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #2c2f2e 0%, #202423 100%);
  padding: 10px 0 6px;
  box-shadow: var(--shadow);
}

.ribbon-group {
  position: relative;
  display: flex;
  min-width: max-content;
  flex-direction: column;
  padding: 4px 12px 0;
}

.ribbon-group + .ribbon-group::before {
  position: absolute;
  top: 7px;
  bottom: 22px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.ribbon-group-body {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  padding-bottom: 8px;
}

.ribbon-group-title {
  margin: 2px 6px 0;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding-top: 5px;
  text-align: center;
  text-transform: uppercase;
}

.ribbon-command {
  display: grid;
  width: 72px;
  min-height: 78px;
  justify-items: center;
  gap: 6px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: default;
  padding: 6px 4px;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.ribbon-command:hover {
  background: rgb(87 215 207 / 10%);
  color: var(--text);
}

.ribbon-command-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(87 215 207 / 24%);
  border-radius: 6px;
  background: rgb(255 255 255 / 4%);
  color: var(--cyan);
}

.ribbon-command-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.ribbon-command-icon svg rect,
.ribbon-command-icon svg circle {
  fill: none;
  stroke: currentColor;
}

.ribbon-command-icon svg rect[width="2"],
.ribbon-command-icon svg circle[r="1.5"],
.ribbon-command-icon svg circle[r="1.3"] {
  fill: currentColor;
  stroke: none;
}

.ribbon-command-icon .mini-badge circle {
  fill: var(--cyan);
  stroke: none;
}

.ribbon-command-icon .mini-badge path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.1;
}

.ribbon-command-icon .mini-badge path[d*="23.8"] {
  fill: none;
}

.ribbon-command span:last-child {
  color: currentColor;
  font-size: 10.5px;
  line-height: 1.18;
  white-space: pre-line;
}

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

.tool-suite-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
  padding: 20px;
}

.tool-suite-card h3 {
  margin-top: 14px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
}

.tool-suite-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.tool-feature {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  min-height: 246px;
  overflow: hidden;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.tool-feature img {
  width: 100%;
  height: 100%;
  min-height: 246px;
  object-fit: cover;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.tool-feature > div {
  display: grid;
  align-content: center;
  padding: 30px;
}

.project-card figure {
  aspect-ratio: 16 / 9;
}

.article-card {
  position: relative;
  display: grid;
  grid-template-rows: 190px 1fr;
}

.article-card::before {
  z-index: 1;
  bottom: auto;
  height: 190px;
}

.article-card > div {
  padding: 22px;
}

.article-card small {
  display: block;
  margin-top: 18px;
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.contact-section > img,
.contact-grid,
.contact-scrim {
  position: absolute;
  inset: 0;
}

.contact-section > img {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.contact-grid {
  z-index: -3;
  opacity: 0.5;
}

.contact-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(13 17 16 / 94%), rgb(13 17 16 / 72%) 56%, rgb(13 17 16 / 36%)),
    linear-gradient(180deg, rgb(13 17 16 / 24%), rgb(13 17 16 / 78%));
}

.contact-content {
  display: grid;
  min-height: 520px;
  align-content: center;
  padding-block: 80px;
}

.contact-content h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.contact-content p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 18px;
  color: #d6dfda;
  font-size: 16px;
  line-height: 1.75;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-top: 28px;
}

.contact-method {
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(18 22 20 / 62%);
  color: inherit;
  padding: 18px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

a.contact-method:hover,
a.contact-method:focus-visible {
  border-color: var(--cyan);
  background: rgb(87 215 207 / 9%);
  transform: translateY(-1px);
}

.contact-method span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-method small {
  color: #d6dfda;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #111412;
  color: var(--muted);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--text);
}

.site-footer p {
  max-width: 450px;
  font-size: 14px;
}

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

.footer-links h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-bottom p {
  max-width: none;
  font-size: 12px;
}

.clients {
  color: var(--subtle);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

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

  .site-nav {
    gap: 16px;
  }

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

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .header-inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    top: 67px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgb(25 29 27 / 96%);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 72px 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgb(13 17 16 / 92%), rgb(13 17 16 / 72%)),
      linear-gradient(180deg, rgb(13 17 16 / 28%), rgb(13 17 16 / 84%));
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .intro-grid,
  .founder-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .founder-section {
    padding: 64px 0;
  }

  .founder-portrait {
    max-width: 360px;
  }

  .section {
    padding: 64px 0;
  }

  .card-grid.three,
  .contact-methods,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .tool-suite-grid {
    grid-template-columns: 1fr;
  }

  .tool-feature img {
    aspect-ratio: 16 / 9;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .hero-meta,
  .about-focus-grid,
  .profile-stats,
  .capability-grid,
  .process-grid,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .hero-meta span {
    min-height: 72px;
  }

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

  .media-card-body,
  .article-card > div,
  .tool-feature > div {
    padding: 20px;
  }
}
