:root {
  --bg: #070b14;
  --bg-soft: #0d1322;
  --card: rgba(255, 255, 255, .07);
  --card-border: rgba(255, 255, 255, .14);
  --text: #ffffff;
  --muted: rgba(255,255,255,.68);
  --accent: #ffb84d;
  --pink: #ff4fd8;
  --purple: #8f5cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.app-body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 20%, rgba(143, 92, 255, .24), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 184, 77, .18), transparent 30%),
    linear-gradient(135deg, #070b14 0%, #0a1020 48%, #130b25 100%);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  overflow: hidden;
}

.app-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(7, 11, 20, .72);
  backdrop-filter: blur(18px);
}

.app-logo {
  display: grid;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}

.app-logo span {
  font-weight: 900;
  letter-spacing: .04em;
}

.app-logo small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .18em;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.app-nav a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255,255,255,.76);
}

.app-nav a:hover {
  color: var(--accent);
}

.app-header__btn,
.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.app-header__btn,
.app-btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff7b32);
  color: #160d03;
  box-shadow: 0 12px 32px rgba(255, 139, 50, .28);
}

.app-header__btn:hover,
.app-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255, 139, 50, .4);
}

.app-btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}

.app-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
}

.app-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.hero-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 80px;
}

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

.hero-app__badge {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,184,77,.5);
  color: var(--accent);
  background: rgba(255,184,77,.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-app__title {
  margin: 0 0 28px;
  max-width: 760px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.hero-app__title span {
  background:
    linear-gradient(
      135deg,
      #ffb84d 0%,
      #ff8a3d 30%,
      #ff4fd8 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-app__text {
  max-width: 520px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin: 0 0 38px;
}

.hero-app__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-app__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  position: relative;
  width: min(430px, 100%);
  min-height: 310px;
  padding: 22px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 40px 120px rgba(143, 92, 255, .28),
    inset 0 1px 0 rgba(255,255,255,.16);
  transform: rotate(-4deg);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -70px;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255,184,77,.35), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(255,79,216,.24), transparent 42%);
  filter: blur(20px);
}

.dashboard-card__top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dashboard-card__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.dashboard-card__chart {
  height: 110px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(143,92,255,.28), rgba(255,184,77,.12)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 34px,
      rgba(255,255,255,.06) 35px
    );
  margin-bottom: 18px;
}

.dashboard-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dashboard-card__grid i {
  height: 56px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.dashboard-card__score {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #111827 54%, transparent 55%),
    conic-gradient(var(--accent) 0 86%, rgba(255,255,255,.12) 86% 100%);
  font-weight: 900;
}

.app-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.app-section__eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.app-section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.04em;
}

.app-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .app-nav,
  .app-header__btn {
    display: none;
  }

  .app-burger {
    display: block;
  }

  .hero-app {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-app__visual {
    min-height: 340px;
  }

  .dashboard-card {
    width: 92%;
    transform: rotate(-2deg);
  }
}

@media (max-width: 600px) {
  .app-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .hero-app {
    width: calc(100% - 28px);
    padding: 110px 0 60px;
  }

  .hero-app__title {
    font-size: clamp(44px, 14vw, 66px);
  }

  .hero-app__text {
    font-size: 17px;
  }

  .hero-app__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .app-btn {
    width: 100%;
  }

  .app-section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,184,77,.28);
  pointer-events: none;
}

.orbit--one {
  width: 520px;
  height: 160px;
  transform: rotate(-8deg);
  box-shadow: 0 0 38px rgba(255,184,77,.18);
}

.orbit--two {
  width: 430px;
  height: 130px;
  transform: rotate(-18deg);
  border-color: rgba(255,79,216,.22);
  box-shadow: 0 0 38px rgba(255,79,216,.14);
}

.dashboard-card__chart {
  position: relative;
  overflow: hidden;
}

.dashboard-card__chart span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  height: 58px;
  background:
    linear-gradient(135deg, transparent 0 8%, #8f5cff 9% 12%, transparent 13% 22%, #ffb84d 23% 26%, transparent 27% 42%, #ff4fd8 43% 46%, transparent 47% 60%, #ffb84d 61% 64%, transparent 65%);
  opacity: .9;
  filter: drop-shadow(0 0 12px rgba(255,184,77,.5));
}

.float-chip {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.float-chip--left {
  left: 20px;
  top: 34%;
}

.float-chip--right {
  right: 10px;
  top: 25%;
  color: var(--accent);
}

.float-chip--bottom {
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  color: #ff7bdc;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.float-chip--left,
.float-chip--right {
  animation: floatUp 4s ease-in-out infinite;
}

.float-chip--bottom {
  animation: floatUp 5s ease-in-out infinite;
}

.dashboard-card {
  animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%, 100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-14px);
  }
}

@media (max-width: 600px) {
  .orbit {
    display: none;
  }

  .float-chip {
    font-size: 12px;
    padding: 10px 12px;
  }

  .float-chip--left {
    left: 0;
    top: 18%;
  }

  .float-chip--right {
    right: 0;
    top: 10%;
  }

  .float-chip--bottom {
    bottom: 16px;
  }
}

