.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  gap: 2.2rem;
  align-items: start;
  padding-top: 8.25rem;
  position: relative;
}

.hero__kicker {
  grid-column: 1 / -1;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero__title,
.service-list h2 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero__title {
  max-width: 10ch;
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 1.55rem + 2.3vw, 3.9rem);
  line-height: 0.96;
}

.hero__backdrop {
  position: absolute;
  inset: 1rem auto auto -2rem;
  width: min(38rem, 50vw);
  height: 20rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.22), transparent 34%),
    radial-gradient(circle at 72% 42%, rgba(45, 212, 191, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.12) 100%);
  filter: blur(12px);
  z-index: -1;
}

.hero__lead {
  max-width: 31rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.hero__body {
  display: grid;
  gap: 1rem;
}

.hero__services-box {
  width: min(100%, 35rem);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(45, 212, 191, 0.12)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(63, 77, 113, 0.1);
}

.hero__services-box strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__services-box ul {
  margin: 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #35506c;
  font-size: 0.92rem;
  line-height: 1.45;
  list-style: none;
}

.hero__services-box li {
  position: relative;
  padding: 0.68rem 0 0.68rem 1.35rem;
  border-bottom: 1px solid rgba(79, 70, 229, 0.12);
}

.hero__services-box li:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.hero__services-box li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 1rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #2dd4bf 100%);
}

.hero__cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
  margin-top: 1.3rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
}

.hero__actions--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.hero__action-card {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(21, 33, 58, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(63, 77, 113, 0.08);
  color: var(--text);
}

.hero__action-card span {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__action-card strong {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.04;
}

.hero__action-card--primary {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(100, 88, 247, 0.16));
}

.hero__action-card:not(.hero__action-card--primary) {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(79, 70, 229, 0.08));
}

.hero__stage {
  position: relative;
  min-height: 30rem;
  margin-top: -0.2rem;
}

.hero__image {
  position: absolute;
  inset: 0.8rem 1.8rem 2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.62);
  transform: rotate(-0.6deg);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero__card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(18rem, 58%);
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 241, 255, 0.92));
  box-shadow: 0 14px 34px rgba(63, 77, 113, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero__card-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.02;
}

.hero__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero__card:hover {
  transform: translate(6px, -4px);
  box-shadow: 0 18px 38px rgba(63, 77, 113, 0.18);
}

.hero__stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(22rem, 70%);
  padding: 1rem;
  background: linear-gradient(135deg, rgba(98, 89, 255, 0.12), rgba(45, 212, 191, 0.14)), var(--panel-strong);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero__stamp span {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent-strong);
}

.hero__stamp ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.hero__stamp:hover {
  transform: rotate(0.3deg) translate(-5px, -3px);
  box-shadow: 0 18px 38px rgba(63, 77, 113, 0.18);
}

.hero__metrics-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(21, 33, 58, 0.08);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(45, 212, 191, 0.12)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(63, 77, 113, 0.14);
}

.hero__metrics-card article {
  padding: 0.15rem 0 0.65rem;
  border-bottom: 1px solid rgba(79, 70, 229, 0.12);
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero__metrics-card article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero__metrics-card article:hover {
  transform: translateX(4px);
}

.hero__metrics-card strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--accent-strong);
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.02;
}

.hero__metrics-card p {
  margin: 0;
  color: #35506c;
  font-size: 0.88rem;
  line-height: 1.45;
}

.slab article,
.service-list article,
.addon-grid article,
.contact-zone aside,
.contact-shell {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flow-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.75rem;
  align-items: stretch;
}

.page-links {
  display: grid;
  gap: 0.9rem;
}

.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.1rem;
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 33, 58, 0.08);
  box-shadow: 0 10px 24px rgba(63, 77, 113, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.page-links a:hover,
.page-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.16);
  box-shadow: 0 14px 28px rgba(63, 77, 113, 0.12);
}

.page-links--primary {
  margin-top: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-links--primary a {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 238, 255, 0.94));
}

.page-links--primary a:hover,
.page-links--primary a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(214, 231, 255, 0.98));
}

