:root {
  --bg: #0b1d26;
  --bg-deep: #07151d;
  --bg-soft: #102936;
  --accent: #ff6b4a;
  --accent-strong: #ff5636;
  --text: #f5f8fa;
  --muted: #a9b7be;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 107, 74, 0.52);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --glow: 0 0 36px rgba(255, 107, 74, 0.34), 0 0 90px rgba(255, 107, 74, 0.18);
  --container: 1280px;
  --header: 84px;
  --tech-strip-height: 94px;
  --page-gutter: clamp(48px, 5.5vw, 160px);
  --page-progress: 0%;
  --page-progress-alpha: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  background: var(--bg-deep);
}

html.js:not(.i18n-ready) body {
  opacity: 0;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 28%, #081922 100%);
  background-size: 100px 100px, auto;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  transition: opacity 160ms ease;
}

.asmr-background-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

body.asmr-background-active .asmr-background-canvas {
  opacity: 0.58;
}

body::selection {
  background: var(--accent);
  color: #07151d;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4px;
  overflow: visible;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 107, 74, 0.08));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--page-progress);
  max-width: 100%;
  opacity: var(--page-progress-alpha);
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #ff3b2e 0%, var(--accent) 34%, #fff0a6 68%, #7cf7ff 100%);
  box-shadow:
    0 0 8px rgba(255, 107, 74, 0.78),
    0 0 20px rgba(255, 107, 74, 0.42),
    0 0 34px rgba(124, 247, 255, 0.32);
  transition: width 90ms linear, opacity 160ms ease;
}

.page-progress-bar::before,
.page-progress-bar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-progress-bar::before {
  inset: -6px -18px -6px 0;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0), rgba(255, 107, 74, 0.38), rgba(124, 247, 255, 0.42));
  filter: blur(10px);
}

.page-progress-bar::after {
  top: 50%;
  right: -28px;
  width: 56px;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 240, 166, 0), rgba(255, 240, 166, 0.95) 42%, rgba(124, 247, 255, 0.95));
  filter: blur(1px);
  opacity: 0.86;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

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

.section-pad {
  padding-block: 128px;
}

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

main,
.footer {
  position: relative;
  z-index: 1;
}

.navbar {
  width: auto;
  height: var(--header);
  margin-inline: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-switcher button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.language-switcher button[aria-pressed="true"] {
  color: #07151d;
  background: var(--accent);
}

.nav-control,
.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100vh - var(--tech-strip-height)));
  padding-top: var(--header);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 21, 29, 0.98) 0%, rgba(7, 21, 29, 0.88) 34%, rgba(7, 21, 29, 0.42) 62%, rgba(7, 21, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 21, 29, 0.32) 0%, rgba(7, 21, 29, 0) 48%, rgba(7, 21, 29, 0.74) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: none;
  margin-inline: var(--page-gutter);
}

.eyebrow {
  color: var(--text);
  font-size: 3.45rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 32px;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 107, 74, 0.72);
}

.hero h1 {
  color: var(--text);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
  max-width: 680px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-size: 2.65rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero-kicker::before {
  content: "";
  width: clamp(56px, 6vw, 78px);
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 107, 74, 0.42);
}

.hero-kicker-text {
  display: inline-block;
}

.hero-title-line {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.hero-description {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-scramble {
  font-variant-ligatures: none;
}

.hero-scramble .dud {
  color: var(--accent);
  opacity: 0.82;
  text-shadow: 0 0 12px rgba(255, 107, 74, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 44px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 4px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(255, 107, 74, 0.16);
}

.btn-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 16px 40px rgba(255, 107, 74, 0.28);
}

.btn-outline {
  color: var(--text);
  background: transparent;
  border: 2px solid var(--line-strong);
}

.btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(255, 107, 74, 0.12);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-art {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.hero-rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 92%);
  mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 92%);
}

