:root {
  --color-primary: #ff2153;
  --color-secondary: #0aa4c7;
  --color-accent: #5a348b;
  --color-highlight: #f7aa14;
  --color-lime: #e4ff1a;
  --color-surface: #f4f0ef;
  --color-dark: #060827;
  --color-white: #ffffff;
  --font-body: "Figtree", sans-serif;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;
  --text-xs: clamp(0.75rem, 0.8vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1vw, 1rem);
  --text-base: clamp(1rem, 1.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.5vw, 1.375rem);
  --text-xl: clamp(1.375rem, 2vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 3vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 4.5vw, 4rem);
  --text-4xl: clamp(3rem, 7vw, 6.5rem);
  --text-nav: clamp(0.8rem, 1vw, 0.95rem);
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --max-width: 1440px;
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  background-color: var(--color-surface);
  color: var(--color-dark);
  overflow-x: hidden;
  cursor: default;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

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

ul {
  list-style: none;
}

.cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
      transform 0.15s var(--ease-smooth),
      width 0.25s,
      height 0.25s,
      background 0.2s;
    will-change: transform;
  }
  .cursor.hover {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    opacity: 0.4;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--space-xl);
  background: var(--color-surface);
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.nav.scrolled {
  border-color: rgba(6, 8, 39, 0.08);
  box-shadow: 0 2px 20px rgba(6, 8, 39, 0.06);
}

.nav__logo {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-right: auto;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 var(--color-dark),
    3px 3px 0 var(--color-dark);
  transition: transform 0.2s var(--ease-bounce);
}

.nav__logo:hover {
  transform: scale(1.06) rotate(-1deg);
}

.nav__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-size: var(--text-nav);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 3px;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--color-primary);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-surface);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__mobile {
    display: flex;
  }
  .nav {
    padding: 0 var(--space-md);
  }
}

.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding-inline: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero__content {
  z-index: 2;
}

.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s 0.1s var(--ease-smooth) forwards;
}

.hero__headline {
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 0.2s var(--ease-smooth) forwards;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-primary);
  display: inline-block;
  position: relative;
}

.hero__body {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  line-height: 1.65;
  color: var(--color-dark);
  max-width: 44ch;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s 0.35s var(--ease-smooth) forwards;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.5s var(--ease-smooth) forwards;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.9s 0.4s var(--ease-smooth) forwards;
}

.hero__illustration {
  width: clamp(260px, 40vw, 520px);
  height: auto;
  filter: drop-shadow(6px 8px 0 rgba(255, 33, 83, 0.18));
  animation: floatY 5s ease-in-out infinite;
}

.hero__blob {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(255, 33, 83, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + var(--space-lg));
    min-height: auto;
    padding-bottom: var(--space-2xl);
    gap: var(--space-lg);
  }
  .hero__body {
    margin-inline: auto;
  }
  .hero__cta-group {
    justify-content: center;
  }
  .hero__visual {
    order: -1;
  }
  .hero__illustration {
    width: clamp(180px, 55vw, 320px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(1.2rem, 2.5vw, 2rem);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition:
    transform 0.2s var(--ease-bounce),
    box-shadow 0.2s,
    background 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 4px 4px 0 var(--color-dark);
}

.btn--primary:hover {
  box-shadow: 6px 6px 0 var(--color-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
  box-shadow: 3px 3px 0 var(--color-dark);
}

.btn--outline:hover {
  background: var(--color-dark);
  color: var(--color-surface);
  box-shadow: 5px 5px 0 var(--color-primary);
}

.btn--lime {
  background: var(--color-lime);
  color: var(--color-dark);
  box-shadow: 4px 4px 0 var(--color-dark);
}

.btn--lime:hover {
  box-shadow: 6px 6px 0 var(--color-dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
  box-shadow: 3px 3px 0 var(--color-dark);
}

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-surface);
}

.ticker {
  background: var(--color-dark);
  overflow: hidden;
  padding: var(--space-sm) 0;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.ticker__track {
  display: flex;
  gap: var(--space-2xl);
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker__item {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-lime);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.ticker__item::after {
  content: "★";
  color: var(--color-primary);
  font-size: 0.7em;
}

.services-teaser {
  padding: var(--space-2xl) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-white);
  border: 2.5px solid var(--color-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--color-dark);
  transition:
    transform 0.25s var(--ease-bounce),
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 9px 9px 0 var(--color-dark);
}

.service-card__number {
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-dark);
}

.service-card__desc {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  line-height: 1.7;
  color: rgba(6, 8, 39, 0.72);
  flex: 1;
}

.service-card__link {
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card__link:hover {
  gap: 12px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--brand::before {
  background: var(--color-accent);
}

.service-card--email::before {
  background: var(--color-secondary);
}

.service-card--print::before {
  background: var(--color-highlight);
}

.service-card--social::before {
  background: var(--color-lime);
}

.service-card--mktg::before {
  background: var(--color-highlight);
}

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

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-teaser {
    padding-inline: var(--space-md);
  }
}

.manifesto {
  background: var(--color-dark);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(90, 52, 139, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(255, 33, 83, 0.2) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.manifesto__quote {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-surface);
  max-width: 18ch;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
}

.manifesto__quote em {
  font-style: normal;
  color: var(--color-primary);
}

.manifesto__sub {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: rgba(244, 240, 239, 0.6);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.4;
}

.orb--1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -150px;
  left: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb--2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  bottom: -100px;
  right: -80px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.why {
  padding: var(--space-2xl) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.why__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-sm);
  align-items: start;
}

.why__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid var(--color-dark);
  box-shadow: 3px 3px 0 var(--color-dark);
  flex-shrink: 0;
}

.why__item-title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 4px;
}