.flow-ribbon article {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(214, 230, 255, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16));
  backdrop-filter: blur(26px) saturate(135%);
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(79, 70, 229, 0.08),
    0 18px 38px rgba(63, 77, 113, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flow-ribbon article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(210, 228, 255, 0.54)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2));
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(79, 70, 229, 0.1),
    0 22px 42px rgba(63, 77, 113, 0.16);
}

.flow-ribbon span {
  display: block;
  margin-bottom: 0.5rem;
  color: #1f3faa;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-ribbon article p {
  margin: 0;
  color: #4d6286;
  line-height: 1.55;
}

.flow-ribbon article:nth-child(2) span {
  color: #168a7a;
}

.flow-ribbon article:nth-child(3) span {
  color: #6f4ed6;
}

.story-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.story-band__intro h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2.9rem, 2rem + 2.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.story-band__intro p:last-child {
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.72;
}

.story-steps {
  display: grid;
  gap: 0.8rem;
}

.story-step {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(21, 33, 58, 0.08);
  box-shadow: 0 12px 24px rgba(63, 77, 113, 0.08);
}

.story-step span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-step--paper span {
  color: #2f63d8;
}

.story-step--accent span {
  color: #168a7a;
}

.story-step:nth-child(4) span {
  color: #6f4ed6;
}

.story-step h3,
.product-card h3 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.22rem, 1.05rem + 0.45vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.story-step--ink {
  background: linear-gradient(135deg, #2b3470 0%, #4150a1 100%);
  color: #f7f2ea;
}

.story-step--ink span,
.story-step--ink p {
  color: rgba(247, 242, 234, 0.82);
}

.story-step--paper {
  background: linear-gradient(135deg, rgba(214, 228, 255, 0.96), rgba(213, 240, 255, 0.92));
}

.story-step--accent {
  background: linear-gradient(135deg, rgba(215, 235, 255, 0.96), rgba(220, 248, 240, 0.94));
}

.story-step:nth-child(4) {
  background: linear-gradient(135deg, rgba(232, 226, 255, 0.96), rgba(221, 234, 255, 0.92));
}

.stack-products {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  padding: 5rem 0;
}

.stack-products__copy {
  max-width: 42rem;
  align-self: start;
  padding-top: 0.35rem;
}

.stack-products__copy h2 {
  margin-bottom: 1rem;
  font-family: var(--display);
  max-width: 11ch;
  font-size: clamp(2.55rem, 1.9rem + 2.45vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.stack-products__copy p {
  color: var(--muted);
  line-height: 1.72;
}

.stack-products__grid {
  display: contents;
}

.stack-products__side {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding-top: 1.1rem;
}

.tech-stack-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(21, 33, 58, 0.08);
  box-shadow: 0 12px 24px rgba(63, 77, 113, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tech-stack-card--product {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  background:
    radial-gradient(circle at top right, rgba(96, 118, 255, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(235, 229, 255, 0.94), rgba(220, 233, 255, 0.94) 52%, rgba(213, 244, 255, 0.9));
  border-color: rgba(98, 88, 220, 0.1);
}

.tech-stack-card--stack {
  min-width: 0;
  background: linear-gradient(135deg, #2b3470 0%, #4150a1 100%);
  color: #f7f2ea;
}

.tech-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(63, 77, 113, 0.12);
}

.tech-stack-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-stack-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: tech-stack-slide 26s linear infinite;
}

.tech-stack-track span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: rgba(247, 242, 234, 0.92);
}

.tech-stack-track img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

@keyframes tech-stack-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.4rem));
  }
}

.product-card__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.tech-stack-card--stack .product-card__eyebrow,
.tech-stack-card--stack p {
  color: rgba(247, 242, 234, 0.82);
}

.tech-stack-card--product h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 1.3rem + 1vw, 2.6rem);
  line-height: 1.02;
  color: #2b2f73;
}

.tech-stack-card--product p {
  margin: 0;
  color: #5a6f95;
  line-height: 1.68;
}

.product-link-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.product-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(79, 70, 229, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 255, 0.92));
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(63, 77, 113, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  text-align: center;
}

.product-link-list a:hover,
.product-link-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(227, 240, 255, 0.96));
  box-shadow: 0 14px 28px rgba(63, 77, 113, 0.12);
}

