:root {
  --bg: #080808;
  --surface: #0b0b0b;
  --surface-2: #111111;
  --line: #242424;
  --line-soft: #1e1e1e;
  --text: #f5f5f5;
  --muted: #8a8a8a;
  --soft: #a1a1a1;
  --green: #32d583;
  --green-dark: #07130c;
  --radius: 12px;
  --radius-card: 12px;
  --radius-control: 8px;
  --radius-pill: 999px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(50, 213, 131, 0.1), transparent 28rem),
    linear-gradient(180deg, #0a0a0a 0%, var(--bg) 42rem);
  color: var(--text);
  font-family: "Geist", sans-serif;
  letter-spacing: 0;
}

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

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

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(672px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 16px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(18px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.nav__links a:first-of-type {
  color: var(--text);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
}

.spark {
  width: 18px;
  height: 18px;
  background: var(--green);
  clip-path: polygon(50% 0, 63% 34%, 100% 50%, 63% 66%, 50% 100%, 37% 66%, 0 50%, 37% 34%);
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(672px, calc(100vw - 32px));
  margin: 24px auto;
}

.panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.hero__main,
.section,
.why,
.momentum {
  padding: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}

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

.brand__name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.brand .muted {
  font-size: 14px;
  line-height: 20px;
}

.muted,
.section p,
.why p,
.momentum p,
.note,
.faq-list p {
  color: var(--muted);
}

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

h1 {
  font-family: "Instrument Serif", serif;
  max-width: 610px;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.02);
  color: var(--soft);
  font-size: 12px;
  line-height: 18px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.hero-contact a:hover {
  border-color: rgba(50, 213, 131, 0.42);
  background: rgba(50, 213, 131, 0.08);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--green-dark);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #65e3a2;
  box-shadow: 0 14px 36px rgba(50, 213, 131, 0.18);
}

.button--small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
  line-height: 18px;
}

.button--light {
  border-color: rgba(245, 245, 245, 0.08);
  background: var(--text);
  color: #0b0b0b;
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(245, 245, 245, 0.18);
  background: #151515;
  box-shadow: none;
}

.hero__bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
}

.hero__bar span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  color: var(--soft);
  font-size: 14px;
  border-right: 1px solid var(--line-soft);
}

.hero__bar i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}

.hero__bar span:last-child {
  border-right: 0;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section__intro {
  display: grid;
  gap: 10px;
}

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

.work-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 184px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(50, 213, 131, 0.14), transparent 120px),
    #0d0d0d;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.work-card__mockup {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: min(168px, 100%);
}

.work-card__mockup i {
  display: block;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(245, 245, 245, 0.12);
}

.work-card__mockup i:first-child {
  width: 38%;
  background: var(--green);
}

.work-card__mockup i:nth-child(2) {
  width: 74%;
}

.work-card__mockup i:nth-child(3) {
  width: 54%;
}

.work-card span,
.work-card p {
  position: relative;
  z-index: 1;
}

.work-card span {
  font-size: 15px;
  font-weight: 500;
}

.work-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.why,
.momentum {
  display: grid;
  gap: 18px;
}

.why .lead {
  color: #c6c6c6;
  font-size: 15px;
  line-height: 22px;
}

.why strong,
.green-heading {
  color: var(--green);
  font-size: 15px;
  font-weight: 500;
}

.eyebrow,
.service-card span,
.steps span {
  color: var(--green);
  font-family: "Azeret Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.stack-marquee {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.marquee {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 8px 26px;
}

@keyframes logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #494949;
  flex: 0 0 auto;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.logo-mark:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(50, 213, 131, 0.18), rgba(50, 213, 131, 0.08) 36%, transparent 74%),
    linear-gradient(180deg, rgba(50, 213, 131, 0.07), transparent 72%);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.hero__main,
.hero__bar {
  position: relative;
  z-index: 1;
}

.button--light {
  box-shadow: 0 0 0 rgba(245, 245, 245, 0);
}

.comparison,
.service-grid,
.pricing-grid,
.faq-list,
.process-grid {
  display: grid;
  gap: 12px;
}

.comparison {
  padding-top: 4px;
}

.comparison__labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.comparison__labels span:first-child {
  color: var(--green);
}

.metric {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-2);
}

.metric > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft);
  font-size: 13px;
}

.metric span {
  color: var(--text);
  white-space: nowrap;
}

.metric p {
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.meter {
  height: 8px;
  border-radius: var(--radius-pill);
  background: #202020;
  overflow: hidden;
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #f5f5f5);
  transform-origin: left center;
  will-change: transform;
}

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

.service-card,
.price-card,
.steps article,
.process-grid article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-2);
}

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

.process-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid span {
  color: var(--green);
  font-family: "Azeret Mono", monospace;
  font-size: 11px;
  line-height: 16px;
}