.why__item-body {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(6, 8, 39, 0.65);
  line-height: 1.65;
}

.why__visual {
  position: relative;
}

.why__big-text {
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--color-primary);
  user-select: none;
  opacity: 0.18;
  position: absolute;
  top: -30px;
  right: -20px;
  white-space: nowrap;
}

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--color-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 2.5px solid var(--color-dark);
  position: relative;
  overflow: hidden;
}

.stat-card:nth-child(2) {
  background: var(--color-primary);
}

.stat-card:nth-child(3) {
  background: var(--color-accent);
}

.stat-card:nth-child(4) {
  background: var(--color-highlight);
}

.stat-card__number {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  color: var(--color-surface);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card:nth-child(4) .stat-card__number {
  color: var(--color-dark);
}

.stat-card__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 240, 239, 0.65);
}

.stat-card:nth-child(4) .stat-card__label {
  color: rgba(6, 8, 39, 0.65);
}

@media (max-width: 900px) {
  .why {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .why__visual {
    display: none;
  }
}

.cta-strip {
  background: var(--color-primary);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  border-top: 3px solid var(--color-dark);
  border-bottom: 3px solid var(--color-dark);
}

.cta-strip__text {
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  color: var(--color-white);
  max-width: 22ch;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .cta-strip {
    flex-direction: column;
    text-align: center;
  }
}

.page-hero {
  padding-top: calc(var(--nav-h) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-inline: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s 0.1s var(--ease-smooth) forwards;
}

.page-hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--color-dark);
  max-width: 14ch;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s 0.2s var(--ease-smooth) forwards;
}

.page-hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.services-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--color-lime);
  border-bottom: 2.5px solid var(--color-dark);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.services-subnav::-webkit-scrollbar {
  display: none;
}

.services-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 var(--space-xl);
}

.subnav__btn {
  padding: clamp(0.6rem, 1vw, 0.85rem) clamp(0.8rem, 1.5vw, 1.4rem);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(6, 8, 39, 0.55);
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
  border-bottom: 3px solid transparent;
  position: relative;
}

.subnav__btn:hover {
  color: var(--color-dark);
}