.rain-char {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(245, 248, 250, 0.22);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.34;
  text-shadow: none;
  transform: translate3d(0, 0, 0);
  transition: color 120ms ease, opacity 120ms ease, text-shadow 120ms ease, font-size 120ms ease;
  will-change: transform;
}

.rain-char.is-active {
  color: var(--accent);
  font-size: 1.35rem;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(255, 107, 74, 0.85), 0 0 26px rgba(255, 107, 74, 0.4);
}

.portrait-ring {
  position: absolute;
  width: clamp(320px, 36vw, 520px);
  height: clamp(320px, 36vw, 520px);
  border: clamp(34px, 4.2vw, 62px) solid rgba(255, 107, 74, 0.86);
  border-radius: 50%;
  filter: drop-shadow(0 0 26px rgba(255, 107, 74, 0.5));
  box-shadow: var(--glow);
  animation: ringPulse 4.6s ease-in-out infinite;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  width: clamp(260px, 29vw, 390px);
  height: clamp(260px, 29vw, 390px);
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(7, 21, 29, 0.32));
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.shape {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 107, 74, 0.25);
  font-size: 10rem;
  font-weight: 300;
  line-height: 1;
  z-index: 1;
  user-select: none;
}

.shape-left {
  top: 18%;
  left: 3%;
  transform: rotate(180deg);
}

.shape-right {
  right: 0;
  bottom: 18%;
}

.tech-strip {
  background: rgba(13, 34, 45, 0.86);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 12px 34px rgba(0, 0, 0, 0.14);
}

.tech-strip-inner {
  width: auto;
  min-height: var(--tech-strip-height);
  margin-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(7, minmax(max-content, 1fr));
  align-items: center;
  gap: 28px;
}

.tech-strip span {
  color: rgba(245, 248, 250, 0.22);
  font-size: 1.55rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.tech-strip span:hover {
  color: var(--accent);
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(64px, 10vw, 150px);
}

.services {
  position: relative;
  display: grid;
  gap: 62px;
  padding-left: 48px;
}

.services::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 107, 74, 0.38));
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.timeline-dot {
  position: absolute;
  left: -46px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 107, 74, 0.7);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--text);
}

.service-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 700;
}

.about-copy h2,
.section-heading h2,
.contact h2 {
  color: var(--text);
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-copy p {
  max-width: 720px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
  margin-top: 54px;
  max-width: 280px;
}

.stats strong {
  display: block;
  color: var(--text);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
}

.stats strong span {
  color: var(--accent);
}

.stats p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.projects {
  padding-top: 70px;
}

.section-heading {
  display: grid;
  place-items: center;
  gap: 44px;
  margin-bottom: 112px;
  text-align: center;
}

.section-heading span {
  width: 3px;
  height: 70px;
  position: relative;
  background: linear-gradient(180deg, var(--accent), rgba(255, 107, 74, 0));
}

.section-heading span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(255, 107, 74, 0.72);
}

.projects-list {
  display: grid;
  gap: clamp(100px, 12vw, 168px);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}

.project-row-reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
}

.project-info h3 {
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--text);
  background: rgba(17, 46, 60, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
}

.project-info p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  margin-top: 46px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--line-strong);
}

.text-link::after {
  content: "↗";
  color: var(--text);
  font-size: 1.2rem;
  transform: translateY(-1px);
}

.text-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.project-preview {
  min-height: 290px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(4, 14, 20, 0.76);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.project-preview:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 107, 74, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 36px rgba(255, 107, 74, 0.12);
}

.preview-top,
.browser-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-top span,
.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}

.arcadev-preview {
  padding: 74px 34px 34px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 107, 74, 0.18), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(45, 212, 191, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(4, 14, 20, 0.96), rgba(14, 40, 53, 0.78));
}

.arcadev-preview::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -26%;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(255, 107, 74, 0.12);
}

.arcadev-preview .preview-top {
  position: absolute;
  inset: 0 0 auto;
}

.arcadev-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 6px;
  background: rgba(5, 19, 27, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.arcadev-panel-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.arcadev-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07141b;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 107, 74, 0.34);
}