.product-link-list--stack a {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(90, 78, 220, 0.72), rgba(55, 157, 255, 0.7));
  color: #f7f2ea;
  box-shadow: 0 14px 28px rgba(18, 26, 63, 0.24);
}

.product-link-list--stack a:hover,
.product-link-list--stack a:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(108, 90, 240, 0.84), rgba(58, 175, 255, 0.78));
  box-shadow: 0 18px 32px rgba(18, 26, 63, 0.28);
}

.tech-stack-card--product .product-link-list a {
  border-color: rgba(103, 77, 226, 0.22);
  background: linear-gradient(135deg, rgba(223, 94, 188, 0.96), rgba(142, 83, 255, 0.98) 54%, rgba(42, 161, 255, 0.94));
  color: #fdfcff;
  box-shadow: 0 16px 30px rgba(96, 77, 190, 0.26);
}

.tech-stack-card--product .product-link-list a:hover,
.tech-stack-card--product .product-link-list a:focus-visible {
  border-color: rgba(116, 88, 236, 0.3);
  background: linear-gradient(135deg, rgba(236, 108, 194, 1), rgba(156, 92, 255, 1) 54%, rgba(56, 177, 255, 0.98));
  box-shadow: 0 20px 34px rgba(96, 77, 190, 0.3);
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.reference-list--page {
  padding-bottom: 5rem;
}

.reference-item {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 238, 255, 0.78) 56%, rgba(217, 246, 240, 0.66));
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 34px rgba(63, 77, 113, 0.12);
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reference-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  filter: grayscale(1) contrast(1.02);
  transition: filter 180ms ease, transform 180ms ease;
}

.reference-item__text {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
}

.reference-item__text strong {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1rem + 0.45vw, 1.5rem);
  font-weight: 700;
}

.reference-item__text span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-item:hover img,
.reference-item:focus-visible img {
  filter: grayscale(0.12) contrast(1.04);
  transform: translateY(-2px);
}

.reference-item:hover,
.reference-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.16);
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 38px rgba(63, 77, 113, 0.16);
}

.reference-item:hover .reference-item__text span,
.reference-item:focus-visible .reference-item__text span {
  color: #3b82f6;
}

.closing-links {
  display: grid;
  gap: 0.65rem;
  padding: 0 0 6rem;
  text-align: center;
}

.closing-links h2 {
  max-width: 24ch;
  margin: 0 auto 0.1rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 1.55rem + 1.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.closing-links__lead {
  max-width: 38rem;
  margin: 0 auto 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-intro {
  display: grid;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.section-intro h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 1.45rem + 1.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.legal-shell p {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.72;
}

.site-shell--narrow {
  width: min(1080px, calc(100vw - 2rem));
}

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 1.5rem;
  padding: 8.25rem 0 2.2rem;
  align-items: start;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto -1.2rem;
  width: min(30rem, 56vw);
  height: 14rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 38%, rgba(79, 70, 229, 0.18), transparent 30%),
    radial-gradient(circle at 72% 48%, rgba(45, 212, 191, 0.16), transparent 33%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12));
  filter: blur(12px);
  z-index: -1;
}

.page-hero__copy {
  padding: 0.4rem 0 0;
}