.subnav__btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.services-slider {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.slider__track {
  display: flex;
  transition: transform 0.55s var(--ease-smooth);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
  min-height: calc(100svh - var(--nav-h) - 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.slide__content {
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
  justify-content: center;
  align-items: start;
  text-align: start;
}

.slide__service-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
}

.slide__title {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.slide__subtitle {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  max-width: 38ch;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.slide__body {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  line-height: 1.75;
  max-width: 46ch;
  opacity: 0.75;
}

.slide__visual {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide__image {
  width: clamp(260px, 40vw, 540px);
  height: auto;
  position: relative;
  z-index: 2;
}

.slide--web .slide__content,
.slide--web .slide__visual {
  background: var(--color-surface);
}

.slide--web .slide__title {
  color: var(--color-primary);
}

.slide--brand .slide__content,
.slide--brand .slide__visual {
  background: var(--color-primary);
}

.slide--brand .slide__content {
  color: var(--color-white);
}

.slide--brand .slide__service-label {
  color: rgba(255, 255, 255, 0.6);
}

.slide--brand .slide__title {
  color: var(--color-lime);
}

.slide--brand .slide__subtitle {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.slide--brand .slide__body {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.slide--email .slide__content,
.slide--email .slide__visual {
  background: var(--color-dark);
}

.slide--email .slide__content {
  color: var(--color-surface);
}

.slide--email .slide__service-label {
  color: rgba(244, 240, 239, 0.4);
}

.slide--email .slide__title {
  color: var(--color-lime);
}

.slide--email .slide__subtitle {
  color: var(--color-surface);
  text-decoration-color: rgba(244, 240, 239, 0.3);
}

.slide--email .slide__body {
  color: rgba(244, 240, 239, 0.75);
  opacity: 1;
}

.slide--print .slide__content,
.slide--print .slide__visual {
  background: var(--color-dark);
}

.slide--print .slide__content {
  color: var(--color-surface);
}

.slide--print .slide__service-label {
  color: rgba(244, 240, 239, 0.4);
}

.slide--print .slide__title {
  color: var(--color-highlight);
}

.slide--print .slide__subtitle {
  color: var(--color-surface);
  text-decoration-color: rgba(244, 240, 239, 0.3);
}

.slide--print .slide__body {
  color: rgba(244, 240, 239, 0.75);
  opacity: 1;
}

.slide--social .slide__content,
.slide--social .slide__visual {
  background: var(--color-dark);
}

.slide--social .slide__content {
  color: var(--color-surface);
}

.slide--social .slide__service-label {
  color: rgba(244, 240, 239, 0.4);
}

.slide--social .slide__title {
  color: var(--color-secondary);
}

.slide--social .slide__subtitle {
  color: var(--color-surface);
  text-decoration-color: rgba(244, 240, 239, 0.3);
}

.slide--social .slide__body {
  color: rgba(244, 240, 239, 0.75);
  opacity: 1;
}

.slide--mktg .slide__content,
.slide--mktg .slide__visual {
  background: var(--color-highlight);
}

.slide--mktg .slide__content {
  color: var(--color-dark);
}

.slide--mktg .slide__service-label {
  color: rgba(6, 8, 39, 0.45);
}

.slide--mktg .slide__title {
  color: var(--color-dark);
}

.slide--mktg .slide__subtitle {
  color: var(--color-dark);
  text-decoration-color: rgba(6, 8, 39, 0.3);
}

.slide--mktg .slide__body {
  color: rgba(6, 8, 39, 0.75);
  opacity: 1;
}

.lava-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.lava--brand .blob {
  fill: #5a348b;
  opacity: 0.65;
}

.lava--email .blob {
  fill: #5a348b;
  opacity: 0.55;
}

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-xl);
  background: var(--color-dark);
  border-top: 2.5px solid var(--color-primary);
}

.slider__arrows {
  display: flex;
  gap: var(--space-sm);
}

.arrow-btn {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border: 2.5px solid var(--color-dark);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-white);
  transition:
    transform 0.2s var(--ease-bounce),
    background 0.2s;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.15);
}

.arrow-btn:hover {
  transform: scale(1.1);
  background: var(--color-dark);
  border-color: var(--color-primary);
}

.arrow-btn:active {
  transform: scale(0.95);
}

.arrow-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(244, 240, 239, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s var(--ease-bounce),
    width 0.3s;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--color-primary);
  width: 28px;
  border-radius: var(--radius-pill);
}

.slider__counter {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: rgba(244, 240, 239, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .slider__slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .slide__content {
    padding: var(--space-xl) var(--space-md);
    order: 2;
    align-items: center;
    text-align: center;
  }
  .slide__visual {
    min-height: 280px;
    order: 1;
    margin-top: 100px;
  }
  .slide__image {
    width: clamp(180px, 100vw, 600px);
  }
  .slider__nav {
    padding: var(--space-sm) var(--space-md);
  }
  .slider__hint {
    display: none !important;
  }
}

.footer {
  background: var(--color-dark);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  color: var(--color-surface);
  text-align: center;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(244, 240, 239, 0.12);
  margin-bottom: var(--space-lg);
}

.footer__logo {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  letter-spacing: -0.03em;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(244, 240, 239, 0.55);
  line-height: 1.7;
  max-width: 36ch;
  text-align: left;
}

.footer__heading {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(244, 240, 239, 0.65);
  transition: color 0.2s;
  font-weight: var(--fw-medium);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(244, 240, 239, 0.38);
  font-weight: var(--fw-medium);
}

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

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-inline: var(--space-md);
  }
}

.contact-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md);
  background: var(--color-surface);
}

