:root {
  --bg: #050607;
  --bg-soft: #0d0f12;
  --panel: #14171b;
  --panel-light: #1b2026;
  --line: #2a3038;
  --text: #f4f6f8;
  --muted: #a6adb7;
  --accent: #39d98a;
  --accent-2: #47a7ff;
  --warning: #ffcc66;
  --danger: #ff6b7a;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(5, 6, 7, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d4d8dd;
  font-size: 13px;
  white-space: nowrap;
}

.main-nav a,
.footer-grid a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.footer-grid a:hover {
  color: var(--accent);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta {
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

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

.section-dark {
  background: var(--bg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 92px;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  background: #07090b;
  pointer-events: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.hero-video video::-webkit-media-controls,
.hero-video video::-webkit-media-controls-panel,
.hero-video video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.82) 0%, rgba(5, 6, 7, 0.58) 45%, rgba(5, 6, 7, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.hero p {
  max-width: 610px;
  color: #d7dce2;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 15, 18, 0.54);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 15px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

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

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

.hero-stats strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.hero-stats span,
.intro p,
.section-head p,
.work-body p,
.work-body span,
.code-grid p,
.project-body p,
.steps-grid p,
.why-list span,
.contact-copy p,
.footer-seo p,
.footer-grid p {
  color: var(--muted);
}

.intro {
  background: #0b0f12;
}

.intro-grid,
.code-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 88px;
  align-items: start;
}

.intro-copy h2 {
  max-width: 520px;
  margin-bottom: 30px;
  font-size: 42px;
  line-height: 1.08;
}

.intro p {
  max-width: 520px;
  margin-bottom: 0;
  color: #b5bbc4;
  font-size: 20px;
  line-height: 1.55;
}

.experience-panel {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.experience-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 36px;
  border-bottom: 0;
  background: transparent;
}

.experience-top span,
.experience-status span {
  color: var(--muted);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 15px;
}

.experience-top strong {
  color: var(--accent);
  font-size: 16px;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-metrics div {
  min-height: 118px;
  padding: 18px 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-metrics div:last-child {
  border-right: 0;
}

.experience-metrics strong,
.experience-metrics span {
  display: block;
}

.experience-metrics strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 32px;
  line-height: 0.95;
  white-space: nowrap;
}

.experience-metrics strong::after {
  content: "+";
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
}

.experience-metrics span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.experience-metrics strong .metric-number {
  display: inline !important;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.experience-chart {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  height: 380px;
  padding: 42px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.chart-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 23px;
  color: #c6cbd2;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 14px;
}

.growth-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
  height: 100%;
  padding-top: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: repeating-linear-gradient(0deg, transparent 0 62px, rgba(255, 255, 255, 0.09) 62px 63px);
}

.growth-bars span {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  height: var(--h);
  min-height: 24px;
  border: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(57, 217, 138, 0.75), rgba(57, 217, 138, 0.2));
  box-shadow: 0 0 18px rgba(57, 217, 138, 0.08);
  color: var(--text);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 11px;
  transform: scaleY(0.18);
  transform-origin: bottom;
  opacity: 0.46;
}

.experience-panel.is-active .growth-bars span {
  animation: growBar 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.07s);
}

.growth-bars span:nth-child(1) { --i: 1; }
.growth-bars span:nth-child(2) { --i: 2; }
.growth-bars span:nth-child(3) { --i: 3; }
.growth-bars span:nth-child(4) { --i: 4; }
.growth-bars span:nth-child(5) { --i: 5; }
.growth-bars span:nth-child(6) { --i: 6; }
.growth-bars span:nth-child(7) { --i: 7; }

@keyframes growBar {
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.growth-bars i,
.growth-bars b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
}

.growth-bars i {
  bottom: -28px;
  color: #77808c;
  font-size: 13px;
}

.growth-bars b {
  top: -28px;
  font-size: 14px;
  font-weight: 700;
}

.experience-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  padding: 0;
  margin-top: 30px;
  border-top: 0;
  background: transparent;
}

.experience-status span {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.experience-status span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.experience-status strong {
  color: var(--text);
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head.wide {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  max-width: none;
  gap: 60px;
}

.section-head.wide .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.card-grid,
.work-grid,
.project-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.projects-head {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.work-card {
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #141414;
  transition: none;
}

.work-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.09);
}

.work-card.is-hidden {
  display: none;
}

.work-card.is-visible {
  display: block;
}

.work-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(57, 217, 138, 0.2), transparent 45%),
    linear-gradient(45deg, rgba(71, 167, 255, 0.24), transparent 54%),
    var(--project-image, none),
    #20242a;
  background-size: cover;
  background-position: center;
}

.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.38));
}

