:root {
  --paper: #f3f0e8;
  --paper-deep: #e8e3d8;
  --ink: #171a22;
  --muted: #646774;
  --blue: #2557f5;
  --blue-deep: #173fc8;
  --orange: #ff6b35;
  --line: rgba(23, 26, 34, 0.16);
  --white: #fffdf7;
  --radius-lg: 38px;
  --radius-md: 24px;
  --shadow: 0 28px 80px rgba(25, 31, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 4%, rgba(37, 87, 245, 0.08), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(23, 26, 34, 0.12);
  border-radius: 999px;
  background: rgba(243, 240, 232, 0.88);
  box-shadow: 0 14px 40px rgba(23, 26, 34, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.logo__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo__text {
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  padding: 5px;
  display: flex;
  gap: 3px;
  border-radius: 999px;
  background: rgba(23, 26, 34, 0.055);
}

.site-nav a,
.header-cta {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(23, 26, 34, 0.08);
}

.site-nav a.is-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta::after {
  content: "↗";
  color: #a9baff;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(37, 87, 245, 0.22);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 70px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #a9baff;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(62px, 6.7vw, 105px);
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  color: var(--blue);
  font-weight: 400;
}

.hero__lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(23, 26, 34, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue);
  box-shadow: 0 20px 38px rgba(37, 87, 245, 0.24);
}

.button--accent {
  width: 100%;
  margin-top: 4px;
  background: var(--orange);
  color: var(--ink);
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.hero__facts {
  max-width: 650px;
  margin: 52px 0 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.hero__facts span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset -55px -70px 100px rgba(3, 17, 69, 0.25);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(37, 87, 245, 0.28);
  border-radius: 50%;
}

.orbit--one {
  width: 510px;
  height: 510px;
}

.orbit--two {
  width: 580px;
  height: 580px;
}

.browser-card {
  position: relative;
  z-index: 2;
  width: min(470px, 92%);
  overflow: hidden;
  transform: rotate(-3deg);
  border: 8px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(10, 20, 66, 0.35);
}

.browser-card__top {
  height: 48px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  background: var(--ink);
}

.browser-card__dots {
  display: flex;
  gap: 6px;
}

.browser-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.browser-card__dots span:nth-child(2) {
  background: #f4c65c;
}

.browser-card__dots span:nth-child(3) {
  background: #73d19b;
}

.browser-card__address {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-align: center;
}

.browser-card__body {
  min-height: 390px;
  padding: 45px 38px 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 87, 245, 0.16), transparent 35%),
    var(--white);
}

.mini-label {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-title {
  width: 86%;
  height: 33px;
  margin-top: 16px;
  border-radius: 4px;
  background: var(--ink);
}

.mini-title--short {
  width: 63%;
  margin-top: 7px;
}

.mini-copy {
  width: 72%;
  height: 8px;
  margin-top: 24px;
  border-radius: 99px;
  background: #a9abb3;
}

.mini-copy--short {
  width: 51%;
  margin-top: 7px;
}

.mini-button {
  width: max-content;
  margin-top: 26px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.mini-cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-cards span {
  height: 66px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 13px 17px;
  border: 1px solid rgba(23, 26, 34, 0.12);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 26, 34, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.floating-note--top {
  top: 70px;
  right: -10px;
  transform: rotate(5deg);
}

.floating-note--bottom {
  bottom: 68px;
  left: -12px;
  transform: rotate(-5deg);
}

.trust-line {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
}

.trust-line__track {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker 24s linear infinite;
}

.trust-line span {
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.trust-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 130px max(20px, calc((100vw - 1240px) / 2));
}

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

.about__heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.about__card {
  position: relative;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.22), transparent 34%),
    var(--blue);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(37, 87, 245, 0.18);
}

.about__card::after {
  content: "S";
  position: absolute;
  right: -18px;
  bottom: -72px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 250px;
  line-height: 1;
}

.about__lead {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.7vw, 39px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.about__principles {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.about__principles span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 70px;
}

.section-heading h2 {
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.96;
}

.section-heading > p:last-child,
.section-heading--row > p {
  max-width: 550px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-heading--row > p {
  margin: 0 0 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 20px;
}

.service-card {
  min-height: 520px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-card--blue {
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.2), transparent 28%),
    var(--blue);
  color: var(--white);
}

.service-card--dark {
  background:
    radial-gradient(circle at 10% 90%, rgba(37, 87, 245, 0.4), transparent 42%),
    var(--ink);
  color: var(--white);
}

.service-card--light {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.65), transparent 55%),
    var(--paper-deep);
}

.service-card__number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
}

