:root {
  --bg: #07090e;
  --panel: #0d1119;
  --panel2: #111722;
  --text: #f4f6fa;
  --muted: #919bab;
  --line: #222b39;
  --blue: #5e8cff;
  --cyan: #5be0d0;
  --lime: #c7ff68;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.55 Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 8%, rgba(55, 90, 190, 0.14), transparent 28%),
    radial-gradient(circle at 8% 34%, rgba(22, 150, 130, 0.08), transparent 25%);
  z-index: -1;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 900;
  letter-spacing: 0.1em;
}
.brand i {
  font-style: normal;
  color: var(--blue);
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
}
.nav-links a:hover,
.footer a:hover {
  color: white;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.02);
}
.contact-link:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65dd8f;
  box-shadow: 0 0 0 5px rgba(101, 221, 143, 0.09);
}
.hero {
  min-height: 650px;
  padding: 86px 0 72px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
  align-items: center;
}
.eyebrow,
.label {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  color: var(--cyan);
}
.hero h1 {
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 20px 0 25px;
}
.hero h1 em,
.section-title em,
.project-hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--blue);
}
.hero-copy > p {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 800;
  background: var(--panel);
}
.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
}
.hero-console {
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #121a29, #090d14);
  overflow: hidden;
  position: relative;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}
.console-top {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font:
    10px Menlo,
    monospace;
  color: #718096;
}
.console-top i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  margin-left: 6px;
}
.console-body {
  height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  background-image:
    linear-gradient(rgba(94, 140, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 140, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
}
.dev-core {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #668fff, #345dcc);
  box-shadow:
    0 0 0 35px rgba(94, 140, 255, 0.04),
    0 0 0 70px rgba(94, 140, 255, 0.035);
}
.dev-core small {
  font-size: 8px;
  letter-spacing: 0.2em;
}
.dev-core b {
  font-size: 26px;
}
.float-tech {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid #30405a;
  border-radius: 8px;
  background: #111927;
  font: 700 10px Menlo;
}
.ft1 {
  left: 45px;
  top: 55px;
}
.ft2 {
  right: 35px;
  top: 78px;
}
.ft3 {
  left: 55px;
  bottom: 42px;
}
.ft4 {
  right: 55px;
  bottom: 28px;
}
.console-foot {
  height: 78px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.console-foot div {
  padding: 15px 18px;
}
.console-foot div + div {
  border-left: 1px solid var(--line);
}
.console-foot span {
  display: block;
  color: #6f7b8e;
  font-size: 8px;
  letter-spacing: 0.14em;
}
.console-foot b {
  font-size: 11px;
}
.green {
  color: #65dd8f;
}
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #090d14;
}
.marquee div {
  min-width: max-content;
  padding: 17px 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #aab4c4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.marquee i {
  font-style: normal;
  color: var(--blue);
}
.section {
  padding: 115px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}
.section-title {
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin: 14px 0 0;
}
.section-head > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.projects {
  display: grid;
  gap: 20px;
}
.project-card {
  min-height: 545px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: #3b4c68;
}
.project-card:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}
.project-card:nth-child(even) .project-shot {
  order: 2;
}
.project-shot {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.shot-stalker {
  background: radial-gradient(circle, #59634e, #171d18 68%);
}
.shot-task {
  background: radial-gradient(circle, #283245, #0d1016 70%);
}
.shot-design {
  background: radial-gradient(circle, #313449, #11131a 70%);
}
.project-shot img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: cover;
  border: 6px solid #111722;
  border-radius: 13px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.project-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-index {
  font: italic 12px Georgia;
  color: var(--cyan);
}
.project-copy h3 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 17px 0;
}
.project-copy p {
  color: var(--muted);
  font-size: 14px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 21px 0;
}
.tags span {
  padding: 6px 9px;
  border: 1px solid #2c384a;
  border-radius: 7px;
  color: #bdc6d4;
  font-size: 9px;
  font-weight: 750;
}
.case-link {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 850;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.skill {
  padding: 28px 25px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 170px;
}
.skill:nth-child(4n) {
  border-right: 0;
}
.skill span {
  font-size: 9px;
  color: var(--blue);
  letter-spacing: 0.13em;
}
.skill h3 {
  font-size: 19px;
  margin: 18px 0 10px;
}
.skill p {
  color: var(--muted);
  font-size: 12px;
}
.cta {
  margin-top: 30px;
  margin-bottom: 70px;
  padding: 70px;
  border: 1px solid #315073;
  border-radius: 22px;
  background: linear-gradient(125deg, #172952, #15303b);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: end;
}
.cta h2 {
  font-size: clamp(39px, 4.6vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin: 16px 0 0;
}
.cta h2 em {
  font-family: Georgia, serif;
  color: var(--lime);
  font-weight: 400;
}
.cta p {
  color: #b4c0d1;
  font-size: 14px;
}
.cta .btn {
  background: white;
  color: #111722;
  border-color: white;
}
.footer {
  min-height: 105px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}
.footer div {
  display: flex;
  gap: 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.case-nav {
  height: 72px;
}
.back {
  font-size: 12px;
  color: var(--muted);
}
.project-hero {
  padding: 85px 0 58px;
}
.project-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.project-hero h1 {
  font-size: clamp(58px, 7vw, 98px);
  line-height: 0.93;
  letter-spacing: -0.07em;
  margin: 22px 0;
}
.project-hero .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
}
.project-meta {
  border-top: 1px solid var(--line);
}
.meta-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.meta-row span {
  color: var(--muted);
}
.case-cover {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #111722;
  padding: 18px;
}
.case-cover img {
  width: 100%;
  display: block;
  border-radius: 11px;
}
.case-body {
  padding: 105px 0;
}
.case-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  margin-bottom: 90px;
}
.case-intro h2,
.feature-section h2,
.gallery-head h2 {
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 14px 0;
}
.case-intro-text {
  font-size: 17px;
  color: #c1c8d3;
}
.case-intro-text p {
  margin-top: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
}
.feature b {
  display: block;
  color: var(--blue);
  font: italic 13px Georgia;
}
.feature h3 {
  font-size: 21px;
  margin: 42px 0 12px;
}
.feature p {
  font-size: 13px;
  color: var(--muted);
}
.feature-section {
  margin-bottom: 100px;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 34px;
}
.gallery-head p {
  max-width: 340px;
  color: var(--muted);
  font-size: 13px;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 12px;
}
.gallery img {
  width: 100%;
  display: block;
  border-radius: 9px;
}
.gallery figcaption {
  padding: 13px 5px 3px;
  color: var(--muted);
  font-size: 11px;
}
.next-case {
  margin: 90px 0 0;
  padding: 50px 0;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.next-case span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.13em;
}
.next-case strong {
  font-size: 30px;
}
.next-case:hover strong {
  color: var(--blue);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-console {
    max-width: 620px;
    width: 100%;
    margin: auto;
  }
  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .project-card:nth-child(even) .project-shot {
    order: 0;
  }
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }
  .skill:nth-child(2n) {
    border-right: 0;
  }
  .project-hero-grid {
    grid-template-columns: 1fr;
  }
  .case-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .shell {
    width: calc(100% - 32px);
  }
  .nav {
    height: 68px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 62px 0;
    min-height: 0;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-console {
    height: 400px;
  }
  .console-body {
    height: 270px;
  }
  .dev-core {
    width: 130px;
    height: 130px;
  }
  .ft1 {
    left: 20px;
  }
  .ft2 {
    right: 15px;
  }
  .ft3 {
    left: 18px;
  }
  .ft4 {
    right: 22px;
  }
  .console-foot {
    height: 78px;
  }
  .marquee div {
    justify-content: flex-start;
  }
  .section {
    padding: 85px 0;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 20px;
  }
  .section-title {
    font-size: 44px;
  }
  .project-card {
    min-height: 0;
  }
  .project-shot {
    padding: 16px;
    min-height: 260px;
  }
  .project-shot img {
    border-width: 4px;
  }
  .project-copy {
    padding: 30px;
  }
  .project-copy h3 {
    font-size: 31px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .skill,
  .skill:nth-child(n) {
    border-right: 0;
  }
  .cta {
    padding: 48px 24px;
    gap: 25px;
  }
  .footer {
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer p {
    order: 3;
    width: 100%;
  }
  .project-hero {
    padding: 60px 0 42px;
  }
  .project-hero h1 {
    font-size: 56px;
  }
  .project-hero .lead {
    font-size: 16px;
  }
  .case-cover {
    padding: 7px;
    border-radius: 12px;
  }
  .case-body {
    padding: 75px 0;
  }
  .case-intro {
    margin-bottom: 70px;
  }
  .case-intro-text {
    font-size: 15px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    min-height: 200px;
  }
  .gallery-head {
    display: block;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .next-case strong {
    font-size: 22px;
  }
  .next-case {
    gap: 20px;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 41px;
  }
  .project-hero h1 {
    font-size: 49px;
  }
  .project-copy {
    padding: 26px;
  }
  .contact-link {
    padding: 9px 11px;
  }
}

:root {
  --bg: #080a0f;
  --panel: #0e131c;
  --panel2: #121924;
  --text: #f6f7fa;
  --muted: #9aa4b4;
  --line: #252f3e;
  --blue: #668fff;
  --cyan: #63dfd2;
  --lime: #c9ff70;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
body {
  background-color: var(--bg);
  letter-spacing: -0.005em;
}
body:before {
  background:
    radial-gradient(circle at 84% 7%, rgba(73, 108, 220, 0.15), transparent 29%),
    radial-gradient(circle at 7% 37%, rgba(42, 170, 149, 0.075), transparent 25%);
}
.nav {
  position: relative;
  z-index: 20;
}
.nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-links a,
.back,
.footer a {
  transition: color 0.2s ease;
}
.nav-links a:hover,
.back:hover,
.footer a:hover {
  color: var(--cyan);
}
.contact-link,
.btn {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-link:hover {
  transform: translateY(-1px);
  border-color: #3b4960;
  background: #111823;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: #455672;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.btn.primary:hover {
  background: #7399ff;
  border-color: #7399ff;
  box-shadow: 0 14px 34px rgba(94, 140, 255, 0.2);
}
.hero {
  min-height: 630px;
  padding-top: 78px;
}
.hero h1 {
  max-width: 790px;
}
.hero-copy > p {
  max-width: 660px;
}
.hero-console {
  box-shadow: var(--shadow);
  border-color: #29364a;
}
.dev-core {
  box-shadow:
    0 0 0 35px rgba(94, 140, 255, 0.045),
    0 0 0 70px rgba(94, 140, 255, 0.028),
    0 20px 50px rgba(35, 81, 190, 0.2);
}
.section {
  padding: 104px 0;
}
.section-head {
  margin-bottom: 42px;
}
.section-head > p {
  line-height: 1.7;
}
.section-title {
  max-width: 780px;
}
.project-card {
  min-height: 510px;
  background: linear-gradient(145deg, #101620, #0c1119);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025);
  isolation: isolate;
}
.project-card:hover {
  transform: translateY(-5px);
  border-color: #40516e;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
}
.project-shot {
  min-width: 0;
}
.project-shot img {
  max-height: 390px;
  border-color: #151c28;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.38);
  transition: transform 0.35s ease;
}
.project-card:hover .project-shot img {
  transform: scale(1.012);
}
.project-copy {
  padding: 44px;
}
.project-copy p {
  max-width: 430px;
  line-height: 1.7;
}
.project-copy h3 {
  margin-bottom: 15px;
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.case-link:after {
  content: "";
  width: 26px;
  height: 1px;
  background: #46546a;
  transition: width 0.2s;
}
.project-card:hover .case-link:after {
  width: 38px;
  background: var(--blue);
}
.skills-grid {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.skill {
  background: rgba(14, 19, 28, 0.48);
  border-bottom: 0;
}
.skill h3 {
  letter-spacing: -0.025em;
}
.skill p {
  line-height: 1.65;
}
.cta {
  margin-top: 18px;
  padding: 64px;
  background: linear-gradient(125deg, #1a2f5f, #173442);
  box-shadow: var(--shadow);
}
.footer {
  position: relative;
}
.footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
}

.case-nav {
  height: 72px;
}
.project-hero {
  padding: 76px 0 52px;
}
.project-hero-grid {
  gap: 64px;
}
.project-hero h1 {
  margin: 18px 0 20px;
}
.project-hero .lead {
  max-width: 730px;
  line-height: 1.65;
}
.project-meta {
  background: rgba(14, 19, 28, 0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
}
.meta-row:first-child {
  border-top: 0;
}
.meta-row:last-child {
  border-bottom: 0;
}
.case-cover {
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(145deg, #111824, #0c1119);
  box-shadow: var(--shadow);
}
.case-cover img {
  border-radius: 10px;
}
.case-body {
  padding: 92px 0;
}
.case-intro {
  margin-bottom: 82px;
}
.case-intro-text {
  line-height: 1.72;
}
.feature-section {
  margin-bottom: 88px;
}
.feature-grid {
  gap: 16px;
}
.feature {
  min-height: 218px;
  background: linear-gradient(145deg, #101620, #0c1119);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: #3a4a64;
}
.feature h3 {
  margin-top: 34px;
}
.feature p {
  line-height: 1.68;
}
.gallery figure {
  background: linear-gradient(145deg, #101620, #0c1119);
  padding: 10px;
  transition: border-color 0.2s;
}
.gallery figure:hover {
  border-color: #3a4a64;
}
.gallery figcaption {
  padding: 14px 6px 5px;
}
.next-case {
  margin-top: 82px;
  transition: padding 0.2s;
}
.next-case:hover {
  padding-inline: 14px;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 5px;
}
@media (max-width: 900px) {
  .section {
    padding: 92px 0;
  }
  .project-card {
    min-height: 0;
  }
  .project-shot {
    min-height: 420px;
  }
  .project-copy {
    padding: 38px;
  }
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }
  .skill:nth-child(2n) {
    border-right: 0;
  }
  .skill:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .project-hero-grid {
    gap: 42px;
  }
  .case-cover {
    width: calc(100% - 32px);
  }
}
@media (max-width: 650px) {
  .nav {
    position: sticky;
    top: 0;
    height: 66px;
    width: 100%;
    padding: 0 16px;
    background: rgba(8, 10, 15, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(37, 47, 62, 0.82);
  }
  .nav:after {
    display: none;
  }
  .case-nav .back {
    font-size: 0;
  }
  .case-nav .back:after {
    content: "← Проєкти";
    font-size: 11px;
  }
  .contact-link {
    min-height: 40px;
  }
  .hero {
    padding: 58px 0 70px;
  }
  .hero h1 {
    font-size: 43px;
    line-height: 1.02;
  }
  .hero-console {
    margin-top: 20px;
  }
  .section {
    padding: 78px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .section-title {
    font-size: 42px;
  }
  .project-card {
    border-radius: 17px;
  }
  .project-shot {
    min-height: 245px;
    padding: 14px;
  }
  .project-shot img {
    max-height: 260px;
  }
  .project-copy {
    padding: 28px 26px 32px;
  }
  .project-copy h3 {
    font-size: 30px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .skill,
  .skill:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .skill:last-child {
    border-bottom: 0;
  }
  .cta {
    padding: 44px 24px;
    border-radius: 18px;
  }
  .footer {
    min-height: 120px;
  }
  .project-hero {
    padding: 52px 0 38px;
  }
  .project-hero h1 {
    font-size: 52px;
  }
  .project-meta {
    padding: 4px 16px;
  }
  .case-cover {
    padding: 6px;
    border-radius: 13px;
  }
  .case-body {
    padding: 68px 0;
  }
  .case-intro {
    margin-bottom: 62px;
  }
  .case-intro h2,
  .feature-section h2,
  .gallery-head h2 {
    font-size: 38px;
  }
  .feature-section {
    margin-bottom: 72px;
  }
  .feature {
    min-height: 185px;
  }
  .gallery {
    gap: 14px;
  }
  .next-case {
    margin-top: 68px;
    padding: 38px 0;
  }
  .next-case strong {
    font-size: 21px;
  }
  .next-case span {
    font-size: 9px;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 39px;
  }
  .section-title {
    font-size: 39px;
  }
  .project-hero h1 {
    font-size: 47px;
  }
  .contact-link {
    padding: 8px 10px;
    font-size: 11px;
  }
  .project-copy {
    padding-inline: 24px;
  }
}

:root {
  --bg: #080b12;
  --panel: #0d1420;
  --panel2: #111a28;
  --text: #f5f7fb;
  --muted: #9aa7b8;
  --line: #253247;
  --blue: #6f91ff;
  --cyan: #65dfd2;
  --lime: #65dfd2;
  --success: #62d98b;
}
body {
  background: #080b12;
}
body:before {
  background:
    radial-gradient(circle at 84% 6%, rgba(73, 105, 205, 0.14), transparent 30%),
    radial-gradient(circle at 7% 38%, rgba(45, 165, 150, 0.07), transparent 26%);
}
.green {
  color: var(--success);
}
.label,
.eyebrow,
.project-index,
.kicker {
  color: var(--cyan);
}
.hero h1 em,
.section-title em,
.project-hero h1 em,
.cta h2 em {
  color: var(--blue);
}
.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
}
.btn.primary:hover {
  background: #7a9aff;
  border-color: #7a9aff;
}
.project-card,
.feature,
.gallery figure,
.project-meta,
.hero-console {
  background: linear-gradient(145deg, #111a28, #0b111b);
}
.shot-stalker,
.shot-task,
.shot-design {
  background: radial-gradient(circle at 50% 42%, #263754, #111925 68%, #0d141f);
}
.cta {
  background: linear-gradient(125deg, #1d3262, #17384a);
}
.cta h2 em {
  color: #8be9dc;
}
.tags span,
.tech-row span,
.chips span {
  border-color: #30405a;
  background: #111927;
}

.project-hero {
  padding: 56px 0 30px;
}
.project-hero-grid {
  align-items: center;
}
.project-hero .actions {
  margin-top: 24px;
}
.case-cover {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 10px;
}
.case-body {
  padding-top: 72px;
}
.case-intro {
  margin-bottom: 68px;
}
.feature-section {
  margin-bottom: 76px;
}
.next-case {
  margin-top: 70px;
}

.marquee {
  overflow: hidden;
}
.marquee-track {
  width: max-content;
  display: flex !important;
  gap: 0 !important;
  padding: 0 !important;
  animation: techTicker 28s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 17px 14px;
  white-space: nowrap;
}
.marquee-group i {
  color: var(--blue);
  font-style: normal;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes techTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
@media (max-width: 650px) {
  .project-hero {
    padding: 46px 0 24px;
  }
  .case-cover {
    width: calc(100% - 32px);
    padding: 6px;
  }
  .case-body {
    padding-top: 58px;
  }
  .case-intro {
    margin-bottom: 56px;
  }
  .marquee-group {
    gap: 24px;
    padding-block: 16px;
  }
}

.marquee {
  overflow: hidden !important;
}
.marquee .marquee-track {
  display: flex !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: none !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 0 !important;
  animation: tickerLoop 24s linear infinite !important;
  animation-play-state: running !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.marquee .marquee-group {
  display: flex !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  justify-content: flex-start !important;
  align-items: center;
  gap: 28px !important;
  padding: 17px 14px !important;
  white-space: nowrap;
}
.marquee:hover .marquee-track {
  animation-play-state: running !important;
}
@keyframes tickerLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333333%, 0, 0);
  }
}
@media (max-width: 650px) {
  .marquee .marquee-group {
    gap: 24px !important;
    padding: 16px 12px !important;
  }
}