.work-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.work-body {
  padding: 22px;
}

.work-body h3 {
  margin-bottom: 8px;
}

.work-body p {
  margin-bottom: 22px;
  font-weight: 700;
}

.work-body span {
  display: block;
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.load-more-projects {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.roadmap-section,
.code-section {
  background: var(--bg-soft);
}

.roadmap-section {
  background:
    radial-gradient(circle at 50% 12%, rgba(49, 72, 91, 0.18), transparent 34%),
    #080d10;
}

.roadmap-head {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.roadmap-head h2 {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(44px, 4.6vw, 66px);
}

.roadmap-tree {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 46px 34px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px 0 96px;
}

.roadmap-line {
  position: absolute;
  top: 66px;
  bottom: 72px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(57, 217, 138, 0.35), var(--accent), rgba(57, 217, 138, 0.35));
}

.roadmap-start,
.roadmap-release {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 30px;
  border: 1px solid rgba(57, 217, 138, 0.7);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(57, 217, 138, 0.96), rgba(57, 217, 138, 0.68));
  color: #06100b;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap-start {
  top: 24px;
}

.roadmap-release {
  bottom: 0;
  background: transparent;
  color: var(--accent);
}

.roadmap-finish {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 4px;
  transform: translateX(-50%);
}

.roadmap-finish span {
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.roadmap-finish span:nth-child(even) {
  opacity: 0.42;
}

.roadmap-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  width: min(100%, 430px);
  min-height: 154px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(9, 13, 17, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.roadmap-card.left {
  grid-column: 1;
  justify-self: end;
}

.roadmap-card.right {
  grid-column: 3;
  justify-self: start;
}

.roadmap-card:nth-of-type(1) { grid-row: 1; }
.roadmap-card:nth-of-type(2) { grid-row: 2; }
.roadmap-card:nth-of-type(3) { grid-row: 3; }
.roadmap-card:nth-of-type(4) { grid-row: 4; }
.roadmap-card:nth-of-type(5) { grid-row: 5; }
.roadmap-card:nth-of-type(6) { grid-row: 6; }

.roadmap-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;
  border-top: 1px dashed rgba(180, 190, 200, 0.56);
  background: transparent;
}

.roadmap-card.left::after {
  right: -92px;
}

.roadmap-card.right::after {
  left: -92px;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  top: calc(50% - 9px);
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: #080d10;
}

.roadmap-card.left::before {
  right: -108px;
}

.roadmap-card.right::before {
  left: -108px;
}

.roadmap-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.roadmap-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-step {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.roadmap-card h3 {
  margin-bottom: 10px;
}

.roadmap-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.roadmap-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #dce2e8;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
}

.code-window {
  overflow: hidden;
  min-height: 410px;
  border: 1px solid #303846;
  border-radius: 8px;
  background: #0b0f14;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #202833;
  background: #111820;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-top span:nth-child(1) { background: var(--danger); }
.window-top span:nth-child(2) { background: var(--warning); }
.window-top span:nth-child(3) { background: var(--accent); }

.window-top strong {
  margin-left: 10px;
  color: #c7d0dc;
  font-size: 13px;
  font-weight: 600;
}

.code-window pre {
  min-height: 360px;
  margin: 0;
  padding: 24px;
  white-space: pre-wrap;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 15px;
  line-height: 1.7;
}

.token-blue { color: #6cb6ff; }
.token-green { color: #8ddb8c; }
.token-yellow { color: #ffd580; }
.token-red { color: #ff8b8b; }
.token-comment { color: #768390; }
.cursor {
  color: var(--accent);
  animation: blink 0.9s steps(2, start) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.project-card {
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.project-visual {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #0d1217;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.project-visual span {
  position: absolute;
  display: block;
  border-radius: 6px;
  animation: play 4.2s linear infinite;
}

.project-arcade .project-visual span:nth-child(1) {
  width: 48px;
  height: 48px;
  left: 18%;
  top: 42%;
  background: var(--accent);
}

.project-arcade .project-visual span:nth-child(2) {
  width: 80px;
  height: 18px;
  left: 44%;
  top: 64%;
  background: var(--accent-2);
}

.project-arcade .project-visual span:nth-child(3) {
  width: 160px;
  height: 12px;
  left: 30%;
  bottom: 24%;
  background: #f4f6f8;
}

.project-online .project-visual span {
  width: 58px;
  height: 58px;
  border: 2px solid var(--accent-2);
}

.project-online .project-visual span:nth-child(1) { left: 24%; top: 26%; }
.project-online .project-visual span:nth-child(2) { left: 58%; top: 42%; animation-delay: -1.3s; }
.project-online .project-visual span:nth-child(3) { left: 38%; top: 62%; animation-delay: -2.2s; }

.project-web .project-visual span:nth-child(1) {
  width: 72%;
  height: 58%;
  left: 14%;
  top: 20%;
  border: 2px solid var(--accent);
}

.project-web .project-visual span:nth-child(2) {
  width: 38%;
  height: 14px;
  left: 24%;
  top: 38%;
  background: var(--warning);
}

.project-web .project-visual span:nth-child(3) {
  width: 28%;
  height: 44px;
  right: 24%;
  bottom: 28%;
  background: var(--accent-2);
}

@keyframes play {
  50% { transform: translate(16px, -10px); }
}

.project-body {
  padding: 24px;
}

.process {
  background: #080a0d;
}

.process-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  grid-template-rows: repeat(2, 120px);
  max-width: 820px;
  margin: 12px auto 46px;
}

.process-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 24px;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-light);
  font-weight: 800;
}

.node-left { grid-column: 1; justify-self: end; }
.node-right { grid-column: 3; justify-self: start; }
.node-left.top,
.node-right.top { grid-row: 1; }
.node-left.bottom,
.node-right.bottom { grid-row: 2; }

.process-spine {
  grid-column: 2;
  grid-row: 1 / -1;
  justify-self: center;
  width: 2px;
  background: linear-gradient(var(--accent-2), var(--accent));
}

.process-line {
  position: relative;
  grid-column: 2;
  justify-self: stretch;
  align-self: center;
  height: 2px;
  background: var(--line);
}

.process-line.top { grid-row: 1; }
.process-line.bottom { grid-row: 2; }

.process-code {
  max-width: 820px;
  margin: 0 auto 46px;
}

.code-window-small {
  min-height: 260px;
}

.code-window-small pre {
  min-height: 210px;
  font-size: 14px;
}

.steps-grid article {
  padding: 26px;
}

.steps-grid strong {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
}

.approach-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 10%, rgba(49, 72, 91, 0.18), transparent 34%),
    #080d10;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.approach-copy {
  width: min(100%, 900px);
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.approach-kicker {
  padding-left: 0;
  margin-bottom: 16px;
}

.approach-copy h2 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
}

.approach-copy h2 strong {
  display: inline;
  color: var(--accent);
  font-size: inherit;
  line-height: inherit;
}

.approach-copy p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: #b5bbc4;
  font-size: 19px;
  line-height: 1.55;
}

.approach-checks {
  display: grid;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  margin: 34px auto 0;
  list-style: none;
  color: #c7cdd5;
  font-size: 18px;
  text-align: left;
}

.approach-checks li {
  position: relative;
  padding-left: 36px;
}

.approach-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.approach-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.approach-cta svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-divider {
  display: none;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 930px);
  margin: 34px auto 0;
}

.approach-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.approach-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 44%),
    rgba(9, 13, 17, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.approach-icon,
.approach-stats span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.approach-icon svg,
.approach-stats svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.approach-card p {
  margin-bottom: 0;
  color: #b5bbc4;
  font-size: 16px;
  line-height: 1.55;
}

.approach-card::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 26px;
  background: var(--accent);
}

.approach-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 930px);
  margin: 32px auto 0;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 13, 17, 0.72);
}

