:root {
  --bg: #f7f7f7;
  --bg-soft: #fcfcfc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #323238;
  --ink-soft: #75757d;
  --line: rgba(50, 50, 56, 0.1);
  --shadow: 0 26px 60px rgba(53, 53, 64, 0.08);
  --pink: #ff00a8;
  --violet: #7454ff;
  --orange: #ff5a1f;
  --gold: #ffd34f;
  --silver: #ececf1;
  --radius: 30px;
  --radius-sm: 20px;
  --max-width: 1180px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 0, 168, 0.11), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 211, 79, 0.16), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f6 100%);
  font-family: "Avenir Next", "Futura", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 40px rgba(63, 64, 72, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
  flex-shrink: 0;
}

.brand__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(226, 227, 232, 0.92), rgba(248, 248, 250, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(95, 95, 108, 0.08);
}

.brand__logo {
  width: 13.2rem;
  height: auto;
  display: block;
}

.brand__text {
  display: grid;
  gap: 0.08rem;
}

.brand__text strong,
.hero h1,
.section-heading h2,
.format-card h3,
.reference-card h3,
.process-card h3,
.contact-panel h2 {
  letter-spacing: -0.03em;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.site-nav {
  flex: 1 1 auto;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  min-width: 0;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: var(--ink);
}

.header-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 10px 22px rgba(63, 64, 72, 0.06);
}

.lang-switch__button {
  min-width: 2.6rem;
  padding: 0.46rem 0.72rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.lang-switch__button:hover,
.lang-switch__button:focus-visible,
.lang-switch__button.is-active {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(255, 0, 168, 0.12), rgba(255, 90, 31, 0.12), rgba(255, 211, 79, 0.22));
}

.lang-switch__button:hover,
.lang-switch__button:focus-visible {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--gold));
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(255, 90, 31, 0.18);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(255, 90, 31, 0.2);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.lang-switch__button:focus-visible {
  outline: 2px solid rgba(255, 90, 31, 0.4);
  outline-offset: 3px;
}

.header-cta {
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2.25rem;
  align-items: center;
  padding-block: 5.5rem 3.8rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  line-height: 0.92;
}

.text-gradient {
  display: block;
  background: linear-gradient(90deg, var(--pink) 0%, var(--orange) 52%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.highlight-card,
.format-card,
.reference-card,
.service-card,
.sector-card,
.process-card,
.contact-panel,
.hero-card,
.hero-note,
.summary-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.highlight-card {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.highlight-card span,
.format-card__tag,
.summary-card span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-card strong,
.summary-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.hero__visual {
  display: grid;
  align-self: stretch;
}

.hero-schematic {
  position: relative;
  min-height: 100%;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 0, 168, 0.22), transparent 18%),
    radial-gradient(circle at 16% 82%, rgba(255, 90, 31, 0.16), transparent 24%),
    linear-gradient(145deg, #07080d 0%, #10131a 48%, #0f1118 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 34px 80px rgba(12, 14, 20, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-schematic::before,
.hero-schematic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-schematic::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.45));
}

.hero-schematic::after {
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.08) 50%, transparent 82%);
  transform: translateX(-48%);
}

.hero-schematic__screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 1.55rem;
}