.page-hero__copy h1 {
  margin-bottom: 1rem;
  font-family: var(--display);
  max-width: 10ch;
  font-size: clamp(2.2rem, 1.55rem + 2.3vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.page-hero__copy p:last-child {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.72;
}

.page-hero__meta {
  display: grid;
  gap: 0.7rem;
  padding: 1.5rem;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(43, 52, 112, 0.98), rgba(56, 84, 168, 0.94) 58%, rgba(37, 140, 157, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 44px rgba(30, 41, 85, 0.2);
  --meta-strong: rgba(255, 255, 255, 0.7);
  --meta-pill-text: rgba(247, 242, 234, 0.96);
  --meta-pill-border: rgba(255, 255, 255, 0.14);
  --meta-pill-bg: rgba(255, 255, 255, 0.1);
}

.page-hero__meta strong {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--meta-strong);
}

.page-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  color: var(--meta-pill-text);
  font-weight: 600;
  line-height: 1.45;
  border: 1px solid var(--meta-pill-border);
  background: var(--meta-pill-bg);
  backdrop-filter: blur(12px);
}

.page-hero__meta--services {
  background:
    linear-gradient(155deg, rgba(35, 56, 154, 0.98), rgba(53, 112, 210, 0.94) 56%, rgba(54, 186, 198, 0.9));
  --meta-strong: rgba(230, 240, 255, 0.8);
  --meta-pill-text: rgba(245, 249, 255, 0.96);
  --meta-pill-border: rgba(180, 215, 255, 0.18);
  --meta-pill-bg: rgba(255, 255, 255, 0.1);
}

.page-hero__meta--references {
  background:
    linear-gradient(155deg, rgba(56, 83, 186, 0.98), rgba(84, 118, 228, 0.94) 50%, rgba(129, 88, 227, 0.9));
  --meta-strong: rgba(236, 238, 255, 0.82);
  --meta-pill-text: rgba(248, 247, 255, 0.97);
  --meta-pill-border: rgba(212, 206, 255, 0.2);
  --meta-pill-bg: rgba(255, 255, 255, 0.1);
}

.page-hero__meta--info {
  background:
    linear-gradient(155deg, rgba(84, 121, 214, 0.82), rgba(61, 112, 212, 0.92) 48%, rgba(33, 77, 171, 0.98));
  --meta-strong: rgba(239, 244, 255, 0.82);
  --meta-pill-text: rgba(248, 251, 255, 0.97);
  --meta-pill-border: rgba(206, 222, 250, 0.18);
  --meta-pill-bg: rgba(255, 255, 255, 0.1);
}

.page-hero__meta--contact {
  background:
    linear-gradient(155deg, rgba(62, 119, 218, 0.9), rgba(72, 160, 220, 0.92) 48%, rgba(33, 109, 176, 0.98));
  --meta-strong: rgba(235, 246, 255, 0.84);
  --meta-pill-text: rgba(247, 252, 255, 0.98);
  --meta-pill-border: rgba(194, 228, 244, 0.18);
  --meta-pill-bg: rgba(255, 255, 255, 0.1);
}

.page-hero--legal .page-hero__meta {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 241, 255, 0.82) 58%, rgba(226, 246, 241, 0.72));
}

.page-hero--legal .page-hero__meta strong {
  color: #2c4ea0;
}

.page-hero--legal .page-hero__meta span {
  color: #4d6286;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(79, 70, 229, 0.1);
}

.legal-card {
  max-width: 58rem;
  padding: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 240, 255, 0.86) 60%, rgba(226, 246, 241, 0.78));
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 24px 54px rgba(63, 77, 113, 0.12);
}

.legal-card--stack h2 {
  margin: 1.4rem 0 0.45rem;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.05;
}

.legal-card--stack h2:first-child {
  margin-top: 0;
}

.service-list,
.addon-grid,
.contact-zone {
  display: grid;
  gap: 1rem;
}

.service-list article {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(226, 238, 255, 0.76) 56%, rgba(217, 246, 240, 0.64));
}

.service-list article:nth-child(3n + 2) {
  background:
    linear-gradient(145deg, rgba(226, 237, 255, 0.94), rgba(224, 247, 250, 0.78) 58%, rgba(255, 255, 255, 0.7));
}

.service-list article:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(236, 230, 255, 0.94), rgba(224, 236, 255, 0.82) 52%, rgba(220, 248, 240, 0.68));
}

.service-list span {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.service-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(79, 70, 229, 0.14);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.service-list article p,
.addon-grid article p,
.legal-card p,
.legal-card li {
  color: #506482;
  line-height: 1.68;
}

.service-list h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.4rem);
}

.service-list--editorial {
  gap: 0;
  border-top: 1px solid rgba(79, 70, 229, 0.12);
}

.service-list--editorial article {
  --service-accent: #243ec7;
  --service-accent-2: #35b7c9;
  --service-accent-soft: rgba(79, 70, 229, 0.12);
  --service-accent-glow: rgba(79, 70, 229, 0.18);
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.35rem 0;
  border: 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.12);
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-list--editorial article:nth-child(3n + 2),
.service-list--editorial article:nth-child(3n) {
  background: transparent;
}