.approach-stats div {
  display: block;
  min-height: 82px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.approach-stats div:last-child {
  border-right: 0;
}

.approach-stats span {
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.approach-stats svg {
  width: 34px;
  height: 34px;
}

.approach-stats strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
}

.approach-stats p {
  margin: 4px auto 0;
  color: #b5bbc4;
  font-size: 14px;
  line-height: 1.45;
}

.contact-section {
  background: var(--bg);
}

.contact-copy h2 {
  max-width: 650px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: var(--panel);
}

.contact-links a:first-child {
  border-color: var(--text);
  color: var(--bg);
  background: var(--text);
  font-weight: 800;
}

.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  background: #050607;
  pointer-events: none;
  user-select: none;
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.18) 16%, rgba(5, 6, 7, 0.12) 84%, #050607 100%),
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.08) 20%, rgba(5, 6, 7, 0.16) 76%, #050607 100%),
    radial-gradient(circle at 24% 18%, rgba(57, 217, 138, 0.22), transparent 32%);
  pointer-events: none;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

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

.footer-seo {
  padding: 72px 0 38px;
}

.footer-seo h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

.footer-seo p {
  max-width: 980px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.footer-grid h3 {
  font-size: 15px;
}

.footer-grid a {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: #77808c;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0b0d10;
  }

  .main-nav.is-open a {
    padding: 14px;
  }

  .hero {
    min-height: 680px;
  }
}