.contact-card {
  background: var(--color-dark);
  border-radius: 24px;
  padding: var(--space-2xl);
  width: 100%;
  max-width: 600px;
  box-shadow: 12px 12px 0 var(--color-primary);
  text-align: center;
  color: var(--color-surface);
  border: 3px solid var(--color-dark);
  position: relative;
  overflow: hidden;
}

.contact-card__title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--color-lime);
  margin-bottom: var(--space-md);
}

.contact-item {
  display: block;
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-surface);
  margin: var(--space-md) 0;
  transition: color 0.2s;
  pointer-events: auto;
}

.contact-item:hover {
  color: var(--color-primary);
}

.contact-item span {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: rgba(244, 240, 239, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-primary);
  z-index: 200;
  width: 0%;
  transition: width 0.1s;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
}

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

.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal--delay-5 {
  transition-delay: 0.5s;
}

.slider__slide.is-active .slide__content > * {
  animation: slideContentIn 0.6s var(--ease-smooth) both;
}

.slider__slide.is-active .slide__content > *:nth-child(1) {
  animation-delay: 0.05s;
}
.slider__slide.is-active .slide__content > *:nth-child(2) {
  animation-delay: 0.12s;
}
.slider__slide.is-active .slide__content > *:nth-child(3) {
  animation-delay: 0.19s;
}
.slider__slide.is-active .slide__content > *:nth-child(4) {
  animation-delay: 0.26s;
}
.slider__slide.is-active .slide__content > *:nth-child(5) {
  animation-delay: 0.33s;
}

.slider__slide.is-active .slide__image {
  animation: imageSlideIn 0.65s 0.2s var(--ease-bounce) both;
}

.slider__hint {
  font-size: var(--text-xs);
  color: rgba(244, 240, 239, 0.35);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -20px);
  }
  66% {
    transform: translate(-20px, 15px);
  }
}

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

@keyframes blobFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -60px) scale(1.1);
  }
  50% {
    transform: translate(-20px, -120px) scale(0.95);
  }
  75% {
    transform: translate(40px, -80px) scale(1.05);
  }
}

@keyframes blobFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-50px, -100px) scale(1.15);
  }
  66% {
    transform: translate(30px, -170px) scale(0.9);
  }
}

@keyframes blobFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(60px, -80px) scale(1.08);
  }
  70% {
    transform: translate(-30px, -50px) scale(0.92);
  }
}

@keyframes blobMerge {
  0%,
  100% {
    d: path(
      "M 100 300 C 60 280 30 250 40 200 C 50 150 90 130 120 120 C 150 110 180 120 200 150 C 220 180 210 220 190 260 C 170 300 140 320 100 300 Z"
    );
  }
  33% {
    d: path(
      "M 120 310 C 70 290 25 255 35 195 C 45 135 100 115 135 110 C 170 105 200 120 215 155 C 230 190 215 240 185 275 C 155 310 160 328 120 310 Z"
    );
  }
  66% {
    d: path(
      "M 90 295 C 55 275 20 240 38 190 C 56 140 95 125 125 118 C 155 111 183 124 198 156 C 213 188 205 225 188 262 C 171 299 128 314 90 295 Z"
    );
  }
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px) rotate(3deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}