.service-list--editorial article > span {
  width: 2.4rem;
  min-height: auto;
  padding: 0.45rem 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--service-accent) 22%, #ffffff 78%), color-mix(in srgb, var(--service-accent-2) 14%, #ecf7ff 86%));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 22px var(--service-accent-glow);
  justify-content: center;
  color: var(--service-accent);
  font-size: 0.88rem;
}

.service-list--editorial h2 {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0 0 0.14em;
  font-size: clamp(1.45rem, 1.15rem + 0.68vw, 2.05rem);
  line-height: 1.14;
  color: var(--service-accent);
  background-image: linear-gradient(135deg, var(--service-accent) 0%, var(--service-accent-2) 52%, color-mix(in srgb, var(--service-accent) 64%, #ffffff 36%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-list--editorial p {
  max-width: 52rem;
}

.service-list--editorial article:hover {
  transform: translateX(6px);
  border-bottom-color: var(--service-accent-glow);
}

.service-list--editorial article:hover h2 {
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--service-accent) 94%, #ffffff 6%) 0%, color-mix(in srgb, var(--service-accent-2) 88%, #ffffff 12%) 52%, color-mix(in srgb, var(--service-accent) 60%, #ffffff 40%) 100%);
}

.service-list--editorial article:nth-child(1) {
  --service-accent: #243ec7;
  --service-accent-2: #35b7c9;
  --service-accent-glow: rgba(36, 62, 199, 0.18);
}

.service-list--editorial article:nth-child(2) {
  --service-accent: #1a7f72;
  --service-accent-2: #64d2c5;
  --service-accent-glow: rgba(26, 127, 114, 0.18);
}

.service-list--editorial article:nth-child(3) {
  --service-accent: #7a43d1;
  --service-accent-2: #b983ff;
  --service-accent-glow: rgba(122, 67, 209, 0.18);
}

.service-list--editorial article:nth-child(4) {
  --service-accent: #b45309;
  --service-accent-2: #f59e0b;
  --service-accent-glow: rgba(180, 83, 9, 0.18);
}

.service-list--editorial article:nth-child(5) {
  --service-accent: #0f766e;
  --service-accent-2: #2dd4bf;
  --service-accent-glow: rgba(15, 118, 110, 0.18);
}

.service-list--editorial article:nth-child(6) {
  --service-accent: #9f1239;
  --service-accent-2: #f43f5e;
  --service-accent-glow: rgba(159, 18, 57, 0.18);
}

.service-list--manifesto {
  gap: 0.9rem;
}

.service-list--manifesto article {
  --manifesto-accent: #243ec7;
  --manifesto-accent-2: #35b7c9;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.35rem 0 1.35rem 1.1rem;
  border: 0;
  border-left: 3px solid rgba(79, 70, 229, 0.14);
  background:
    linear-gradient(90deg, rgba(79, 70, 229, 0.05), rgba(79, 70, 229, 0) 22%),
    transparent;
  box-shadow: none;
}

.service-list--manifesto article:nth-child(1) {
  --manifesto-accent: #243ec7;
  --manifesto-accent-2: #35b7c9;
  border-left-color: rgba(36, 62, 199, 0.24);
  background: linear-gradient(90deg, rgba(36, 62, 199, 0.08), rgba(36, 62, 199, 0) 24%), transparent;
}

.service-list--manifesto article:nth-child(2) {
  --manifesto-accent: #188579;
  --manifesto-accent-2: #5fd0bf;
  border-left-color: rgba(24, 133, 121, 0.24);
  background: linear-gradient(90deg, rgba(24, 133, 121, 0.08), rgba(24, 133, 121, 0) 24%), transparent;
}

.service-list--manifesto article:nth-child(3) {
  --manifesto-accent: #7a43d1;
  --manifesto-accent-2: #bb86ff;
  border-left-color: rgba(122, 67, 209, 0.24);
  background: linear-gradient(90deg, rgba(122, 67, 209, 0.08), rgba(122, 67, 209, 0) 24%), transparent;
}

.service-list--manifesto article:nth-child(4) {
  --manifesto-accent: #b45309;
  --manifesto-accent-2: #f1aa52;
  border-left-color: rgba(180, 83, 9, 0.24);
  background: linear-gradient(90deg, rgba(180, 83, 9, 0.08), rgba(180, 83, 9, 0) 24%), transparent;
}

.service-list--manifesto article > span {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  width: auto;
  min-height: auto;
  padding: 0.08rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.9rem;
  color: var(--manifesto-accent);
}

.service-list--manifesto h2 {
  display: inline-block;
  margin-bottom: 0.38rem;
  padding-bottom: 0.14em;
  font-size: clamp(1.42rem, 1.16rem + 0.62vw, 1.95rem);
  line-height: 1.12;
  color: var(--manifesto-accent);
  background-image: linear-gradient(135deg, var(--manifesto-accent) 0%, var(--manifesto-accent-2) 56%, color-mix(in srgb, var(--manifesto-accent) 62%, #ffffff 38%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-list--manifesto p {
  max-width: 48rem;
}

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

.addon-grid ul {
  display: grid;
  gap: 0.5rem;
}

.addon-grid article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(155deg, rgba(43, 52, 112, 0.96), rgba(58, 87, 172, 0.92) 56%, rgba(39, 146, 165, 0.88));
  color: #f7f2ea;
  box-shadow: 0 20px 40px rgba(30, 41, 85, 0.2);
}

.addon-grid article:nth-child(even) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 255, 0.84) 54%, rgba(221, 246, 239, 0.74));
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 40px rgba(63, 77, 113, 0.12);
}