.process-grid strong {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.process-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.service-card.featured {
  min-height: 232px;
}

.service-card__actions {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card h3 {
  font-size: 15.3px;
  line-height: 1.25;
}

.service-card p,
.price-card p {
  color: var(--soft);
  font-size: 13px;
  line-height: 20px;
}

.service-card a,
.read-more {
  align-self: end;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
}

.read-more {
  appearance: none;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.momentum {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.steps article {
  grid-template-columns: 118px 1fr;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
}

.steps strong {
  font-size: 15px;
  font-weight: 500;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.price-card {
  min-height: 500px;
  height: 100%;
  align-content: stretch;
  gap: 13px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: #080808;
}

.price-card--active {
  border-color: var(--line);
  box-shadow: inset 0 0 0 1px rgba(245, 245, 245, 0.08);
}

.price-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}

.price-card__top h3 {
  font-size: 17px;
  font-weight: 400;
}

.price-card__top span {
  padding: 3px 5px;
  border: 1px solid var(--text);
  border-radius: var(--radius-control);
  color: var(--text);
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  font-weight: 500;
}

.price-card__price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.price-card__price strong {
  color: var(--text);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.88;
}

.price-card__price span {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.1;
  padding-bottom: 3px;
}

.price-card > p:not(.price-card__label) {
  max-width: 100%;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
}

.price-card hr {
  width: 100%;
  margin: 4px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.price-card__label {
  color: var(--soft);
  font-size: 10.5px;
  line-height: 1.4;
}

.price-features {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 23px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.32;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--text);
  border-radius: var(--radius-control);
  opacity: 0.95;
}

.price-features li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 5px;
  height: 3px;
  border-left: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  transform: rotate(-45deg);
}

.price-card .button {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  background: var(--text);
  color: #080808;
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.note {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  font-size: 13px;
  line-height: 20px;
  background: #0d0d0d;
}

.deliverables {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--soft);
  font-size: 13px;
  line-height: 20px;
}

.cta {
  margin-top: 4px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 21px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.footer p:last-child {
  text-align: right;
}

.chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(50, 213, 131, 0.34);
  border-radius: var(--radius-pill);
  background: rgba(50, 213, 131, 0.16);
  color: var(--green);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 34px rgba(50, 213, 131, 0.28),
    0 18px 54px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-family: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.chat-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(50, 213, 131, 0.72);
  background: rgba(50, 213, 131, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 48px rgba(50, 213, 131, 0.38),
    0 20px 60px rgba(0, 0, 0, 0.56);
}

.chat-launcher svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(672px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(50, 213, 131, 0.08), transparent 180px),
    var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.modal__close {
  justify-self: end;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #141414;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.modal__panel > p:not(.eyebrow),
.modal__body li {
  color: var(--soft);
  font-size: 14px;
  line-height: 21px;
}

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

.modal-stat {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-2);
}

.modal-stat strong {
  color: var(--green);
  font-size: 22px;
  font-weight: 500;
}

.modal-stat span {
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

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

.modal__body h3 {
  margin-bottom: 10px;
}

.modal__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.modal__body li::marker {
  color: var(--green);
}

.contact-panel {
  gap: 22px;
}

.contact-copy {
  color: var(--soft);
  font-size: 15px;
  line-height: 22px;
}

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

.contact-actions .button {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
}

.brief-form {
  display: grid;
  gap: 12px;
}

.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 12px;
  line-height: 18px;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  padding: 11px 12px;
  outline: none;
}

.brief-form textarea {
  min-height: 112px;
  resize: vertical;
}

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

.voice-note {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-2);
}

.voice-note h3 {
  margin-bottom: 6px;
}

.voice-note p {
  color: var(--soft);
  font-size: 13px;
  line-height: 20px;
}

.voice-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-controls .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.voice-note audio {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 809px) {
  .nav {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav__links {
    gap: 0;
  }

  .nav__links a {
    display: none;
  }

  .nav__toggle {
    display: grid;
    margin-left: auto;
  }

  .nav > .button {
    display: none;
  }

  .nav__mobile {
    display: none;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
  }

  .nav.is-open .nav__mobile {
    display: grid;
    gap: 8px;
  }

  .nav__mobile a,
  .nav__mobile .button {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    font-size: 14px;
  }

  .nav__mobile .button {
    justify-content: center;
    margin-top: 4px;
    border-color: transparent;
    border-radius: var(--radius-pill);
    background: var(--green);
    color: var(--green-dark);
  }

  .page-shell {
    gap: 16px;
    margin-top: 16px;
  }

  .hero__main,
  .section,
  .why,
  .momentum {
    padding: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.02;
  }

  .brand {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .hero-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-contact a {
    justify-content: center;
    width: 100%;
    min-height: 34px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero__bar,
  .work-grid,
  .service-grid,
  .process-grid,
  .process-grid--four,
  .momentum,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero__bar span {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero__bar span:last-child {
    border-bottom: 0;
  }

  .service-card.featured,
  .price-card {
    min-height: auto;
  }

  .stack-marquee {
    padding: 22px;
  }

  .marquee__track {
    animation-duration: 24s;
  }

  .marquee__group {
    gap: 24px;
    padding: 8px 20px;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }

  .price-card {
    padding: 24px;
    gap: 16px;
  }

  .price-card__price strong {
    font-size: 64px;
  }

  .price-card__price span {
    font-size: 18px;
  }

  .price-card > p:not(.price-card__label) {
    font-size: 18px;
  }

  .price-card__label,
  .price-features li {
    font-size: 15px;
  }

  .footer {
    display: grid;
    padding: 24px;
  }

  .footer p:last-child {
    text-align: left;
  }

  .modal {
    padding: 16px;
  }

  .modal__panel {
    padding: 22px;
  }

  .modal__grid,
  .modal__body {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 460px) {
  .button--small {
    display: none;
  }

  .actions {
    width: 100%;
  }

  .actions .button {
    width: 100%;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand__name {
    font-size: 16px;
    line-height: 20px;
  }

  .brand .muted {
    font-size: 13px;
    line-height: 18px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  .hero__bar span {
    padding: 15px 18px;
  }

  .steps article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .chat-launcher {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}