.quest-app {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0;
}

.quest-app__shell {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,184,77,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 120px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}

.quest-app__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.quest-app__back {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.56);
  cursor: pointer;
}

.quest-app__step {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.82);
}

.quest-app__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 38px;
}

.quest-app__progress span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.quest-app__progress span.is-active {
  background: linear-gradient(90deg, var(--accent), #ff7b32);
  box-shadow: 0 0 18px rgba(255,184,77,.5);
}

.quest-card {
  display: none;
  animation: questIn .25s ease both;
}

.quest-card.active {
  display: block;
}

.quest-card h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -.04em;
}

.quest-card p {
  margin: 14px 0 28px;
  color: rgba(255,255,255,.62);
  font-size: 18px;
}

.quest-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quest-options button,
.quest-next-main,
.quest-form button {
  min-height: 92px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  font-size: 17px;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.quest-options button:hover,
.quest-next-main:hover {
  transform: translateY(-3px);
  border-color: rgba(255,184,77,.52);
  background: rgba(255,184,77,.12);
}

.quest-cases {
  display: grid;
  gap: 12px;
}

.quest-cases a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.quest-cases strong {
  font-size: 18px;
}

.quest-cases span {
  color: rgba(255,255,255,.62);
}

.quest-next-main {
  width: 100%;
  margin-top: 16px;
  text-align: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #ff4fd8);
  color: #160d03;
}

.quest-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.quest-form input {
  height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.24);
  color: #fff;
  outline: none;
}

.quest-form input:focus {
  border-color: rgba(255,184,77,.65);
}

.quest-form button {
  min-height: 62px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #ff4fd8);
  color: #160d03;
}

@keyframes questIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .quest-app {
    width: calc(100% - 28px);
    padding: 80px 0;
  }

  .quest-app__shell {
    padding: 22px;
    border-radius: 26px;
  }

  .quest-options {
    grid-template-columns: 1fr;
  }

  .quest-options button {
    min-height: 74px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.app-btn,
.app-header__btn,
.quest-options button,
.quest-next-main,
.quest-form button {
  position: relative;
  overflow: hidden;
}

.app-btn::before,
.app-header__btn::before,
.quest-options button::before,
.quest-next-main::before,
.quest-form button::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.22) 50%,
      transparent 80%
    );

  transform: translateX(-120%);

  transition: transform .6s ease;
}

.app-btn:hover::before,
.app-header__btn:hover::before,
.quest-options button:hover::before,
.quest-next-main:hover::before,
.quest-form button:hover::before {
  transform: translateX(120%);
}
body.app-body::before {
  content: "";

  position: fixed;

  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,184,77,.08), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(143,92,255,.12), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(255,79,216,.08), transparent 24%);

  z-index: -1;
}
.scroll-indicator {
  position: absolute;
  left: 0;
  bottom: -80px;

  width: 34px;
  height: 58px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);

  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);

  animation: scrollMove 1.8s ease-in-out infinite;
}

@keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}
.portfolio-app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .92;
  letter-spacing: -.055em;
}

.section-head p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 18px;
  line-height: 1.6;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,184,77,.14), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease;
}

.case-card {
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.case-card:hover {
  transform: scale(1.03);

  border-color: rgba(255,184,77,.45);

  box-shadow:
    0 40px 120px rgba(0,0,0,.36),
    0 0 40px rgba(255,184,77,.08);
}

.case-card__screen {
  height: 240px;
  border-radius: 22px;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, rgba(143,92,255,.42), rgba(255,184,77,.18)),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.07),
      rgba(255,255,255,.07) 1px,
      transparent 1px,
      transparent 18px
    );
  display: flex;
  align-items: flex-end;
  padding: 4px;
}

.case-card__screen span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.32);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
}
.case-card p {
  margin: 0 0 20px;

  color: rgba(255,255,255,.64);

  line-height: 1.6;

  font-size: 17px;
}
.case-card h3 {
  margin: 0 0 12px;

  font-size: 22px;

  line-height: 1.05;

  letter-spacing: -.04em;
}

.case-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
}

.case-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card__screen {
    height: 190px;
  }
}
.case-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .case-grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .case-grid--wide {
    grid-template-columns: 1fr;
  }
}
.portfolio-slider {
  overflow-x: auto;
  overflow-y: hidden;

  padding: 24px 40px 28px;
  margin: 0 -40px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.portfolio-slider::-webkit-scrollbar {
  height: 8px;
}

.portfolio-slider::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent), #ff4fd8);
  border-radius: 999px;
}

.portfolio-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

@media (max-width: 600px) {
  .portfolio-slider {
    padding: 20px 18px 24px;
    margin: 0 -18px;
  }
}

.portfolio-track .case-card {
  width: 360px;
  flex: 0 0 360px;
  scroll-snap-align: start;
}