.addon-grid article h2,
.addon-grid article h3 {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.18rem + 0.68vw, 2rem);
  line-height: 1.04;
}

.addon-grid article li {
  line-height: 1.55;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.addon-grid article:not(:nth-child(even)) li,
.addon-grid article:not(:nth-child(even)) p {
  color: rgba(247, 242, 234, 0.84);
}

.detail-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

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

.detail-card,
.team-card {
  min-width: 0;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    0 0 0 1px rgba(79, 70, 229, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 38px rgba(63, 77, 113, 0.12);
}

.detail-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(227, 239, 255, 0.8) 58%, rgba(216, 246, 240, 0.68));
}

.detail-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.detail-card ul {
  display: grid;
  gap: 0.45rem;
}

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

.team-card {
  background:
    linear-gradient(150deg, rgba(43, 52, 112, 0.96), rgba(58, 86, 167, 0.94) 60%, rgba(39, 145, 165, 0.9));
  color: #f7f2ea;
}

.team-card:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(235, 230, 255, 0.96), rgba(221, 234, 255, 0.9) 58%, rgba(215, 244, 255, 0.82));
  color: var(--text);
}

.team-card:nth-child(2) p,
.team-card:nth-child(2) li,
.team-card:nth-child(2) strong {
  color: inherit;
}

.team-card__head {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1rem;
}

.team-card__head img {
  width: 4.8rem;
  height: 4.8rem;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(18, 26, 63, 0.22);
}

.team-card__head strong {
  display: block;
  margin-bottom: 0.18rem;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.02;
}