.arcadev-panel-header strong,
.arcadev-queue strong {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
}

.arcadev-panel-header small,
.arcadev-queue small,
.arcadev-metrics small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.arcadev-live {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  color: var(--text);
  background: rgba(255, 107, 74, 0.16);
  border: 1px solid rgba(255, 107, 74, 0.26);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.arcadev-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.arcadev-metrics span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.arcadev-metrics strong {
  color: var(--accent);
  font-size: 1.55rem;
  line-height: 1;
}

.arcadev-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.arcadev-flow span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  color: var(--text);
  background: rgba(16, 41, 54, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.arcadev-flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.08), rgba(255, 107, 74, 0.7));
}

.arcadev-queue {
  display: grid;
  gap: 10px;
}

.arcadev-queue div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  background: rgba(16, 41, 54, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.arcadev-queue div:first-child {
  border-color: rgba(255, 107, 74, 0.28);
  box-shadow: 0 0 22px rgba(255, 107, 74, 0.1);
}

.api-preview {
  padding: 54px 46px;
  display: grid;
  align-content: center;
  gap: 15px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.api-preview code,
.code-preview code {
  color: #d8e8ed;
  font-size: 1rem;
}

.api-preview code::before {
  content: ">";
  margin-right: 10px;
  color: var(--accent);
}

.api-preview .response {
  color: #9ce6bd;
}

.mathi-preview {
  min-height: 340px;
  background: #f6f7ff;
}

.mathi-preview-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.verso-preview {
  min-height: 380px;
  padding: 56px 42px 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(251, 191, 36, 0.2), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(244, 114, 182, 0.14), transparent 34%),
    linear-gradient(180deg, #1f2937 0%, #07151d 100%);
}

.verso-preview::before {
  border-color: rgba(251, 191, 36, 0.2);
}

.verso-preview .browser-bar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.verso-preview-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--text);
  background: rgba(31, 41, 55, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.verso-preview-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.verso-logo {
  width: 62px;
  height: 62px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 50%;
}

.verso-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.28);
}

.verso-preview-header strong {
  color: #fcd34d;
  font-size: 1.35rem;
}

.verso-preview-header small {
  display: block;
  color: rgba(245, 248, 250, 0.62);
  font-size: 0.84rem;
}

.verso-preview-pill {
  width: fit-content;
  padding: 8px 12px;
  color: #ffe4e6;
  background: rgba(244, 114, 182, 0.16);
  border: 1px solid rgba(244, 114, 182, 0.28);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.verso-verse-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 15% 20%, rgba(251, 191, 36, 0.32), transparent 32%),
    #102936;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.verso-verse-card small {
  color: rgba(245, 248, 250, 0.56);
}

.verso-verse-card p {
  margin-top: 8px;
  color: var(--text);
  font-size: 1.36rem;
  line-height: 1.38;
}

.verso-verse-card strong {
  display: block;
  margin-top: 10px;
  color: #fcd34d;
  font-size: 0.92rem;
}

.verso-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.verso-actions span {
  padding: 8px 12px;
  color: rgba(245, 248, 250, 0.74);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.member-count-preview {
  min-height: 380px;
  padding: 56px 42px 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(59, 130, 246, 0.26), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(255, 107, 74, 0.12), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #07151d 100%);
}

.member-count-preview::before {
  border-color: rgba(59, 130, 246, 0.24);
}

.member-count-preview .browser-bar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.member-count-app {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--text);
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.member-count-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.member-count-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #eff6ff;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.3);
}

.member-count-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.member-count-top strong {
  color: #0f172a;
  font-size: 1.2rem;
}

.member-count-top small {
  display: block;
  color: #64748b;
  font-size: 0.84rem;
}

.member-count-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px;
  color: #eff6ff;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  border-radius: 8px;
}