.portfolio-more {
  display: inline-flex;
  margin-top: 26px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.portfolio-more:hover {
  border-color: rgba(255,184,77,.55);
  color: var(--accent);
}

@media (max-width: 600px) {
  .portfolio-track .case-card {
    width: 82vw;
    flex-basis: 82vw;
  }
}
.portfolio-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.portfolio-page__hero {
  max-width: 840px;
  margin-bottom: 54px;
}

.portfolio-page__hero h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.06em;
}

.portfolio-page__hero p {
  max-width: 620px;
  color: rgba(255,255,255,.68);
  font-size: 20px;
  line-height: 1.6;
}

.portfolio-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) {
  .portfolio-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .portfolio-page__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-page {
    padding-top: 120px;
  }
}
.case-card__content {
  padding: 0 14px 14px;
}
.case-card__screen {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  text-decoration: none;
}

.case-card__screen img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;

  display: block;

  transition:
    transform .5s ease,
    filter .5s ease;
}

.case-card:hover .case-card__screen img {
  transform: scale(1.06);
}

.case-card__screen span {
  position: absolute;

  left: 16px;
  bottom: 16px;

  z-index: 3;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(0,0,0,.45);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,.14);

  color: #fff;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: .12em;
}
.case-card:hover .case-card__screen img {
  transform: scale(1.05);
  filter: brightness(1.04);
}
.work-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.work-page__hero {
  max-width: 860px;
  margin-bottom: 42px;
}

.work-page__hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.06em;
}

.work-page__hero p {
  max-width: 640px;
  color: rgba(255,255,255,.68);
  font-size: 20px;
  line-height: 1.6;
}

.work-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.work-page__screen {
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.work-page__screen img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.work-page__content {
  max-width: 820px;
  margin-top: 50px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 650px) {
  .work-page {
    padding-top: 120px;
  }

  .work-page__actions {
    flex-direction: column;
  }
}
.skills-app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.skill-card {
  min-height: 150px;

  display: flex;
  align-items: flex-end;

  padding: 24px;

  border-radius: 28px;

  background:
    radial-gradient(circle at 20% 0%, rgba(255,184,77,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));

  border: 1px solid rgba(255,255,255,.12);

  font-size: 24px;
  font-weight: 900;

  letter-spacing: -.03em;

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.skill-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255,184,77,.4);
}
.skills-track .skill-card {
  width: 340px;
  flex: 0 0 340px;
  scroll-snap-align: start;
}

@media (max-width: 600px) {
  .skills-track .skill-card {
    width: 82vw;
    flex-basis: 82vw;
  }
}
.contact-app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 140px;
}

.contact-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 42px;
  width: 100%;
  padding: 42px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,184,77,.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(143,92,255,.18), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 50px 140px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.contact-box__content,
.contact-form-wrap {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-box h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .9;
  letter-spacing: -.06em;
}

.contact-box__text {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.68);
  font-size: 20px;
  line-height: 1.7;
}

.contact-features {
  display: grid;
  gap: 14px;
}

.contact-features div {
  width: fit-content;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  padding: 28px;
  border-radius: 32px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.contact-form__group {
  display: grid;
  gap: 10px;
}

.contact-form__group label {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,184,77,.48);
  background: rgba(255,255,255,.08);
}

.contact-submit {
  height: 64px;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  color: #140b03;
  background: linear-gradient(135deg, var(--accent), #ff8b3d 40%, #ff4fd8);
  box-shadow: 0 24px 60px rgba(255,184,77,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(255,184,77,.42);
}

.contact-form__result {
  min-height: 24px;
  font-weight: 800;
  font-size: 15px;
}

.contact-form__result.is-success {
  color: #7dffb2;
}

.contact-form__result.is-error {
  color: #ff7b7b;
}

.contact-submit:disabled {
  opacity: .65;
  cursor: wait;
}

@media (max-width: 980px) {
  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .contact-app {
    width: calc(100% - 28px);
    padding: 90px 0 110px;
  }

  .contact-box {
    padding: 24px;
    border-radius: 28px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 24px;
  }

  .contact-box h2 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .contact-box__text {
    font-size: 17px;
  }
}
.skills-app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.skills-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 42px;
  position: relative;
  border-radius: 30px;
}

.skills-marquee {
  display: flex;
  width: fit-content;
  animation: skillsMarquee 26s linear infinite;
}

.skills-track {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.skills-track .skill-card {
  width: 320px;
  flex: 0 0 320px;
}

.skills-slider::before,
.skills-slider::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}

.skills-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.skills-slider::after {
  right: 0;
  background: linear-gradient(270deg, #130b25, transparent);
}

@keyframes skillsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.contact-form__result {
  min-height: 24px;
  font-weight: 800;
  font-size: 15px;
}

.contact-form__result.is-success {
  color: #7dffb2;
}

.contact-form__result.is-error {
  color: #ff7b7b;
}

.contact-submit:disabled {
  opacity: .65;
  cursor: wait;
}