.team-card__head span {
  color: rgba(247, 242, 234, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card:nth-child(2) .team-card__head span {
  color: #526784;
}

.team-card p,
.team-card li {
  color: rgba(247, 242, 234, 0.86);
  line-height: 1.62;
}

.team-card ul {
  display: grid;
  gap: 0.45rem;
}

.contact-zone {
  position: relative;
  gap: 0;
}

.contact-brief {
  position: absolute;
  top: -1.05rem;
  right: 1.2rem;
  z-index: 2;
  width: min(29rem, calc(100% - 2.4rem));
  padding: 1rem 1.05rem 0.95rem !important;
  border: 1px solid rgba(82, 118, 229, 0.14) !important;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(233, 242, 255, 0.9));
  box-shadow:
    0 16px 34px rgba(63, 77, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.contact-brief__lead {
  margin: 0.15rem 0 0.72rem;
  color: #45607c;
  font-size: 0.92rem;
  font-weight: 600;
}

.request-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.1rem;
  padding: 0;
  list-style: none;
}

.request-list li {
  position: relative;
  padding: 0 0 0.48rem 1rem;
  border-bottom: 1px solid rgba(74, 108, 219, 0.14);
  color: #1d3550;
  font-size: 0.88rem;
  font-weight: 600;
}

.request-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #5fb7ff, #4667e8);
}

.contact-shell {
  position: relative;
  padding: 8rem 1.45rem 1.45rem !important;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(235, 242, 255, 0.8) 58%, rgba(225, 247, 244, 0.66)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  border-color: rgba(82, 118, 229, 0.16) !important;
  box-shadow:
    0 22px 48px rgba(63, 77, 113, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-shell__intro {
  margin-bottom: 1.3rem;
}

.contact-shell__intro h2 {
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 1.32rem + 0.95vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-shell__intro p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: #47627d;
}

.contact-shell .brutal-button {
  background:
    linear-gradient(135deg, #78c3ff 0%, #4b8eff 42%, #2754d8 100%);
  border-color: rgba(39, 84, 216, 0.24);
  box-shadow:
    0 16px 34px rgba(44, 92, 220, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  text-shadow: 0 1px 0 rgba(18, 39, 103, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-shell .brutal-button:hover,
.contact-shell .brutal-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(44, 92, 220, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: saturate(1.05) brightness(1.02);
}

.legal-shell {
  padding: 0 0 1rem;
}

.legal-shell h1 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 1.7rem + 2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.contact-shell form {
  display: grid;
  gap: 1rem;
}

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

.contact-shell label {
  display: grid;
  gap: 0.45rem;
}

.contact-shell input,
.contact-shell select,
.contact-shell textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(74, 108, 219, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-shell input:focus,
.contact-shell select:focus,
.contact-shell textarea:focus {
  outline: none;
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow:
    0 0 0 4px rgba(79, 70, 229, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.98);
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check-row {
  display: flex !important;
  gap: 0.8rem;
  align-items: flex-start;
  cursor: pointer;
}

.check-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.35rem;
  cursor: pointer;
}

.check-row a {
  color: #1e56d9;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
  text-decoration-thickness: 2px;
}

.check-row a:hover,
.check-row a:focus-visible {
  color: #163fa9;
}

.feedback {
  display: grid;
  gap: 0.5rem;
  align-items: start;
}

.spinner {
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid rgba(72, 114, 218, 0.16);
  border-top-color: #2f63e0;
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(79, 70, 229, 0.05);
  animation: spin 0.8s linear infinite;
}

.message-box,
.error-box {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 180ms ease, transform 180ms ease, padding 180ms ease, border-color 180ms ease, background 180ms ease;
}

.message-box.is-visible,
.error-box.is-visible {
  opacity: 1;
  transform: translateY(0);
  padding: 0.78rem 0.95rem;
  border-width: 1px;
  border-style: solid;
}

.message-box {
  color: #14532d;
  background: linear-gradient(145deg, rgba(237, 252, 245, 0.98), rgba(219, 246, 233, 0.94));
  border-color: rgba(45, 135, 95, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 22px rgba(50, 116, 84, 0.08);
}

.error-box {
  color: #8a1c2f;
  background: linear-gradient(145deg, rgba(255, 245, 247, 0.98), rgba(255, 228, 235, 0.95));
  border-color: rgba(190, 39, 73, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 22px rgba(156, 46, 72, 0.08);
}

.site-footer {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(228, 239, 255, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 16px 30px rgba(63, 77, 113, 0.08);
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero,
  .story-band,
  .page-hero,
  .contact-zone {
    grid-template-columns: 1fr;
  }

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

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

  .contact-brief {
    position: static;
    width: auto;
    margin: 0 0 1rem;
  }

  .contact-shell {
    padding-top: 1.45rem !important;
  }

  h1, h2 {
    max-width: 100% !important;
  }
  .hero__services-box {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 6.9rem;
  }

  .hero__backdrop {
    display: none;
  }

  .page-hero::before {
    display: none;
  }

  .page-hero {
    gap: 1rem;
    padding-top: 7.1rem;
  }

  .slab,
  .flow-ribbon,
  .detail-grid,
  .team-grid,
  .addon-grid,
  .reference-list,
  .stack-products__grid,
  .stack-products__side,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .request-list {
    grid-template-columns: 1fr;
  }

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

  .stack-products {
    grid-template-columns: 1fr;
  }

  .flow-ribbon article {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: none;
    box-shadow: 0 10px 20px rgba(63, 77, 113, 0.08);
  }

  .story-step,
  .tech-stack-card,
  .reference-item {
    box-shadow: 0 10px 20px rgba(63, 77, 113, 0.08);
  }

  .hero__stage {
    min-height: 24rem;
    margin-top: 0;
  }

  .hero__body,
  .hero__cta-box,
  .hero__actions--cards {
    grid-template-columns: 1fr;
  }

  .hero__card {
    width: min(16rem, 64%);
  }

  .hero__image {
    inset: 0 1rem 2rem 0;
  }

  .hero__stamp {
    width: min(20rem, 82%);
  }

  .page-links--primary {
    grid-template-columns: 1fr;
  }

  .tech-stack-slider {
    mask-image: none;
  }

  .tech-stack-track {
    gap: 0.6rem;
  }

  .page-hero__copy,
  .legal-card {
    padding: 1.4rem;
  }

  .page-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 1.45rem + 1.4vw, 2.5rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .reference-item img {
    border-radius: 0px;
    filter: initial;
    transition: initial;
  }

  .page-hero__copy p:last-child {
    overflow-wrap: anywhere;
  }

  .page-hero__meta {
    padding: 1.2rem;
    box-shadow: 0 12px 24px rgba(30, 41, 85, 0.12);
  }

  .page-hero__meta span,
  .service-list article > span {
    min-height: auto;
  }

  .page-hero__meta span {
    padding: 0.62rem 0.78rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    backdrop-filter: none;
  }

  .contact-brief {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 20px rgba(63, 77, 113, 0.08);
  }

  .contact-shell {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(63, 77, 113, 0.1);
  }

  .contact-shell .brutal-button {
    box-shadow: 0 12px 22px rgba(44, 92, 220, 0.18);
    transition: none;
    filter: none;
  }

  .contact-shell input,
  .contact-shell select,
  .contact-shell textarea {
    box-shadow: none;
    transition: border-color 180ms ease, background 180ms ease;
  }

  .spinner {
    box-shadow: none;
  }

  .detail-card,
  .team-card,
  .addon-grid article,
  .legal-card,
  .site-footer > div,
  .page-links a,
  .reference-item {
    box-shadow: 0 10px 20px rgba(63, 77, 113, 0.08);
    transition: none;
  }

  .detail-card,
  .legal-card,
  .site-footer > div {
    background: rgba(255, 255, 255, 0.94);
  }

  .addon-grid article:nth-child(even) {
    box-shadow: 0 10px 20px rgba(63, 77, 113, 0.08);
  }

  .team-card__head img {
    box-shadow: 0 8px 16px rgba(18, 26, 63, 0.14);
  }

  .service-list--editorial article > span,
  .service-list--manifesto article > span {
    box-shadow: none;
  }

  .service-list--editorial article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.05rem 0;
  }

  .service-list--editorial article > span {
    width: auto;
    justify-self: start;
    padding: 0.32rem 0.6rem;
    font-size: 0.8rem;
    line-height: 1;
  }

  .service-list--editorial h2 {
    max-width: 100%;
    font-size: clamp(1.22rem, 1.02rem + 0.72vw, 1.54rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .service-list--manifesto article {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1.05rem 0 1.05rem 0.95rem;
  }

  .service-list--manifesto article > span {
    display: block;
    font-size: 0.82rem;
    line-height: 1;
  }

  .service-list--manifesto h2 {
    max-width: 100%;
    font-size: clamp(1.26rem, 1.04rem + 0.72vw, 1.58rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .service-list--manifesto p {
    max-width: 100%;
  }

  .detail-card strong, h1, h2, h3, p,
  .addon-grid article h2,
  .addon-grid article h3,
  .closing-links h2,
  .section-intro h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .addon-grid article h2,
  .addon-grid article h3 {
    font-size: clamp(1.25rem, 1.08rem + 0.54vw, 1.5rem);
    line-height: 1.1;
  }

  .addon-grid article {
    justify-self: stretch;
    width: 100%;
  }

  .team-card {
    padding: 1.1rem;
  }

  .team-card__head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .team-card__head img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .team-card__head > div {
    min-width: 0;
  }

  .team-card__head strong {
    font-size: 1.4rem;
  }

  .team-card__head span {
    display: block;
    line-height: 1.35;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .reference-item__text {
    flex-direction: column;
    align-items: flex-start;
  }
}