.member-count-total span {
  color: rgba(239, 246, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.member-count-total strong {
  font-size: 3.3rem;
  line-height: 0.9;
}

.member-count-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.member-count-grid span {
  display: grid;
  gap: 2px;
  padding: 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.member-count-grid strong {
  color: #1d4ed8;
  font-size: 1.35rem;
}

.member-count-grid small {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.member-count-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-count-actions span {
  padding: 8px 12px;
  color: #1e3a8a;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.code-preview {
  padding: 54px 48px;
  display: flex;
  align-items: center;
}

.code-preview pre {
  overflow: auto;
  color: #d8e8ed;
}

.code-preview code {
  line-height: 1.8;
  white-space: pre;
}

.career {
  padding-top: 70px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 74, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(7, 21, 29, 0) 0%, rgba(13, 34, 45, 0.24) 52%, rgba(7, 21, 29, 0) 100%);
}

.career-meta {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 700;
}

.career-company {
  margin: -18px 0 28px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.career-highlights {
  display: grid;
  gap: 14px;
  max-width: 660px;
  margin-top: 30px;
  list-style: none;
}

.career-highlights li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.career-highlights li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 13px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 107, 74, 0.52);
}

.career-preview {
  min-height: 340px;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 74px 34px 34px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 107, 74, 0.16), transparent 30%),
    rgba(4, 14, 20, 0.76);
}

.career-preview .preview-top {
  position: absolute;
  inset: 0 0 auto;
}

.harris-preview {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 107, 74, 0.18), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(45, 212, 191, 0.1), transparent 36%),
    rgba(4, 14, 20, 0.78);
}

.career-preview-header {
  display: grid;
  gap: 8px;
}