.hero-schematic__hud {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-schematic__hud span,
.hero-schematic__metric span,
.hero-schematic__measure {
  color: rgba(236, 238, 245, 0.56);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-schematic__hud strong {
  color: #f6f7fb;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-schematic__display {
  position: relative;
  min-height: 29rem;
  padding: 2.7rem 2rem 2rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(8, 11, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 0, 168, 0.03);
  overflow: hidden;
}

.hero-schematic__display::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-schematic__wireframe {
  position: relative;
  min-height: 100%;
}

.hero-schematic__object {
  position: absolute;
  inset: 3rem 4.25rem 4.25rem 4rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(145deg, rgba(255, 0, 168, 0.06), rgba(255, 90, 31, 0.04), rgba(255, 211, 79, 0.02));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-schematic__object::before,
.hero-schematic__object::after,
.hero-schematic__core::before,
.hero-schematic__core::after {
  content: "";
  position: absolute;
}

.hero-schematic__object::before {
  inset: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
}

.hero-schematic__object::after {
  left: 50%;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.hero-schematic__core {
  position: absolute;
  inset: 3.6rem 5.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 0, 168, 0.24), transparent 20%),
    radial-gradient(circle at 44% 54%, rgba(255, 211, 79, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-schematic__core::before {
  inset: 18% 22%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 0, 168, 0.12),
    0 0 30px rgba(255, 90, 31, 0.14);
}

.hero-schematic__core::after {
  inset: 27% 31%;
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(255, 0, 168, 0.22), rgba(255, 90, 31, 0.16), rgba(255, 211, 79, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-schematic__measure {
  position: absolute;
  z-index: 2;
}

.hero-schematic__measure--top {
  left: 6rem;
  top: 1.35rem;
}

.hero-schematic__measure--side {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right top;
}

.hero-schematic__callout {
  position: absolute;
  display: grid;
  gap: 0.3rem;
  max-width: 12rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: rgba(10, 13, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-schematic__callout::before {
  content: "";
  position: absolute;
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 0, 168, 0.7), rgba(255, 211, 79, 0.15));
}

.hero-schematic__callout strong {
  color: #f8f8fb;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero-schematic__callout span {
  color: rgba(236, 238, 245, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-schematic__callout--one {
  top: 1.25rem;
  right: 0;
}

.hero-schematic__callout--one::before {
  right: 100%;
  top: 1.2rem;
}

.hero-schematic__callout--two {
  left: 0;
  bottom: 4.8rem;
}

.hero-schematic__callout--two::before {
  left: 100%;
  top: 1.3rem;
}

.hero-schematic__callout--three {
  right: 1.1rem;
  bottom: 1rem;
}

.hero-schematic__callout--three::before {
  right: 100%;
  top: 1.2rem;
}

.hero-schematic__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-schematic__metric {
  padding: 0.95rem 1rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-schematic__metric strong {
  display: block;
  margin-top: 0.3rem;
  color: #fbfbfd;
  font-size: 1rem;
  line-height: 1.3;
}

.marquee {
  overflow: hidden;
  padding-bottom: 1.6rem;
}

.marquee__track {
  display: flex;
  gap: 2.4rem;
  min-width: max-content;
  color: rgba(50, 50, 56, 0.55);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 18s linear infinite;
}

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

  to {
    transform: translateX(-25%);
  }
}

.section {
  padding-block: 3.7rem;
}

.section-heading {
  max-width: 48rem;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.section-heading p:last-child,
.contact-panel__intro p:last-of-type {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.formats-grid,
.services-grid,
.sector-grid {
  display: grid;
  gap: 1.2rem;
}

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

.format-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 1.8rem;
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
}

.format-card--pink::before {
  background: linear-gradient(90deg, var(--pink), #ff4bb7);
}

.format-card--orange::before {
  background: linear-gradient(90deg, var(--orange), #ff9761);
}

.format-card--gold::before {
  background: linear-gradient(90deg, #ffb300, var(--gold));
}

.format-card--violet::before {
  background: linear-gradient(90deg, var(--violet), #af77ff);
}

.format-card--slate::before {
  background: linear-gradient(90deg, #4a5568, #a0aec0);
}

.format-card--silver::before {
  background: linear-gradient(90deg, #8d91a1, #dbdde5);
}

.format-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
}

.format-card p,
.reference-card p,
.service-card p,
.sector-card p,
.process-card p {
  margin: 0;
  color: var(--ink-soft);
}

.portfolio-heading {
  display: grid;
  gap: 0.5rem;
  max-width: 42rem;
  margin: 2.15rem 0 1rem;
}

.portfolio-heading span,
.portfolio-card figcaption span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-heading p {
  margin: 0;
  color: var(--ink-soft);
}

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

.portfolio-card {
  margin: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ececef;
}

.portfolio-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1.1rem;
}

.portfolio-card figcaption strong {
  font-size: 1rem;
  line-height: 1.35;
}

.references-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1.4rem;
  align-items: start;
}

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

.channel-grid--single {
  grid-template-columns: 1fr;
}

.channel-card {
  display: grid;
  overflow: hidden;
  border-radius: 1.6rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.channel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ececef;
}

.channel-card video {
  display: block;
  width: 100%;
  height: clamp(18rem, 34vw, 28rem);
  object-fit: contain;
  background: #111318;
}

.channel-grid--single .channel-card video {
  height: clamp(20rem, 42vw, 34rem);
}

.channel-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.1rem;
}

.channel-card__body span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.channel-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.channel-card p {
  margin: 0;
  color: var(--ink-soft);
}

.channel-card--video {
  cursor: default;
}

.reference-list {
  display: grid;
  gap: 1rem;
}

.reference-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.5rem;
}

.reference-card span,
.process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 0, 168, 0.12), rgba(255, 211, 79, 0.22));
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.reference-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

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

.service-card,
.sector-card {
  padding: 1.35rem;
  border-radius: 1.6rem;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

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

.sector-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.02rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1.2rem;
  padding: 1.3rem;
  border-radius: 1.6rem;
}

.process-card__number {
  grid-row: span 2;
}

.process-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  padding: 1.9rem;
  border-radius: 2rem;
}

.contact-panel__intro {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-panel__intro .eyebrow {
  margin-bottom: 0;
}

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

.summary-card {
  padding: 1.15rem;
  border-radius: 1.35rem;
}

.summary-card a {
  color: inherit;
}

.assistant-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(8, 11, 17, 0.94), rgba(16, 19, 26, 0.92)),
    linear-gradient(90deg, rgba(255, 0, 168, 0.08), rgba(255, 90, 31, 0.08), rgba(255, 211, 79, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(16, 18, 25, 0.18);
}

.assistant-overview__copy {
  display: grid;
  gap: 0.9rem;
}

.assistant-overview__tag,
.assistant-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assistant-overview h3,
.assistant-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.assistant-overview h3 {
  color: #f8f9fc;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.assistant-overview p {
  margin: 0;
  max-width: 44rem;
  color: rgba(236, 238, 245, 0.72);
}

.assistant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.assistant-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6f7fb;
  font-size: 0.82rem;
}

.assistant-overview__cta {
  align-self: end;
  white-space: nowrap;
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

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

.assistant-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 1.7rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.assistant-card p {
  margin: 0;
  color: var(--ink-soft);
}

.assistant-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.1rem;
  color: var(--ink);
  font-weight: 700;
}

.assistant-card__link::after {
  content: "\2192";
  transition: transform var(--transition);
}

.assistant-card__link:hover::after,
.assistant-card__link:focus-visible::after {
  transform: translateX(2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  color: rgba(50, 50, 56, 0.6);
  font-size: 0.92rem;
  border-top: 1px solid rgba(50, 50, 56, 0.08);
}

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

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1080px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
  }

  .site-nav {
    order: 4;
    flex: initial;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 48px rgba(53, 53, 64, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.9rem;
    border-radius: 0.95rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(50, 50, 56, 0.05);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .references-layout,
  .process-layout,
  .contact-panel,
  .assistant-overview {
    grid-template-columns: 1fr;
  }

  .hero__highlights,
  .formats-grid,
  .services-grid,
  .portfolio-grid,
  .channel-grid,
  .assistant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-schematic__display {
    min-height: 25rem;
  }

  .hero-schematic__object {
    inset: 3rem 3rem 4.4rem 3rem;
  }

  .hero-schematic__core {
    inset: 3.1rem 4rem;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0.85rem 1rem;
  }

  .brand {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .brand__logo {
    width: 10.4rem;
  }

  .header-actions {
    order: 2;
    justify-self: start;
    gap: 0.45rem;
  }

  .lang-switch {
    padding: 0.2rem;
  }

  .lang-switch__button {
    min-width: 2.35rem;
    padding: 0.42rem 0.58rem;
    font-size: 0.74rem;
  }

  .nav-toggle {
    order: 3;
    justify-self: end;
  }

  .hero {
    padding-block: 4rem 2.8rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.6rem);
  }

  .hero-schematic__screen {
    padding: 1rem;
  }

  .hero-schematic__hud {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-schematic__display {
    min-height: 0;
    padding: 2.5rem 1rem 1rem;
  }

  .hero-schematic__wireframe {
    display: grid;
    gap: 0.8rem;
  }

  .hero-schematic__object {
    position: relative;
    inset: auto;
    min-height: 12.5rem;
  }

  .hero-schematic__core {
    inset: 2rem 2.1rem;
  }

  .hero-schematic__measure--top {
    left: 1.2rem;
  }

  .hero-schematic__measure--side {
    display: none;
  }

  .hero-schematic__callout {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
  }

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

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

  .hero__highlights,
  .formats-grid,
  .services-grid,
  .sector-grid,
  .portfolio-grid,
  .channel-grid,
  .assistant-grid,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .contact-panel {
    padding: 1.35rem;
  }
}

@media (max-width: 420px) {
  .brand__logo {
    width: 9.1rem;
  }

  .site-header {
    gap: 0.7rem 0.6rem;
  }

  .hero-schematic__display {
    padding-inline: 0.85rem;
  }

  .hero-schematic__core {
    inset: 1.7rem 1.3rem;
  }
}