.service-card h3 {
  max-width: 310px;
  margin: 0 0 15px;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  opacity: 0.75;
  font-size: 16px;
  line-height: 1.55;
}

.service-card ul {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
  opacity: 0.82;
}

.service-card li {
  margin-top: 9px;
  font-size: 14px;
}

.service-card li::before {
  content: "— ";
}

.work {
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 87, 245, 0.32), transparent 34rem),
    var(--ink);
  color: var(--white);
}

.work .section-heading {
  margin-bottom: 44px;
}

.work .section-heading--row > p {
  color: rgba(255, 255, 255, 0.66);
}

.work-slider {
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.work-slider__viewport {
  overflow: hidden;
  border-radius: 27px;
  outline: none;
}

.work-slider__viewport:focus-visible {
  box-shadow: 0 0 0 3px #a9baff;
}

.work-slider__track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 0.75, 0.18, 1);
}

.work-slider__track[data-slide="0"] {
  transform: translateX(0);
}

.work-slider__track[data-slide="1"] {
  transform: translateX(-100%);
}

.work-slider__track[data-slide="2"] {
  transform: translateX(-200%);
}

.work-slider__track[data-slide="3"] {
  transform: translateX(-300%);
}

.work-slider__track[data-slide="4"] {
  transform: translateX(-400%);
}

.work-slide {
  min-width: 100%;
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(285px, 0.52fr);
  background: #20232d;
}

.work-slide__media {
  min-width: 0;
  overflow: hidden;
  background: #272b37;
}

.work-slide__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.work-slide__content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 87, 245, 0.22), transparent 42%),
    #20232d;
}

.work-slide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.work-slide__index {
  color: #a9baff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.work-slide__badge {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-slide__category {
  margin: 0 0 14px;
  color: #a9baff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-slide h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.work-slide__description {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.work-slider__controls {
  min-height: 76px;
  padding: 14px 10px 0;
  display: grid;
  grid-template-columns: 75px 1fr auto;
  align-items: center;
  gap: 22px;
}

.work-slider__controls > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.work-slider__controls > p span {
  color: var(--white);
  font-size: 22px;
}

.work-slider__progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.work-slider__progress span {
  width: 20%;
  height: 100%;
  display: block;
  background: var(--blue);
  transition: width 420ms ease;
}

.work-slider__progress span[data-step="1"] {
  width: 20%;
}

.work-slider__progress span[data-step="2"] {
  width: 40%;
}

.work-slider__progress span[data-step="3"] {
  width: 60%;
}

.work-slider__progress span[data-step="4"] {
  width: 80%;
}

.work-slider__progress span[data-step="5"] {
  width: 100%;
}

.work-slider__buttons {
  display: flex;
  gap: 8px;
}

.work-slider__buttons button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 19px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.work-slider__buttons button:hover,
.work-slider__buttons button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  outline: none;
  background: var(--blue);
}

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

.work-card {
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.work-card--wide {
  grid-column: 1 / -1;
}

.work-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 27px;
  background: #252936;
}