.career-preview-header span {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.career-preview-header strong {
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.18;
}

.career-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.career-metrics div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 18px;
  background: rgba(16, 41, 54, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.career-metrics strong {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

.career-metrics span,
.career-stack span,
.career-cloud-map span,
.career-network span {
  color: var(--muted);
  font-size: 0.82rem;
}

.career-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-stack span,
.career-cloud-map span,
.career-network span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: rgba(255, 107, 74, 0.08);
  border: 1px solid rgba(255, 107, 74, 0.18);
  border-radius: 999px;
}

.career-cloud-map,
.career-network {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.career-progress {
  display: grid;
  gap: 18px;
}

.career-progress span {
  position: relative;
  display: block;
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.career-progress span::before,
.career-progress span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  border-radius: 999px;
}

.career-progress span::before {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.career-progress span::after {
  width: var(--value);
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 107, 74, 0.5);
}

.career-terminal {
  display: grid;
  gap: 16px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.career-terminal code {
  color: #d8e8ed;
  font-size: 0.96rem;
}

.career-terminal code::before {
  content: ">";
  margin-right: 10px;
  color: var(--accent);
}

.career-signal {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.career-signal span {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 107, 74, 0.16));
  box-shadow: 0 0 18px rgba(255, 107, 74, 0.2);
}

.career-signal span:nth-child(2) {
  width: 78%;
}

.career-signal span:nth-child(3) {
  width: 54%;
}

.recommendations {
  padding-top: 70px;
  background:
    radial-gradient(circle at 18% 20%, rgba(45, 212, 191, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(7, 21, 29, 0) 0%, rgba(13, 34, 45, 0.18) 52%, rgba(7, 21, 29, 0) 100%);
}

.recommendations-lead {
  max-width: 760px;
  margin: -30px auto 34px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
  text-align: center;
}

.recommendation-source {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.retro-testimonials {
  position: relative;
  margin-top: 36px;
}

.retro-testimonials-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 24px 4px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 92%, transparent 100%);
}

.retro-testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.retro-testimonials-track {
  width: max-content;
  display: flex;
  gap: 22px;
  padding-inline: max(12px, calc((100vw - var(--container)) / 2));
}

.retro-testimonial-card {
  position: relative;
  width: min(360px, calc(100vw - 68px));
  min-height: 500px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px 28px;
  overflow: hidden;
  color: var(--text);
  text-align: center;
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 107, 74, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(16, 41, 54, 0.98), rgba(4, 14, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  scroll-snap-align: center;
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.retro-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.retro-testimonial-card:hover,
.retro-testimonial-card:focus-visible {
  transform: translateY(-8px) rotate(1deg);
  border-color: rgba(255, 107, 74, 0.44);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 38px rgba(255, 107, 74, 0.14);
  outline: none;
}

.retro-testimonial-card > *:not(.retro-testimonial-texture) {
  position: relative;
  z-index: 1;
}

.retro-testimonial-texture {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.retro-avatar {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #07151d;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, #ff8a68, var(--accent));
  border: 3px solid rgba(245, 248, 250, 0.78);
  border-radius: 50%;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), 0 0 32px rgba(255, 107, 74, 0.22);
  font-size: 1.7rem;
  font-weight: 900;
}

.retro-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retro-testimonial-quote {
  display: -webkit-box;
  min-height: 132px;
  overflow: hidden;
  color: rgba(245, 248, 250, 0.84);
  font-size: 1.08rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.retro-testimonial-quote::before,
.testimonial-modal-panel blockquote::before {
  content: "“";
  color: var(--accent);
}

.retro-testimonial-quote::after,
.testimonial-modal-panel blockquote::after {
  content: "”";
  color: var(--accent);
}

.retro-testimonial-card strong {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.25;
}

.retro-testimonial-card small {
  max-width: 280px;
  color: rgba(215, 226, 233, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.retro-testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-right: 4px;
}

.retro-testimonial-arrow {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 107, 74, 0.14);
  border: 1px solid rgba(255, 107, 74, 0.36);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.retro-testimonial-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 107, 74, 0.24);
}

.retro-testimonial-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.retro-testimonial-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.recommendations-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.testimonial-modal[hidden] {
  display: none;
}

.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.testimonial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 20, 0.72);
  backdrop-filter: blur(18px);
}

.testimonial-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(28px, 5vw, 64px);
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 107, 74, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(16, 41, 54, 0.98), rgba(4, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.5);
}

.testimonial-modal-close {
  position: sticky;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: var(--text);
  background: rgba(255, 107, 74, 0.16);
  border: 1px solid rgba(255, 107, 74, 0.36);
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.testimonial-modal-panel h3 {
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.testimonial-modal-role {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.testimonial-modal-panel blockquote {
  margin: 36px 0;
  color: rgba(245, 248, 250, 0.86);
  font-size: clamp(1.3rem, 2.4vw, 2.15rem);
  font-weight: 300;
  line-height: 1.45;
}

body.testimonial-modal-open {
  overflow: hidden;
}

.articles {
  padding-top: 70px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 107, 74, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(7, 21, 29, 0) 0%, rgba(13, 34, 45, 0.2) 54%, rgba(7, 21, 29, 0) 100%);
}

.article-meta {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 700;
}

.article-preview {
  min-height: 340px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 74px 34px 34px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 107, 74, 0.16), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(45, 212, 191, 0.09), transparent 36%),
    rgba(4, 14, 20, 0.78);
}

.article-preview-image-card {
  min-height: 340px;
  padding: 0;
  display: block;
  background: #020b12;
}

.article-preview-image-card::before {
  inset: 0;
  border-color: rgba(82, 154, 255, 0.16);
}

.article-preview-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: contain;
}

.article-preview .preview-top {
  position: absolute;
  inset: 0 0 auto;
}

.article-preview-header {
  display: grid;
  gap: 8px;
}

.article-preview-header span {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-preview-header strong {
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.18;
}

.article-preview-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-preview-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 14px;
  color: var(--muted);
  background: rgba(255, 107, 74, 0.08);
  border: 1px solid rgba(255, 107, 74, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.article-preview-lines {
  display: grid;
  gap: 14px;
}

.article-preview-lines span {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-preview-lines span::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 13px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 107, 74, 0.52);
}

.article-terminal {
  display: grid;
  gap: 16px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.article-terminal code {
  color: #d8e8ed;
  font-size: 0.96rem;
}

.article-terminal code::before {
  content: ">";
  margin-right: 10px;
  color: var(--accent);
}

.articles-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: rgba(16, 41, 54, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.articles-cta p {
  max-width: 620px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.contact h2 {
  font-size: 3.65rem;
}

.contact h2 span {
  display: block;
}

.contact-label {
  position: relative;
  margin-bottom: 34px;
  padding-left: 96px;
  color: var(--text);
  font-size: 1.02rem;
}

.contact-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 76px;
  height: 3px;
  background: var(--accent);
  transform: translateY(-50%);
}

.contact-copy .btn {
  margin-top: 58px;
}

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

.contact-form label {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  outline: none;
  padding: 10px 0 18px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 10px 0 -9px rgba(255, 107, 74, 0.7);
}

.form-button {
  justify-self: start;
  margin-top: 14px;
}

.footer {
  padding: 62px 24px 54px;
  color: var(--text);
  background: rgba(13, 34, 45, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer h2 {
  font-size: 1.7rem;
  font-weight: 800;
}

.footer p {
  margin-top: 12px;
  color: var(--muted);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
  list-style: none;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--text);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 34px rgba(255, 107, 74, 0.28);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links li:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fade-in {
  animation: fadeUp 700ms ease both;
}

.project-row:nth-child(2),
.project-row:nth-child(4),
.about-copy,
.hero-visual,
.contact-form {
  animation-delay: 120ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

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

  .hero-rain {
    display: none;
  }

  .asmr-background-canvas {
    display: none;
  }

  .page-progress-bar {
    transition: none;
  }
}

@media (min-width: 1600px) {
  .section-shell {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1920px);
  }
}

@media (max-width: 1180px) {
  :root {
    --page-gutter: 36px;
  }

  .eyebrow {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .hero-kicker {
    font-size: 2.25rem;
  }

  .tech-strip-inner {
    overflow-x: auto;
    justify-content: start;
    scrollbar-width: none;
  }

  .tech-strip-inner::-webkit-scrollbar {
    display: none;
  }

}

@media (max-width: 940px) {
  :root {
    --header: 76px;
    --page-gutter: 18px;
  }

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

  .section-pad {
    padding-block: 92px;
  }

  .navbar {
    width: auto;
    margin-inline: var(--page-gutter);
  }

  .logo {
    order: 1;
  }

  .nav-toggle {
    order: 3;
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle span {
    width: 28px;
    height: 2px;
    margin-inline: auto;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu {
    order: 4;
    position: fixed;
    top: var(--header);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(7, 21, 29, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu a {
    padding: 14px 16px;
  }

  .nav-control:checked ~ .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-control:checked + .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-control:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-control:checked + .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .hero {
    min-height: 820px;
    padding-top: calc(var(--header) + 68px);
    padding-bottom: 76px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 21, 29, 0.96) 0%, rgba(7, 21, 29, 0.86) 42%, rgba(7, 21, 29, 0.42) 72%, rgba(7, 21, 29, 0.2) 100%),
      linear-gradient(90deg, rgba(7, 21, 29, 0.86) 0%, rgba(7, 21, 29, 0.36) 100%);
  }

  .hero-copy {
    width: auto;
    max-width: var(--container);
    margin-inline: var(--page-gutter);
  }

  .hero-kicker {
    font-size: 2.2rem;
    gap: 16px;
  }

  .eyebrow {
    font-size: 2.8rem;
  }

  .hero h1,
  .about-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: 3.75rem;
  }

  .shape {
    font-size: 7rem;
  }

  .tech-strip span {
    font-size: 1.25rem;
  }

  .hero-visual {
    overflow: hidden;
  }

  .hero-art {
    width: 100%;
    height: 100%;
    transform: none;
    object-position: 66% center;
  }

  .tech-strip-inner {
    width: auto;
    margin-inline: var(--page-gutter);
    grid-template-columns: repeat(7, max-content);
  }

  .about {
    gap: 76px;
  }

  .services {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .project-row,
  .project-row-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .project-row-reverse .project-info {
    order: 1;
  }

  .project-row-reverse .project-preview {
    order: 2;
  }

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

  .projects-list {
    gap: 92px;
  }

  .retro-testimonials-track {
    padding-inline: 18px;
  }

  .retro-testimonial-card {
    min-height: 460px;
  }

  .articles-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .articles-cta .btn {
    width: auto;
  }

  .contact {
    gap: 58px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 14px;
  }

  .section-shell,
  .tech-strip-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .navbar,
  .tech-strip-inner {
    width: auto;
    margin-inline: var(--page-gutter);
  }

  .logo {
    font-size: 1.2rem;
  }

  .eyebrow {
    font-size: 2.05rem;
    margin-bottom: 24px;
  }

  .hero h1,
  .about-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: 2.8rem;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    font-size: 1.65rem;
  }

  .hero-kicker::before {
    width: 72px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-copy {
    width: auto;
    margin-inline: var(--page-gutter);
  }

  .hero-actions,
  .project-actions {
    width: 100%;
    gap: 16px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 22px;
  }

  .text-link {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-art {
    width: 100%;
    height: 100%;
    transform: none;
    object-position: 67% center;
  }

  .shape {
    font-size: 5.2rem;
    opacity: 0.65;
  }

  .tech-strip span,
  .service-item h3 {
    font-size: 1.08rem;
  }

  .stats strong {
    font-size: 2.25rem;
  }

  .project-info h3 {
    font-size: 1.55rem;
  }

  .api-preview code,
  .code-preview code {
    font-size: 0.82rem;
  }

  .verso-verse-card p {
    font-size: 1.18rem;
  }

  .articles-cta {
    padding: 22px;
  }

  .recommendations-lead {
    margin-top: -42px;
    text-align: left;
  }

  .retro-testimonials-viewport {
    mask-image: none;
  }

  .retro-testimonials-track {
    gap: 14px;
    padding-inline: 0;
  }

  .retro-testimonial-card {
    width: min(320px, calc(100vw - 42px));
    min-height: 430px;
    padding: 28px 22px;
  }

  .retro-avatar {
    width: 92px;
    height: 92px;
    font-size: 1.3rem;
  }

  .retro-testimonial-quote {
    min-height: 120px;
    font-size: 1rem;
  }

  .retro-testimonials-controls {
    justify-content: center;
  }

  .testimonial-modal {
    padding: 14px;
  }

  .testimonial-modal-panel {
    max-height: calc(100vh - 28px);
  }

  .tech-strip-inner {
    min-height: 78px;
    gap: 30px;
  }

  .services {
    gap: 44px;
    padding-left: 34px;
  }

  .service-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
  }

  .service-icon,
  .service-icon svg {
    width: 42px;
    height: 42px;
  }

  .timeline-dot {
    left: -32px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats p {
    margin-top: 10px;
  }

  .project-preview {
    min-height: 250px;
  }

  .arcadev-preview,
  .api-preview,
  .code-preview,
  .career-preview,
  .article-preview {
    padding-inline: 22px;
  }

  .arcadev-panel {
    padding: 20px;
  }

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

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

  .arcadev-flow i {
    display: none;
  }

  .career-metrics,
  .career-cloud-map,
  .career-network,
  .article-preview-tags {
    grid-template-columns: 1fr;
  }

  .career-preview-header strong,
  .article-preview-header strong {
    font-size: 1.25rem;
  }

  .career-terminal code,
  .article-terminal code {
    font-size: 0.78rem;
  }

  .arcadev-queue div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 14px;
  }

  .verso-preview {
    padding-inline: 22px;
  }

  .verso-preview-card,
  .member-count-app {
    padding: 20px;
  }

  .member-count-preview {
    padding-inline: 22px;
  }

  .member-count-total strong {
    font-size: 2.7rem;
  }

  .contact-label {
    padding-left: 68px;
  }

  .contact-label::before {
    width: 52px;
  }
}