@media (max-width: 920px) {

  .intro-grid,
  .code-grid,
  .why-grid,
  .contact-grid,
  .section-head.wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid,
  .work-grid,
  .approach-cards,
  .project-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .approach-divider {
    display: none;
  }

  .approach-card {
    padding: 22px;
  }

  .approach-card h3 {
    font-size: 21px;
  }

  .approach-card p {
    font-size: 15px;
  }

  .approach-copy h2,
  .approach-copy p {
    max-width: 760px;
  }

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

  .approach-stats div:nth-child(2) {
    border-right: 0;
  }

  .approach-stats div:nth-child(-n + 2) {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .approach-stats div:nth-child(n + 3) {
    padding-top: 24px;
  }

  .approach-stats div {
    min-height: 92px;
  }

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

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

  .experience-metrics div {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .experience-metrics div:last-child {
    border-right: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .roadmap-tree {
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    gap: 34px 24px;
  }

  .roadmap-card {
    width: min(100%, 360px);
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .roadmap-icon {
    width: 54px;
    height: 54px;
  }

  .roadmap-card.left::after {
    right: -70px;
    width: 68px;
  }

  .roadmap-card.right::after {
    left: -70px;
    width: 68px;
  }

  .roadmap-card.left::before {
    right: -86px;
  }

  .roadmap-card.right::before {
    left: -86px;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }
}

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

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .card-grid,
  .work-grid,
  .approach-cards,
  .project-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .approach-copy h2 {
    font-size: 36px;
  }

  .approach-copy h2 strong {
    font-size: inherit;
  }

  .approach-checks {
    width: 100%;
  }

  .approach-cta {
    width: 100%;
  }

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

  .approach-stats {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .approach-stats div,
  .approach-stats div:nth-child(2),
  .approach-stats div:nth-child(-n + 2),
  .approach-stats div:nth-child(n + 3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .approach-stats div:first-child {
    padding-top: 0;
  }

  .approach-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

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

  .intro-copy h2 {
    font-size: 42px;
  }

  .intro p {
    font-size: 18px;
  }

  .experience-top,
  .experience-metrics,
  .experience-status {
    grid-template-columns: 1fr;
  }

  .experience-top {
    display: grid;
    gap: 8px;
    padding-bottom: 24px;
  }

  .experience-metrics div {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .experience-metrics div:last-child {
    border-bottom: 0;
  }

  .experience-chart {
    grid-template-columns: 32px 1fr;
    gap: 8px;
    height: 300px;
    padding-top: 32px;
  }

  .growth-bars {
    gap: 6px;
  }

  .growth-bars i {
    font-size: 9px;
  }

  .growth-bars b {
    font-size: 10px;
  }

  .experience-status {
    gap: 16px;
  }

  .process-map {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
    margin-bottom: 34px;
  }

  .roadmap-tree {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 16px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .roadmap-line {
    left: 22px;
    transform: none;
  }

  .roadmap-finish {
    left: 22px;
    transform: translateX(-50%);
  }

  .roadmap-start,
  .roadmap-release {
    left: 0;
    transform: none;
    min-width: 58px;
    height: 28px;
    font-size: 10px;
  }

  .roadmap-card.left,
  .roadmap-card.right {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
  }

  .roadmap-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%),
      #0a0f13;
    backdrop-filter: none;
  }

  .roadmap-card.left::after,
  .roadmap-card.right::after {
    left: -15px;
    right: auto;
    width: 15px;
  }

  .roadmap-card.left::before,
  .roadmap-card.right::before {
    left: -34px;
    right: auto;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .roadmap-icon {
    width: 48px;
    height: 48px;
  }

  .roadmap-icon svg {
    width: 28px;
    height: 28px;
  }

  .roadmap-head h2 {
    font-size: 36px;
  }

  .roadmap-tags {
    gap: 6px;
  }

  .roadmap-tags span {
    min-height: 26px;
    padding: 0 8px;
    font-size: 11px;
  }

  .process-node,
  .node-left,
  .node-right,
  .node-left.top,
  .node-right.top,
  .node-left.bottom,
  .node-right.bottom {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }

  .process-spine,
  .process-line {
    display: none;
  }

  .why-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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