.work-card--wide .work-card__media {
  aspect-ratio: 21 / 9;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-card:hover .work-card__media img {
  transform: scale(1.025);
}

.work-card__number,
.work-card__type {
  position: absolute;
  top: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 19, 26, 0.74);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.work-card__number {
  left: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.work-card__type {
  right: 16px;
  padding: 11px 13px;
}

.work-card__info {
  min-height: 105px;
  padding: 24px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.work-card__info h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.work-card__info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.work-card__info > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #a9baff;
  font-size: 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.work-card:hover .work-card__info > span {
  transform: rotate(10deg);
  background: var(--blue);
  color: var(--white);
}

.case {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 45px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.case__screen {
  min-height: 590px;
  padding: 65px 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 25px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent),
    #ba8253;
}

.case__browser {
  width: min(680px, 100%);
  overflow: hidden;
  transform: rotate(-2deg);
  border: 8px solid #120f0d;
  border-radius: 18px;
  box-shadow: 0 35px 90px rgba(15, 9, 6, 0.35);
}

.case__browser-top {
  height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #120f0d;
}

.case__browser-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5b186;
}

.case__browser-top p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.case__preview {
  min-height: 410px;
  padding: 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(196, 133, 79, 0.34), transparent 35%),
    linear-gradient(145deg, #171210, #3a2518);
  color: #fff8ef;
}

.case__preview > p {
  margin: 0;
  color: #d8b58d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.case__preview h3 {
  margin: 22px 0 30px;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 59px);
  font-weight: 400;
  line-height: 0.96;
}

.case__preview > span {
  display: inline-block;
  padding: 11px 17px;
  border-radius: 999px;
  background: #d8b58d;
  color: #171210;
  font-size: 10px;
  font-weight: 800;
}

.case__preview-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case__preview-cards i {
  height: 65px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
}

.case__info {
  align-self: center;
  padding-right: 20px;
}

.tag {
  margin: 0 6px 10px 0;
  padding: 9px 12px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case__info h3 {
  margin: 38px 0 10px;
  color: #a9baff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case__info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.step {
  min-height: 160px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.step__number {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 25px;
}

.step > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 60px;
}

.step h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.step p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.prices {
  background: var(--paper-deep);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.price-card {
  position: relative;
  min-height: 560px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.price-card--featured {
  transform: translateY(-18px);
  border-color: var(--blue);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.23), transparent 38%),
    var(--blue);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(37, 87, 245, 0.2);
}

.price-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__name {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card__price {
  margin: 38px 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(40px, 4vw, 58px);
  letter-spacing: -0.05em;
}

.price-card__desc {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.price-card--featured .price-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

.price-card ul {
  margin: 30px 0;
  padding: 24px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.price-card li {
  position: relative;
  margin: 11px 0;
  padding-left: 22px;
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.price-card--featured li::before {
  color: var(--orange);
}

.service-card .gift-item,
.price-card .gift-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  font-weight: 700;
}

.service-card .gift-item::before,
.price-card .gift-item::before {
  content: none;
}

.gift-item strong {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > a {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
}

.price-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(420px, 0.9fr);
  gap: 100px;
}

.faq .section-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 29px 48px 29px 0;
  list-style: none;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 25px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 620px;
  margin: -5px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  padding: 120px max(20px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.65fr);
  gap: 100px;
  background:
    radial-gradient(circle at 5% 95%, rgba(37, 87, 245, 0.48), transparent 36rem),
    var(--ink);
  color: var(--white);
}

.contact h2 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.92;
}

.contact__intro > p:not(.eyebrow, .contact__notice) {
  max-width: 570px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.6;
}

.contact-link {
  width: fit-content;
  margin-top: 45px;
  padding-bottom: 8px;
  display: flex;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #a9baff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.contact__notice {
  margin: 13px 0 0;
  color: #ffb69b;
  font-size: 12px;
}

.brief-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.23);
}

.brief-form label,
.form-field {
  margin-bottom: 22px;
  display: block;
}

.brief-form label,
.field-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-label {
  display: block;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  text-transform: none;
}

.brief-form textarea {
  resize: vertical;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-bottom-color: var(--blue);
}

.custom-select {
  position: relative;
  margin-top: 9px;
}

.custom-select__trigger {
  width: 100%;
  min-height: 54px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.custom-select__value {
  font-size: 16px;
}

.custom-select__arrow {
  width: 11px;
  height: 11px;
  margin-right: 5px;
  flex: 0 0 auto;
  transform: translateY(-3px) rotate(45deg);
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select__trigger {
  border-bottom-color: var(--blue);
}

.custom-select.is-open .custom-select__arrow {
  transform: translateY(3px) rotate(225deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 20;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(37, 87, 245, 0.16);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(23, 26, 34, 0.18);
  transform-origin: top;
  animation: select-open 170ms ease;
}

.custom-select__options[hidden] {
  display: none;
}

.custom-select__options button {
  width: 100%;
  padding: 13px 14px;
  display: block;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease, color 150ms ease;
}

.custom-select__options button + button {
  margin-top: 3px;
}

.custom-select__options button:hover,
.custom-select__options button:focus-visible {
  outline: none;
  background: var(--paper-deep);
}

.custom-select__options button[aria-selected="true"] {
  background: var(--blue);
  color: var(--white);
}

.custom-select__options button span,
.custom-select__options button small {
  display: block;
}

.custom-select__options button span {
  font-size: 14px;
  font-weight: 800;
}

.custom-select__options button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.custom-select__options button[aria-selected="true"] small {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes select-open {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

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

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.footer {
  min-height: 150px;
  padding: 34px max(20px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
  background: #0d0f14;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.logo--footer {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button:disabled {
  transform: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.error-page {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 87, 245, 0.2), transparent 32rem),
    var(--paper);
}

.error-page__panel {
  width: min(720px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-page__logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
}

.error-page__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.error-page__code {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 9vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.error-page__text {
  max-width: 480px;
  margin: 24px auto 32px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero__copy {
    padding-top: 30px;
  }

  .hero__visual {
    min-height: 540px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-card:first-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .case {
    grid-template-columns: 1fr;
  }

  .work-slide {
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  }

  .work-slide__content {
    padding: 28px;
  }

  .case__info {
    padding: 10px 10px 25px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .price-card {
    min-height: auto;
  }

  .price-card--featured {
    transform: none;
  }

  .price-card__desc {
    min-height: auto;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq .section-heading {
    position: static;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    margin-top: 10px;
    padding: 7px 8px 7px 12px;
    grid-template-columns: 1fr auto;
    border-radius: 34px;
  }

  .menu-button {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 2;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button > span:not(.sr-only) {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 10px;
    bottom: auto;
    left: 10px;
    max-height: calc(100dvh - 96px);
    padding: 16px;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(23, 26, 34, 0.12);
    border-radius: 28px;
    background: rgba(243, 240, 232, 0.97);
    box-shadow: 0 24px 65px rgba(23, 26, 34, 0.18);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
    animation: menu-open 180ms ease;
  }

  .site-nav a {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
  }

  .site-nav a::after {
    content: "↗";
    color: var(--blue);
    font-family: "Trebuchet MS", sans-serif;
    font-size: 16px;
  }

  .site-nav a.is-active::before {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: min(100% - 30px, 1240px);
    min-height: auto;
    padding: 65px 0 50px;
  }

  .hero__copy {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 65px);
    line-height: 0.92;
  }

  .hero h1 em {
    font-size: 0.9em;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero__facts {
    gap: 12px;
  }

  .hero__facts strong {
    font-size: 20px;
  }

  .hero__facts span {
    font-size: 11px;
  }

  .hero__visual {
    min-height: 410px;
  }

  .hero__visual::before {
    width: 290px;
    height: 290px;
  }

  .orbit--one {
    width: 340px;
    height: 340px;
  }

  .orbit--two {
    display: none;
  }

  .browser-card {
    width: min(350px, 93%);
    border-width: 6px;
  }

  .browser-card__body {
    min-height: 295px;
    padding: 32px 25px 20px;
  }

  .mini-title {
    height: 24px;
  }

  .mini-cards {
    margin-top: 30px;
  }

  .mini-cards span {
    height: 48px;
  }

  .floating-note {
    padding: 10px 12px;
    font-size: 10px;
  }

  .floating-note--top {
    top: 34px;
    right: 0;
  }

  .floating-note--bottom {
    bottom: 30px;
    left: 0;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .section-heading--row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2 {
    font-size: 51px;
  }

  .about__heading h2 {
    font-size: 49px;
  }

  .about__card {
    padding: 30px;
    border-radius: 30px;
  }

  .about__lead {
    font-size: 27px;
  }

  .about__principles {
    margin-top: 32px;
  }

  .section-heading > p:last-child,
  .section-heading--row > p {
    font-size: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .work-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .work-slide__media {
    aspect-ratio: 16 / 10;
  }

  .work-slide__content {
    min-height: 240px;
    padding: 26px;
  }

  .work-slide__description {
    max-width: 42ch;
  }

  .work-slider {
    padding: 10px;
    border-radius: 28px;
  }

  .work-slider__viewport {
    border-radius: 20px;
  }

  .work-slider__controls {
    grid-template-columns: 62px 1fr auto;
    gap: 14px;
  }

  .work-slider__buttons button {
    width: 44px;
    height: 44px;
  }

  .work-card--wide {
    grid-column: auto;
  }

  .work-card,
  .work-card__media {
    border-radius: 26px;
  }

  .work-card--wide .work-card__media {
    aspect-ratio: 16 / 10;
  }

  .work-card__info {
    min-height: 90px;
    padding: 20px 8px 7px;
  }

  .work-card__info h3 {
    font-size: 27px;
  }

  .service-card:first-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 450px;
    padding: 27px;
  }

  .service-card h3 {
    font-size: 38px;
  }

  .case {
    padding: 14px;
    gap: 24px;
  }

  .case__screen {
    min-height: 390px;
    padding: 35px 18px;
  }

  .case__preview {
    min-height: 310px;
    padding: 32px 25px;
  }

  .case__preview h3 {
    font-size: 37px;
  }

  .case__preview-cards {
    margin-top: 34px;
  }

  .step {
    grid-template-columns: 55px 1fr;
  }

  .step > div {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .step h3 {
    font-size: 37px;
  }

  .price-card {
    padding: 28px;
    border-radius: 30px;
  }

  .price-card__price {
    margin-top: 46px;
    font-size: 43px;
  }

  .faq-item summary {
    font-size: 21px;
  }

  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .contact h2 {
    font-size: 55px;
  }

  .brief-form {
    padding: 25px;
    border-radius: 30px;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@keyframes menu-open {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
