:root {
  --bg: #030303;
  --panel: #080808;
  --panel-2: #0b0b0b;
  --text: #ffffff;
  --muted: #b8b8b8;
  --faint: rgba(255, 255, 255, 0.18);
  --line: rgba(255, 255, 255, 0.26);
  --glow: rgba(160, 200, 255, 0.18);
  --strong-glow: rgba(255, 255, 255, 0.35);
  --radius: 8px;
  --header-height: 76px;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% -5%, rgba(160, 200, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #020202 0%, #070707 42%, #020202 100%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.brand-icon-solid,
.brand-icon-solid * {
  fill: currentColor !important;
  stroke: none !important;
}

.brand-icon-color,
.brand-icon-color * {
  stroke: none !important;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  height: var(--header-height);
  padding: 10px clamp(14px, 2.2vw, 30px);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(3, 3, 3, 0.76)),
    rgba(3, 3, 3, 0.78);
  border-bottom: 1px solid var(--faint);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: max-content;
}

.brand-logo-mini {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 24px var(--glow);
}

.brand-name {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.desktop-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.desktop-nav {
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 clamp(7px, 0.72vw, 12px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 18px;
  background: var(--faint);
}

.nav-link:hover,
.nav-highlight {
  color: #fff;
}

.nav-highlight {
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 18px var(--glow) inset, 0 0 18px rgba(255, 255, 255, 0.05);
}

.nav-highlight::before {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}

.mobile-panel {
  position: fixed;
  z-index: 45;
  inset: var(--header-height) 0 0;
  display: none;
  padding: 18px;
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav .nav-link {
  justify-content: space-between;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.mobile-nav .nav-link::before {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: 128px 0 62px;
  overflow: hidden;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 42px);
}

.brand-mark {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  background:
    linear-gradient(135deg, transparent 15%, rgba(255, 255, 255, 0.16) 16%, transparent 17%),
    #050505;
  box-shadow: 0 0 34px var(--glow);
}

.hero-logo {
  width: clamp(126px, 16vw, 212px);
  height: clamp(126px, 16vw, 212px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 42px rgba(160, 200, 255, 0.16), 0 0 0 10px rgba(255, 255, 255, 0.02);
  animation: logo-pulse 5.4s ease-in-out infinite;
}

.brand-mark.mini {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 12px;
}

.hero-mark {
  width: clamp(112px, 14vw, 180px);
  aspect-ratio: 1;
  border-radius: 10px;
  font-size: clamp(26px, 4vw, 48px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  max-width: 100%;
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h1 span {
  display: inline-block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 100%;
  margin-bottom: 0;
  color: #f5f5f5;
  font-size: clamp(20px, 1.7vw, 29px);
  text-transform: uppercase;
}

.hero-text {
  max-width: 760px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-copy {
  min-width: 0;
}

.hero-brand > div {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.service-card:hover,
.mini-card:hover {
  transform: translateY(-3px);
  border-color: var(--strong-glow);
  box-shadow: 0 0 26px var(--glow);
}

.button.primary {
  background: #fff;
  color: #050505;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.button.subtle {
  color: var(--muted);
  background: transparent;
}

.hero-social {
  min-width: 0;
  justify-self: end;
  width: min(100%, 690px);
}

.phone-stack {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 660px;
  gap: 0;
  perspective: 1300px;
  width: 100%;
}

.device-card {
  display: grid;
  gap: 14px;
  width: min(44vw, 330px);
  animation: device-float 7s ease-in-out infinite;
}

.instagram-device {
  z-index: 2;
  transform: rotate(-4deg) translateX(58px);
}

.telegram-device {
  z-index: 1;
  transform: rotate(4deg) translateY(34px);
  animation-delay: -2.4s;
}

.device-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 18.9;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(180deg, #161616, #020202);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.82),
    0 0 52px rgba(160, 200, 255, 0.16),
    inset 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.device-frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06));
  mix-blend-mode: screen;
}

.device-frame img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: top center;
}

.telegram-frame {
  aspect-ratio: 9 / 19.08;
}

.smb-card small,
.about-text,
.split-cta p,
.contact-panel p,
.service-card p,
.smb-intro p {
  color: var(--muted);
  line-height: 1.65;
}

.social-button {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.social-button {
  display: flex;
  justify-content: center;
  padding: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 22px rgba(160, 200, 255, 0.14);
}

.social-button.telegram {
  border-color: rgba(160, 200, 255, 0.34);
}

.about,
.services,
.video-cases,
.clients,
.partners,
.entrepreneurs,
.contacts {
  padding: 66px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
}

.line {
  height: 1px;
  flex: 1;
  max-width: 520px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.about-text {
  padding: 30px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.stat-grid {
  display: grid;
  gap: 14px;
}

.stat-grid article,
.service-card,
.client-card,
.smb-card,
.mini-card,
.contact-panel,
.video-frame {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.stat-grid article {
  padding: 24px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(26px, 3vw, 42px);
}

.stat-grid span {
  color: var(--muted);
}

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

.service-card {
  display: grid;
  grid-template-columns: 44px 96px minmax(0, 1fr);
  gap: 20px;
  min-height: 154px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-number {
  color: var(--muted);
  font-weight: 800;
}

.service-icon {
  width: 88px;
  height: 88px;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(160, 200, 255, 0.42));
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon text {
  fill: currentColor;
  stroke: none;
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.service-card p {
  margin-bottom: 8px;
}

.service-card > div {
  min-width: 0;
}

.service-card h3,
.split-cta h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

#entrepreneurs-card h3 {
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.15;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #030303;
}

.video-visual {
  position: relative;
  width: 100%;
  height: 100%;
  background: #030303;
}

.case-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030303;
}

.client-grid {
  display: flex;
  width: max-content;
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
  animation: marquee-left 44s linear infinite;
  will-change: transform;
}

.logo-marquee,
.smb-marquee {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-marquee {
  margin-top: 8px;
  margin-bottom: 58px;
  padding-block: 34px;
  background:
    radial-gradient(circle at 30% 50%, rgba(110, 170, 255, 0.08), transparent 36%),
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.032), transparent);
}

.client-card {
  --brand-glow: rgba(255, 255, 255, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(150px, 13.5vw, 230px);
  height: 92px;
  border: 0;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
}

.client-card::before {
  position: absolute;
  inset: 24% 18%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow), transparent 68%);
  filter: blur(28px);
  opacity: 0.28;
  transform: scale(0.88);
  transition: opacity 180ms ease, transform 180ms ease;
}

.client-card.wide-logo {
  width: clamp(180px, 17vw, 280px);
}

.client-card img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 11px var(--brand-glow))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  opacity: 0.98;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-card.wide-logo img {
  max-height: 62px;
}

.client-card:hover::before {
  opacity: 0.48;
  transform: scale(1.08);
}

.client-card:hover img {
  filter:
    drop-shadow(0 0 20px var(--brand-glow))
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42));
  opacity: 1;
  transform: scale(1.04);
}

.smb-intro {
  max-width: 860px;
  margin: 54px 0 24px;
}

.smb-intro h3 {
  margin-bottom: 10px;
}

.smb-grid {
  display: flex;
  width: max-content;
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
  animation: marquee-right 72s linear infinite;
  will-change: transform;
}

.smb-card {
  flex: 0 0 clamp(164px, 15.5vw, 236px);
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  transition: transform 180ms ease, filter 180ms ease;
}

.smb-card:nth-child(3n + 2) {
  margin-top: 18px;
}

.smb-card:nth-child(3n) {
  margin-top: 8px;
}

.smb-card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 20px 34px rgba(120, 185, 255, 0.22));
}

.smb-shot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.035) 28%, rgba(255, 255, 255, 0.12) 78%, rgba(255, 255, 255, 0.04)),
    #040507;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 20px 44px rgba(0, 0, 0, 0.42);
}

.smb-shot::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  transform: translateX(-50%);
}

.smb-shot::after {
  position: absolute;
  inset: 1px;
  z-index: 3;
  pointer-events: none;
  content: "";
  border-radius: 27px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 18%, transparent 76%, rgba(255, 255, 255, 0.08));
  opacity: 0.62;
}

.smb-shot span {
  width: 44px;
  color: rgba(255, 255, 255, 0.68);
}

.smb-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 21px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.smb-shot svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

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

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

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.logo-marquee:hover .client-grid,
.smb-marquee:hover .smb-grid {
  animation-play-state: paused;
}

@keyframes device-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    box-shadow: 0 0 34px rgba(160, 200, 255, 0.14), 0 0 0 10px rgba(255, 255, 255, 0.02);
  }

  50% {
    box-shadow: 0 0 54px rgba(160, 200, 255, 0.24), 0 0 0 12px rgba(255, 255, 255, 0.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.split-cta.reverse {
  direction: rtl;
}

.split-cta.reverse > * {
  direction: ltr;
}

.split-cta > div:first-child,
.contact-panel {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.split-cta p {
  max-width: 760px;
  font-size: 18px;
}

.entrepreneurs .split-cta h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.mini-card {
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-card span {
  width: 10px;
  height: 10px;
  margin-right: 14px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px var(--strong-glow);
}

.contact-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.contact-mark {
  width: 120px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px var(--glow);
}

.contact-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 22px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 28px;
  padding: 24px;
  border: 1px solid var(--faint);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(160, 200, 255, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-logo {
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 28px var(--glow);
}

.footer strong {
  color: #fff;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer-brand p {
  font-size: 13px;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav .nav-link {
  font-size: 11px;
}

.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.footer-meta a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-contact-links a {
  min-height: 34px;
  padding: 0 12px;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.nav-active {
  color: #fff;
}

.nav-active::after {
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #fff, transparent);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.38);
}

.page-main {
  padding: calc(var(--header-height) + 54px) 0 42px;
}

.about-page {
  padding-bottom: 70px;
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 54px);
  padding-bottom: 54px;
}

.about-stage-copy {
  min-width: 0;
}

.about-stage-copy h1 {
  max-width: 940px;
  font-size: clamp(52px, 7vw, 116px);
}

.about-stage-lead {
  max-width: 860px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.55;
}

.about-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.about-founder-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: end;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 40% 12%, rgba(160, 200, 255, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.42);
}

.about-founder-panel::before {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
}

.founder-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 9 / 15.3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: #050505;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(14px);
}

.founder-note p,
.founder-note span {
  margin: 0;
  color: var(--muted);
}

.founder-note p {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.founder-note strong {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
}

.founder-note span {
  line-height: 1.55;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 74px;
}

.about-proof article,
.manifest-grid article,
.system-flow article {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.about-proof article {
  display: grid;
  gap: 10px;
  min-height: 174px;
  align-content: end;
  padding: 22px;
}

.about-proof strong {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.9;
}

.about-proof span {
  color: var(--muted);
  line-height: 1.45;
}

.about-manifest,
.about-partnership {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: 70px 0;
  border-top: 1px solid var(--faint);
}

.manifest-copy {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.manifest-copy h2,
.about-partnership h2,
.about-close h2 {
  max-width: 840px;
}

.manifest-copy p:not(.eyebrow),
.about-partnership p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.manifest-grid article {
  display: grid;
  gap: 14px;
  min-height: 250px;
  align-content: end;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.manifest-grid article:hover,
.system-flow article:hover {
  transform: translateY(-3px);
  border-color: var(--strong-glow);
  box-shadow: 0 0 26px rgba(160, 200, 255, 0.13);
}

.manifest-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.manifest-grid strong {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.manifest-grid p,
.system-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-system {
  padding: 72px 0;
  border-top: 1px solid var(--faint);
}

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

.system-flow article {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 220px;
  align-content: end;
  padding: 22px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.system-flow article::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75));
}

.system-flow span {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-partnership {
  align-items: center;
}

.partnership-models {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partnership-models span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
}

.about-close {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 8% 18%, rgba(160, 200, 255, 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
}

.about-close img {
  width: 110px;
  height: 110px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 34px var(--glow);
}

.about-close h2 {
  margin-bottom: 0;
}

.service-page {
  padding-bottom: 70px;
}

.service-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 54px);
  padding-bottom: 54px;
}

.service-stage-copy {
  min-width: 0;
}

.service-stage-copy h1 {
  max-width: 980px;
  font-size: clamp(48px, 6.6vw, 108px);
}

.service-stage-lead {
  max-width: 800px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.55;
}

.service-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.smm-showcase {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 32% 12%, rgba(160, 200, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.42);
}

.smm-showcase::before {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
}

.smm-device {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;
  padding: 9px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 22%),
    #050505;
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.72),
    0 0 44px rgba(160, 200, 255, 0.14);
}

.smm-device img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
}

.smm-device-main {
  z-index: 2;
  left: 8%;
  bottom: 8%;
  width: min(48%, 300px);
  aspect-ratio: 9 / 18.9;
  transform: rotate(-4deg);
}

.smm-device-side {
  z-index: 1;
  right: 7%;
  top: 8%;
  width: min(42%, 250px);
  aspect-ratio: 9 / 19.08;
  transform: rotate(5deg);
  opacity: 0.86;
}

.smm-badge {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 9%;
  display: grid;
  gap: 8px;
  width: min(48%, 250px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(3, 3, 3, 0.84);
  backdrop-filter: blur(14px);
}

.smm-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.smm-badge strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
}

.smm-badge p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 74px;
}

.service-proof article,
.service-card-grid article,
.process-grid article,
.service-cta {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.service-proof article {
  display: grid;
  gap: 10px;
  min-height: 176px;
  align-content: end;
  padding: 22px;
}

.service-proof strong {
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.service-proof span {
  color: var(--muted);
  line-height: 1.45;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: 70px 0;
  border-top: 1px solid var(--faint);
}

.service-copy-block {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.service-copy-block h2,
.service-cta h2 {
  max-width: 850px;
}

.service-copy-block p:not(.eyebrow),
.service-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.service-card-grid article,
.process-grid article {
  display: grid;
  gap: 14px;
  align-content: end;
  min-height: 238px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card-grid article:hover,
.process-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--strong-glow);
  box-shadow: 0 0 26px rgba(160, 200, 255, 0.13);
}

.service-card-grid span,
.process-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-grid strong,
.process-grid strong {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.service-card-grid p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-process {
  padding: 72px 0;
  border-top: 1px solid var(--faint);
}

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

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 8% 18%, rgba(160, 200, 255, 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
}

.service-cta .contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.smm-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.smm-reference-page {
  padding-bottom: 70px;
}

.smm-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.smm-cover {
  position: relative;
  padding-top: clamp(28px, 4.6vw, 76px);
  padding-bottom: 56px;
}

.smm-presentation-link {
  position: absolute;
  top: 22px;
  right: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.smm-cover h1 {
  max-width: 1100px;
  margin: 0 0 22px;
  font-size: clamp(58px, 8.6vw, 138px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.smm-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 2.3vw, 36px);
  line-height: 1.18;
  text-transform: uppercase;
}

.smm-lead {
  max-width: 760px;
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.65;
}

.smm-lead span {
  display: block;
}

.smm-social-grid {
  display: grid;
  grid-template-columns: repeat(7, 56px);
  gap: 28px clamp(36px, 5vw, 68px);
  width: max-content;
  max-width: 100%;
  margin-top: 58px;
}

.smm-social-grid span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015) 42%, rgba(255, 255, 255, 0.055)),
    #030303;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 16px rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.smm-social-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.018) 42%, rgba(255, 255, 255, 0.07)),
    #050505;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(255, 255, 255, 0.1);
}

.smm-social-grid svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smm-includes {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 46px;
}

.smm-includes h2 {
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.smm-include-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.smm-include-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 248px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  padding: 34px 16px 24px;
  text-align: center;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.smm-include-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.08);
}

.smm-include-grid svg {
  width: 74px;
  height: 74px;
  margin-bottom: 8px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smm-include-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.smm-include-grid p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.target-reference-page {
  padding-bottom: 42px;
}

.target-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.target-cover {
  position: relative;
  padding-top: clamp(74px, 9vw, 156px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.target-presentation-link {
  position: absolute;
  top: 22px;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.target-cover h1 {
  max-width: 1260px;
  margin: 0;
  font-size: clamp(62px, 9.5vw, 150px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.target-platforms,
.target-work {
  margin-bottom: 74px;
}

.target-platforms h2,
.target-work h2 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.target-platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.target-platform-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 26px;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.target-platform-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}

.platform-logo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 24px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.018) 45%, rgba(255, 255, 255, 0.07)),
    #030303;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 24px rgba(255, 255, 255, 0.055);
}

.platform-logo svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.target-platform-grid strong {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.target-work-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  background: #030303;
}

.target-work-panel article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  min-height: 238px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 48px 18px 26px;
  text-align: center;
}

.target-work-panel article:nth-child(5n) {
  border-right: 0;
}

.target-work-panel article:nth-child(n + 6) {
  border-top: 0;
}

.target-work-panel svg,
.target-blogger-visual svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.target-work-panel svg {
  width: 74px;
  height: 74px;
}

.target-work-panel p {
  max-width: 180px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

.target-blogger {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  background: #030303;
}

.target-blogger-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 304px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.target-blogger-person {
  width: 230px;
  height: 230px;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.target-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.32);
}

.target-float svg {
  width: 28px;
  height: 28px;
}

.target-heart {
  left: 42px;
  bottom: 92px;
}

.target-heart svg {
  stroke: #ff2f67;
}

.target-like {
  right: 56px;
  bottom: 120px;
}

.target-like svg {
  stroke: #7db6ff;
}

.target-play {
  right: 98px;
  bottom: 42px;
}

.target-play svg {
  stroke: #7db6ff;
}

.target-blogger-copy {
  display: grid;
  align-content: center;
  padding: 30px clamp(28px, 4vw, 62px);
}

.target-blogger-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.target-blogger-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(19px, 1.6vw, 25px);
  letter-spacing: 0.2px;
}

.target-blogger-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.45;
}

.target-blogger-copy hr {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
}

.target-brand-line {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 39px);
  font-weight: 900;
  letter-spacing: 18px;
  text-align: center;
}

.target-brand-line span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.marketing-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
}

.marketing-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.marketing-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(32px, 5rem, 82px);
  align-items: center;
  min-height: 740px;
  padding-top: clamp(70px, 7rem, 118px);
  padding-bottom: clamp(46px, 5rem, 82px);
}

.marketing-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.marketing-cover-copy {
  min-width: 0;
}

.marketing-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.marketing-cover h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(68px, 7.8rem, 126px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marketing-cover h1 span {
  display: block;
  overflow-wrap: anywhere;
}

.marketing-lead {
  max-width: 860px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.48;
}

.marketing-orbit {
  position: relative;
  place-self: end;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.13) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.13) 50%, transparent calc(50% + 0.5px)),
    #030303;
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.055);
}

.marketing-orbit::before,
.marketing-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.marketing-orbit::before {
  inset: 13%;
}

.marketing-orbit::after {
  inset: 29%;
}

.marketing-orbit-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: #030303;
}

.marketing-orbit-core strong {
  color: #fff;
  font-size: 54px;
  line-height: 0.9;
}

.marketing-orbit-core span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #030303;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.52);
}

.orbit-node-strategy {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-brand {
  top: 29%;
  right: -10px;
}

.orbit-node-content {
  right: 10%;
  bottom: 14%;
}

.orbit-node-traffic {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-sales {
  bottom: 25%;
  left: -14px;
}

.orbit-node-data {
  top: 29%;
  left: 6%;
}

.marketing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: #030303;
}

.marketing-stats article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 122px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
}

.marketing-stats article:last-child {
  border-right: 0;
}

.marketing-stats strong {
  color: rgba(255, 255, 255, 0.42);
  font-size: 32px;
  line-height: 1;
}

.marketing-stats span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.marketing-system,
.marketing-flow-section,
.marketing-modes,
.marketing-result {
  margin-top: 82px;
}

.marketing-section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.marketing-section-heading h2,
.marketing-result h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 4rem, 64px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.marketing-pillar-grid article,
.marketing-mode-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 316px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 28px;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.marketing-pillar-grid article:hover,
.marketing-mode-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.marketing-pillar-grid svg,
.marketing-mode-grid svg {
  width: 74px;
  height: 74px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marketing-pillar-grid h3,
.marketing-mode-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.marketing-pillar-grid p,
.marketing-mode-grid p,
.marketing-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.58;
}

.marketing-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  background: #030303;
}

.marketing-flow li {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 262px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 22px;
}

.marketing-flow li:last-child {
  border-right: 0;
}

.marketing-flow span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.marketing-flow strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
}

.marketing-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

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

.marketing-mode-grid article {
  min-height: 380px;
}

.marketing-mode-grid span {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.marketing-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: clamp(28px, 4rem, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    #030303;
}

.marketing-result p:not(.marketing-kicker) {
  max-width: 860px;
  margin-top: 20px;
  font-size: 18px;
}

.marketing-result-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.design-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
}

.design-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.design-cover {
  position: relative;
  padding-top: 0;
  padding-bottom: 28px;
}

.design-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.design-cover h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(70px, 8.1vw, 134px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.design-cover h1 span {
  display: block;
}

.design-directions {
  margin-bottom: 28px;
}

.design-directions h2,
.design-catalog h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

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

.design-direction-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 28px 18px 24px;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.design-direction-grid article:hover,
.design-catalog-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.design-card-icon {
  display: grid;
  place-items: center;
  min-height: 78px;
}

.design-card-icon svg {
  width: 78px;
  height: 78px;
}

.design-direction-grid svg,
.design-catalog-grid svg,
.design-signature svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.design-direction-grid h3 {
  min-height: 44px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.design-direction-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.design-catalog-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 0;
  border-bottom: 0;
  background: #030303;
}

.design-catalog-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  min-height: 86px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 13px 6px 8px;
  text-align: center;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.design-item-number {
  position: absolute;
  top: 6px;
  left: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.design-catalog-grid svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.45;
}

.design-catalog-grid strong {
  width: 100%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.22;
}

.design-signature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 38px;
}

.design-signature > span {
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.design-signature svg {
  width: 86px;
  height: 86px;
  stroke-width: 1.8;
}

.design-signature p {
  grid-column: 1 / -1;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 900;
  letter-spacing: 18px;
  text-align: center;
}

.design-signature em {
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
  font-weight: 300;
}

.giveaway-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
}

.giveaway-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.giveaway-cover {
  position: relative;
  padding-top: clamp(54px, 6vw, 96px);
  padding-bottom: 66px;
}

.giveaway-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.giveaway-cover h1 {
  max-width: 980px;
  margin: 0 0 54px;
  font-size: clamp(74px, 8.2vw, 136px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.giveaway-cover h1 span {
  display: block;
}

.giveaway-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.giveaway-proof-row article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.giveaway-proof-row svg,
.giveaway-format-grid svg,
.giveaway-balance svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.giveaway-proof-row svg {
  width: 66px;
  height: 66px;
}

.giveaway-proof-row p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.giveaway-proof-row strong {
  display: block;
  color: #fff;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 0.9;
}

.giveaway-proof-row span {
  display: block;
  margin-top: 4px;
}

.giveaway-formats,
.giveaway-balance,
.giveaway-cases {
  margin-bottom: 70px;
}

.giveaway-formats h2,
.giveaway-balance h2,
.giveaway-cases h2 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.giveaway-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.giveaway-format-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 28px;
  text-align: center;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.giveaway-format-grid article:hover,
.giveaway-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.giveaway-format-grid svg {
  width: 112px;
  height: 112px;
}

.giveaway-format-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  text-transform: uppercase;
}

.giveaway-balance-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  background: #030303;
}

.giveaway-balance-panel article {
  min-height: 314px;
  padding: clamp(26px, 4vw, 54px);
}

.giveaway-balance-panel article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.giveaway-balance-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.giveaway-balance-title svg {
  width: 58px;
  height: 58px;
}

.giveaway-balance-title h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.giveaway-balance ol {
  display: grid;
  gap: 22px;
  margin: 0;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.35;
  text-transform: uppercase;
}

.giveaway-balance p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.giveaway-case-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.giveaway-case-video {
  aspect-ratio: 9 / 12;
  overflow: hidden;
  background: #000;
}

.giveaway-case-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.giveaway-case-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.giveaway-case-body h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.giveaway-case-body p,
.giveaway-case-body span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.giveaway-case-body span {
  color: #fff;
  font-weight: 900;
}

.giveaway-cases-empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 5px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.025);
}

.giveaway-cases-empty strong {
  display: block;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

.giveaway-cases-empty p {
  max-width: 620px;
  margin: 10px 0 0;
  line-height: 1.55;
}

.digital-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
}

.digital-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.digital-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  min-height: 560px;
  padding-top: clamp(50px, 6vw, 88px);
  padding-bottom: 64px;
}

.digital-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.digital-cover-copy {
  min-width: 0;
}

.digital-cover h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(78px, 8.4vw, 138px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.digital-cover h1 span {
  display: block;
}

.digital-cover-copy p {
  max-width: 730px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.digital-search-logos {
  display: grid;
  grid-template-columns: minmax(112px, 152px) auto minmax(112px, 152px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  justify-content: center;
  padding-top: 18px;
}

.digital-search-logos span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: #030303;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.06);
}

.digital-search-logos svg {
  width: 66%;
  height: 66%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.digital-search-logos i {
  width: 1px;
  height: 124px;
  background: rgba(255, 255, 255, 0.42);
}

.digital-directions,
.digital-work,
.digital-traffic {
  margin-bottom: 70px;
}

.digital-directions h2,
.digital-work h2,
.digital-traffic h2 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

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

.digital-direction-grid article {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 112px;
  gap: 28px;
  align-items: center;
  min-height: 228px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 30px;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.digital-direction-grid article:hover,
.digital-work-grid article:hover,
.digital-traffic-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.digital-direction-grid svg,
.digital-work-grid svg,
.digital-traffic-grid svg {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.digital-direction-brand {
  width: 112px;
  height: 112px;
  stroke-width: 1.7;
}

.digital-direction-accent {
  width: 100px;
  height: 100px;
  stroke-width: 1.45;
}

.digital-direction-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.digital-direction-grid ul,
.digital-traffic-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.35;
}

.digital-work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 0;
  border-bottom: 0;
  background: #030303;
}

.digital-work-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  min-height: 166px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 20px 8px 14px;
  text-align: center;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.digital-work-grid svg {
  width: 50px;
  height: 50px;
  stroke-width: 1.55;
}

.digital-work-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.digital-work-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.25;
}

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

.digital-traffic-grid article {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 206px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 30px;
  background: #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.digital-traffic-grid article > svg {
  width: 108px;
  height: 108px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  padding-right: 28px;
  stroke-width: 1.6;
}

.digital-traffic-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.it-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 46%, transparent);
}

.it-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.it-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 5.4vw, 92px);
  align-items: center;
  min-height: 548px;
  padding-top: clamp(54px, 6vw, 94px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.it-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.it-cover-copy {
  min-width: 0;
}

.it-cover h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(86px, 10.4vw, 158px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.it-cover h1 span {
  display: block;
}

.it-cover-copy p {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.62;
}

.it-chip-visual {
  justify-self: end;
  width: min(100%, 500px);
  color: #fff;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.1))
    drop-shadow(0 26px 50px rgba(0, 0, 0, 0.7));
}

.it-chip-visual svg {
  width: 100%;
  height: auto;
}

.it-chip-lines,
.it-chip-pins,
.it-chip-shell,
.it-chip-core {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.it-chip-lines {
  stroke-width: 2;
  opacity: 0.78;
}

.it-chip-lines circle {
  fill: #030303;
  stroke-width: 2;
}

.it-chip-pins {
  stroke-width: 2.1;
  opacity: 0.9;
}

.it-chip-shell {
  stroke-width: 3.2;
}

.it-chip-core {
  stroke-width: 2.2;
}

.it-chip-label {
  fill: #fff;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
}

.it-services {
  margin-bottom: 56px;
}

.it-services h2 {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

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

.it-service-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 342px;
  border: 0;
  border-radius: 5px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: center;
  background: transparent;
  cursor: pointer;
  perspective: 1200px;
  transition: transform 180ms ease;
}

.it-service-card:hover {
  transform: translateY(-4px);
}

.it-card-inner {
  position: relative;
  display: block;
  min-height: 342px;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.it-service-card.is-flipped .it-card-inner {
  transform: rotateY(180deg);
}

.it-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 342px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.006) 42%),
    #030303;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.it-card-face::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.035));
  opacity: 0;
  transition: opacity 180ms ease;
}

.it-card-front {
  justify-items: center;
  align-content: center;
  gap: 22px;
  padding: 48px 24px 32px;
}

.it-card-back {
  align-content: center;
  gap: 18px;
  padding: 34px;
  text-align: left;
  transform: rotateY(180deg);
}

.it-service-card:hover .it-card-face,
.it-service-card:focus-visible .it-card-face {
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}

.it-service-card:hover .it-card-face::after,
.it-service-card:focus-visible .it-card-face::after {
  opacity: 1;
}

.it-service-card:focus-visible {
  outline: 0;
}

.it-card-number {
  position: absolute;
  top: 24px;
  left: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.it-service-grid svg {
  width: clamp(94px, 9vw, 134px);
  height: clamp(94px, 9vw, 134px);
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.it-service-grid svg * {
  vector-effect: non-scaling-stroke;
}

.it-service-grid text {
  fill: currentColor;
  stroke: none;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
}

.it-card-title {
  width: min(100%, 300px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.it-card-hint {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.it-card-back-title {
  color: #fff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.it-card-back-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
}

.partners-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.07), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 42%),
    #030303;
}

.partners-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.partners-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: 650px;
  padding-top: clamp(62px, 7vw, 104px);
  padding-bottom: clamp(48px, 5vw, 78px);
}

.partners-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.partners-cover-copy {
  min-width: 0;
}

.partners-cover h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(74px, 8vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.1);
}

.partners-cover h1 span {
  display: block;
  overflow-wrap: anywhere;
}

.partners-intro {
  max-width: 780px;
  margin-top: clamp(52px, 6vw, 86px);
}

.partners-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(24px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.partners-intro p:not(.partners-kicker),
.partners-collab-copy p,
.partners-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.54;
}

.partners-hero-visual {
  justify-self: end;
  width: min(100%, 470px);
  color: #fff;
}

.partners-hero-visual svg {
  width: 100%;
  height: auto;
}

.partners-handshake-reference {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.1));
}

.partners-hero-visual svg * {
  vector-effect: non-scaling-stroke;
}

.partners-orbit-dash,
.partners-orbit-line,
.partners-orbit-arc,
.partners-handshake path,
.partners-opportunity-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partners-orbit-dash {
  stroke-width: 1.6;
  stroke-dasharray: 9 9;
  opacity: 0.42;
}

.partners-orbit-line,
.partners-orbit-arc {
  stroke-width: 2.1;
  opacity: 0.72;
}

.partners-orbit-node {
  fill: #030303;
  stroke: currentColor;
  stroke-width: 2.1;
}

.partners-handshake path {
  stroke-width: 5.1;
}

.partners-opportunities {
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.partners-opportunity {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  min-height: 244px;
  padding: clamp(28px, 4vw, 44px) clamp(0px, 2vw, 28px);
}

.partners-opportunity + .partners-opportunity {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-opportunity-icon {
  display: grid;
  place-items: center;
  width: clamp(112px, 10vw, 148px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 62%),
    #030303;
}

.partners-opportunity-icon svg {
  width: 74%;
  height: 74%;
  color: #fff;
}

.partners-opportunity-icon svg * {
  stroke-width: 2.4;
}

.partners-opportunity-copy {
  min-width: 0;
}

.partners-opportunity h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.partners-opportunity p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.48;
}

.partners-opportunity strong {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.partners-collab {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  margin-top: 62px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    #030303;
}

.partners-collab h2,
.partners-cta h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.partners-collab .partners-kicker,
.partners-cta .partners-kicker {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.partners-collab-copy p {
  max-width: 780px;
  font-size: clamp(16px, 1.28vw, 19px);
}

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

.partners-collab-grid span {
  display: grid;
  min-height: 96px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.025);
}

.partners-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 42px 0 52px;
}

.partners-cta p {
  max-width: 720px;
  font-size: clamp(16px, 1.35vw, 20px);
}

.partners-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 280px;
}

@media (max-width: 1080px) {
  .partners-cover {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .partners-hero-visual {
    justify-self: start;
    width: min(100%, 380px);
  }

  .partners-collab,
  .partners-cta {
    grid-template-columns: 1fr;
  }

  .partners-cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .partners-reference-page {
    padding-top: calc(var(--header-height) + 26px);
  }

  .partners-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .partners-cover {
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .partners-presentation-link {
    position: static;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    min-height: 50px;
    margin-bottom: 18px;
    padding-inline: 16px;
  }

  body[data-page="partners"] .menu-toggle {
    position: absolute;
    z-index: 2;
    top: 11px;
    right: 14px;
    display: block;
    flex: 0 0 42px;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
  }

  body[data-page="partners"] .menu-toggle span {
    display: none;
  }

  body[data-page="partners"] .menu-toggle::before,
  body[data-page="partners"] .menu-toggle::after {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1px;
    content: "";
    background: #fff;
  }

  body[data-page="partners"] .menu-toggle::before {
    top: 15px;
  }

  body[data-page="partners"] .menu-toggle::after {
    top: 25px;
  }

  .partners-cover h1 {
    font-size: clamp(43px, 14vw, 66px);
    line-height: 0.9;
  }

  .partners-intro {
    margin-top: 34px;
  }

  .partners-kicker {
    font-size: clamp(23px, 7vw, 34px);
  }

  .partners-intro p:not(.partners-kicker),
  .partners-opportunity p {
    font-size: 16px;
  }

  .partners-hero-visual {
    width: min(100%, 320px);
    justify-self: center;
  }

  .partners-opportunity {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 28px 0;
  }

  .partners-opportunity-icon {
    width: 104px;
  }

  .partners-opportunity h2 {
    margin-bottom: 12px;
    font-size: clamp(26px, 8vw, 36px);
  }

  .partners-collab {
    margin-top: 42px;
    padding: 22px;
  }

  .partners-collab h2,
  .partners-cta h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .partners-collab-grid {
    grid-template-columns: 1fr;
  }

  .partners-collab-grid span {
    min-height: 64px;
  }

  .partners-cta {
    padding: 34px 0 42px;
  }

  .partners-cta-actions {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .partners-cover h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .partners-hero-visual {
    width: min(100%, 282px);
  }
}

@media (max-width: 600px) {
  .partners-reference-page .section-shell {
    width: min(100% - 28px, 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .partners-cover h1 {
    font-size: 42px;
  }
}

.business-reference-page,
.contacts-reference-page {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 46%),
    #030303;
}

.business-reference-page .section-shell,
.contacts-reference-page .section-shell {
  width: min(1320px, calc(100% - 52px));
}

.business-cover,
.contacts-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: 700px;
  padding-top: clamp(62px, 7vw, 112px);
  padding-bottom: clamp(48px, 5vw, 78px);
}

.business-presentation-link,
.contacts-presentation-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.business-cover-copy,
.contacts-cover-copy {
  min-width: 0;
}

.business-cover h1,
.contacts-cover h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(74px, 8vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.1);
}

.business-cover h1 span,
.contacts-cover h1 span {
  display: block;
  overflow-wrap: anywhere;
}

.business-message-stack {
  display: grid;
  gap: 28px;
  max-width: 520px;
  margin-top: clamp(42px, 5vw, 68px);
}

.business-message-stack span {
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.business-message-stack p,
.contacts-cover-copy > p:not(.contacts-kicker),
.business-cta p,
.contacts-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.52;
}

.business-hero-visual,
.contacts-orbit {
  justify-self: end;
  width: min(100%, 520px);
  color: #fff;
  filter:
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.08))
    drop-shadow(0 28px 60px rgba(0, 0, 0, 0.7));
}

.business-hero-visual svg,
.contacts-orbit svg {
  width: 100%;
  height: auto;
}

.business-hero-reference {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.1));
}

.business-hero-visual svg *,
.contacts-orbit svg * {
  vector-effect: non-scaling-stroke;
}

.business-orbit-dash,
.business-orbit-line,
.business-orbit-arc,
.business-scene path,
.contacts-orbit-dash,
.contacts-orbit-line,
.contacts-orbit svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-orbit-dash,
.contacts-orbit-dash {
  stroke-width: 1.6;
  stroke-dasharray: 9 9;
  opacity: 0.42;
}

.business-orbit-line,
.business-orbit-arc,
.contacts-orbit-line {
  stroke-width: 2.1;
  opacity: 0.72;
}

.business-orbit-node,
.contacts-orbit svg circle:not(.contacts-orbit-dash):not(.contacts-orbit-line) {
  fill: #030303;
  stroke: currentColor;
  stroke-width: 2.1;
}

.business-scene path {
  stroke-width: 3.2;
}

.contacts-orbit svg path {
  stroke-width: 3.1;
}

.business-section-heading,
.business-cta,
.contacts-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.business-section-heading {
  display: grid;
  gap: 12px;
  padding-top: 52px;
}

.business-kicker,
.contacts-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.business-section-heading h2,
.business-cta h2,
.contacts-cta h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.business-offer-grid,
.contacts-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.business-offer-grid article,
.contacts-channel-grid a {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #030303;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.business-offer-grid article:hover,
.contacts-channel-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.business-offer-grid span,
.contacts-channel-grid span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.business-offer-grid h3,
.contacts-channel-grid strong {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.business-offer-grid p,
.contacts-channel-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.58;
}

.business-cta,
.contacts-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 62px;
  padding-top: 42px;
  padding-bottom: 48px;
}

.business-cta p,
.contacts-cta p {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(16px, 1.35vw, 20px);
}

.business-cta-actions,
.contacts-cta-actions,
.contacts-actions-main {
  display: grid;
  gap: 12px;
  min-width: 280px;
}

.contacts-cover-copy > p:not(.contacts-kicker) {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(18px, 1.55vw, 23px);
}

.contacts-actions-main {
  width: min(100%, 360px);
  margin-top: 34px;
}

.contacts-channel-grid {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 52px;
}

@media (max-width: 1080px) {
  .business-cover,
  .contacts-cover,
  .business-cta,
  .contacts-cta {
    grid-template-columns: 1fr;
  }

  .business-hero-visual,
  .contacts-orbit {
    justify-self: start;
    width: min(100%, 420px);
  }

  .business-offer-grid,
  .contacts-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-cta-actions,
  .contacts-cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .business-reference-page,
  .contacts-reference-page {
    padding-top: calc(var(--header-height) + 26px);
  }

  .business-reference-page .section-shell,
  .contacts-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .business-cover,
  .contacts-cover {
    gap: 30px;
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .business-presentation-link,
  .contacts-presentation-link {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-bottom: 22px;
    padding-inline: 16px;
  }

  .business-cover h1,
  .contacts-cover h1 {
    font-size: clamp(42px, 13vw, 66px);
    line-height: 0.9;
  }

  .business-message-stack {
    gap: 22px;
    margin-top: 34px;
  }

  .business-message-stack p,
  .contacts-cover-copy > p:not(.contacts-kicker) {
    font-size: 17px;
  }

  .business-hero-visual,
  .contacts-orbit {
    width: min(100%, 330px);
    justify-self: center;
  }

  .business-section-heading,
  .contacts-channel-grid {
    padding-top: 42px;
  }

  .business-section-heading h2,
  .business-cta h2,
  .contacts-cta h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .business-offer-grid,
  .contacts-channel-grid {
    grid-template-columns: 1fr;
  }

  .business-offer-grid article,
  .contacts-channel-grid a {
    min-height: 0;
    padding: 22px;
  }

  .business-cta,
  .contacts-cta {
    margin-top: 42px;
    padding-top: 34px;
  }

  .business-cta-actions,
  .contacts-cta-actions,
  .contacts-actions-main {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .business-reference-page .section-shell,
  .contacts-reference-page .section-shell {
    width: min(100% - 28px, 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .business-cover h1,
  .contacts-cover h1 {
    font-size: 42px;
  }

  .business-hero-visual,
  .contacts-orbit {
    width: min(100%, 310px);
  }
}

.website-reference-page {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 62px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 16% 4%, rgba(255, 255, 255, 0.07), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.045), transparent 22rem),
    #030303;
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.website-reference-page .section-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 52px));
}

.webdev-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.webdev-background::before {
  position: fixed;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.026) 0,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px,
      transparent 7px
    );
  opacity: 0.26;
  mix-blend-mode: screen;
}

.webdev-background span {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: #030303;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.webdev-background span:nth-child(1) {
  top: 13%;
  left: 9%;
}

.webdev-background span:nth-child(2) {
  top: 31%;
  right: 11%;
}

.webdev-background span:nth-child(3) {
  bottom: 13%;
  left: 46%;
}

.webdev-cursor,
.webdev-cursor-trail {
  pointer-events: none;
}

.webdev-cursor,
.webdev-cursor-trail span {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  opacity: 0;
  transform: translate3d(-80px, -80px, 0);
}

.webdev-cursor {
  width: 54px;
  height: 54px;
  mix-blend-mode: difference;
  transition: opacity 180ms ease, transform 90ms linear;
}

.webdev-cursor-dot,
.webdev-cursor-ring,
.webdev-cursor-cross,
.webdev-cursor-label {
  position: absolute;
  display: block;
}

.webdev-cursor-dot {
  top: 24px;
  left: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.webdev-cursor-ring {
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.webdev-cursor-cross-x,
.webdev-cursor-cross-y {
  background: rgba(255, 255, 255, 0.86);
}

.webdev-cursor-cross-x {
  top: 27px;
  left: 0;
  width: 54px;
  height: 1px;
}

.webdev-cursor-cross-y {
  top: 0;
  left: 27px;
  width: 1px;
  height: 54px;
}

.webdev-cursor-label {
  top: 42px;
  left: 42px;
  min-width: 52px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 5px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background: #030303;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.webdev-cursor.is-labeled .webdev-cursor-label {
  opacity: 1;
  transform: translateY(0);
}

.webdev-cursor.is-labeled .webdev-cursor-ring {
  inset: 3px;
  border-width: 2px;
}

.webdev-cursor-trail span {
  z-index: 79;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
}

.webdev-experience.cursor-enabled,
.webdev-experience.cursor-enabled a,
.webdev-experience.cursor-enabled button,
.webdev-experience.cursor-enabled [data-cursor] {
  cursor: none;
}

.webdev-experience.cursor-enabled .webdev-cursor,
.webdev-experience.cursor-enabled .webdev-cursor-trail span {
  opacity: 1;
}

.website-sticky-cta {
  position: fixed;
  z-index: 42;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0 18px;
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52), 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.webdev-experience .button,
.website-sticky-cta,
.website-inline-cta,
.website-process-strip article,
.website-benefit-grid article,
.website-type-grid article,
.website-price-grid article,
.webdev-story-step {
  transform: translate3d(0, 0, 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
}

.webdev-experience .button:hover,
.website-sticky-cta:hover,
.website-inline-cta:hover,
.website-process-strip article:hover,
.website-benefit-grid article:hover,
.website-type-grid article:hover,
.website-price-grid article:hover,
.webdev-story-step:hover {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.website-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 4.4vw, 64px);
  align-items: center;
  min-height: min(880px, calc(100svh - var(--header-height) - 28px));
  padding-bottom: 62px;
}

.website-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(46px, 5.1vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.website-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.website-lead,
.website-story-copy p,
.website-turning-copy p,
.website-trust p,
.website-result p,
.website-request-panel p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.website-lead {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
}

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

.website-format-line {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.website-hero-art,
.website-comic-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.012) 44%, rgba(255, 255, 255, 0.05)),
    #030303;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.42);
}

.website-hero-art::before,
.website-comic-panel::before,
.website-compare-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 8px,
      rgba(255, 255, 255, 0.035) 9px,
      transparent 10px
    );
  opacity: 0.55;
  pointer-events: none;
}

.website-hero-art::after,
.website-comic-panel::after {
  position: absolute;
  inset: 18px;
  z-index: 1;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.website-hero-art {
  min-height: 520px;
}

.website-hero-art > svg,
.website-comic-panel > svg,
.website-compare-art > svg {
  position: absolute;
  inset: 0;
}

.website-hero-art > svg,
.website-comic-panel > svg,
.website-process-strip svg,
.website-compare-grid svg,
.website-compare-art > svg {
  width: 100%;
  height: 100%;
}

.comic-screen,
.comic-person,
.comic-line,
.comic-burst,
.comic-zap,
.comic-arrow,
.website-process-strip svg *,
.website-compare-grid svg *,
.website-compare-art svg * {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.comic-burst {
  fill: rgba(255, 255, 255, 0.025);
  stroke-width: 2;
}

.comic-screen {
  fill: #050505;
}

.comic-person {
  fill: rgba(255, 255, 255, 0.025);
}

.comic-zap {
  fill: rgba(255, 255, 255, 0.12);
}

.comic-arrow {
  stroke-width: 4;
}

.comic-text {
  fill: rgba(255, 255, 255, 0.88);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2px;
}

.webdev-experience .visible .comic-line,
.webdev-experience .visible .comic-person,
.webdev-experience .visible .comic-arrow,
.webdev-experience .visible .comic-zap,
.webdev-experience .visible .comic-screen,
.webdev-experience .visible .website-process-strip svg *,
.webdev-experience .visible .website-compare-art svg * {
  animation: webdev-line-draw 900ms ease both;
  stroke-dasharray: 740;
  stroke-dashoffset: 740;
}

.website-story,
.website-turning,
.website-process,
.website-benefits,
.website-types,
.website-trust,
.website-before-after,
.website-result,
.website-pricing,
.website-faq,
.website-request {
  margin-top: clamp(58px, 7vw, 104px);
}

.website-scene-label {
  width: max-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.website-story-grid,
.website-result,
.website-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.website-story-copy h2,
.website-turning h2,
.website-section-heading h2,
.website-trust h2,
.website-result h2,
.website-request-panel h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4.1vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.website-story-copy p,
.website-turning-copy p,
.website-trust p,
.website-result p,
.website-request-panel p {
  max-width: 760px;
  font-size: clamp(17px, 1.35vw, 21px);
}

.website-inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.website-chaos-panel {
  min-height: 360px;
}

.website-bubble {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  max-width: 220px;
  border: 1px solid #fff;
  border-radius: 24px 24px 24px 6px;
  padding: 12px 14px;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  background: #fff;
  box-shadow: 6px 6px 0 #050505, 6px 6px 0 1px rgba(255, 255, 255, 0.42);
}

.bubble-left {
  top: 20px;
  left: 22px;
}

.bubble-right {
  right: 24px;
  bottom: 30px;
  border-radius: 24px 24px 6px 24px;
}

.website-turning {
  display: grid;
  gap: 30px;
}

.website-rescue-panel {
  min-height: 360px;
}

.website-rescue-panel .website-bubble {
  top: 24px;
  left: 28px;
}

.website-turning-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: end;
}

.website-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.website-pill-row span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.webdev-pinned-story {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  min-height: 720px;
  margin-top: clamp(58px, 7vw, 104px);
}

.webdev-pinned-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  min-height: 420px;
  padding: 28px 0;
}

.webdev-pinned-copy h2 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(34px, 4.8vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.webdev-pinned-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
}

.webdev-pinned-scenes {
  display: grid;
  gap: 18px;
  padding-top: 42px;
}

.webdev-story-step {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 220px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.012)),
    #030303;
}

.webdev-story-step::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 84px;
  height: 84px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.35);
  transform: rotate(8deg);
}

.webdev-story-step span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
}

.webdev-story-step strong {
  color: #fff;
  font-size: clamp(25px, 2.6vw, 42px);
  line-height: 0.98;
  text-transform: uppercase;
}

.webdev-story-step p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.webdev-story-step.is-active {
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 22px 60px rgba(0, 0, 0, 0.35);
}

.website-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.website-section-heading h2 {
  margin: 0;
}

.website-process-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: #030303;
}

.website-process-strip article {
  display: grid;
  gap: 14px;
  min-height: 300px;
  align-content: start;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    #030303;
}

.website-process-strip article:last-child {
  border-right: 0;
}

.website-process-strip span,
.website-type-grid small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.website-process-strip svg {
  width: 74px;
  height: 74px;
}

.website-process-strip h3,
.website-type-grid h3,
.website-price-grid h3,
.website-faq-grid h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.4vw, 23px);
  line-height: 1.1;
  text-transform: uppercase;
}

.website-process-strip p,
.website-type-grid p,
.website-price-grid p,
.website-faq-grid p,
.website-compare-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.website-benefit-grid,
.website-type-grid,
.website-price-grid,
.website-faq-grid {
  display: grid;
  gap: 14px;
}

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

.website-benefit-grid article,
.website-type-grid article,
.website-price-grid article,
.website-faq-grid article,
.website-request-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.website-benefit-grid article {
  display: grid;
  gap: 16px;
  min-height: 164px;
  align-content: end;
  padding: 20px;
}

.website-benefit-grid span {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.website-benefit-grid strong {
  color: #fff;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.2;
  text-transform: uppercase;
}

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

.website-type-grid article,
.website-price-grid article,
.website-faq-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 230px;
  padding: 22px;
}

.website-type-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 218px;
}

.website-type-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.18), transparent);
}

.website-type-grid small {
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 10px;
}

.website-type-grid h3,
.website-type-grid p {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.website-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(34px, 5vw, 64px) 0;
}

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

.website-trust-list span {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.website-compare-stage {
  --split: 52%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: #030303;
  touch-action: pan-y;
}

.website-compare-side {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-content: end;
  min-height: 420px;
  padding: clamp(22px, 4vw, 42px);
}

.website-compare-side span {
  color: #fff;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.website-compare-side ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.website-compare-side li {
  position: relative;
  padding-left: 24px;
}

.website-compare-side li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.website-compare-stage .website-before {
  grid-column: 1 / -1;
  grid-row: 1;
  padding-right: calc(100% - var(--split) + 30px);
  opacity: 0.62;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent),
    #030303;
}

.website-compare-stage .website-after {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  padding-left: calc(var(--split) + 30px);
  clip-path: inset(0 0 0 var(--split));
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.12), transparent 18rem),
    #030303;
  opacity: 1;
}

.website-compare-art {
  position: absolute;
  inset: 38px 28px;
  z-index: 1;
  opacity: 0.28;
}

.website-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  transform: translateX(-50%);
}

.website-compare-handle::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.035);
}

.website-compare-handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  content: "DRAG";
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #050505;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.website-compare-handle:focus-visible::after {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

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

.website-compare-grid article {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 22px;
  background: #030303;
}

.website-compare-grid span {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.website-before {
  opacity: 0.68;
}

.website-after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 36px rgba(255, 255, 255, 0.07);
}

.website-result {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.82fr);
}

.website-result .website-comic-panel {
  min-height: 320px;
}

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

.website-price-grid strong {
  margin-top: auto;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.website-faq-grid article {
  min-height: 220px;
}

.website-request-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 68px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
}

.website-request-panel::after {
  position: absolute;
  right: -40px;
  bottom: -58px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.025);
}

.website-request-panel > * {
  position: relative;
  z-index: 1;
}

@keyframes webdev-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.influence-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--faint);
}

.influence-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(160, 200, 255, 0.08), transparent 45%, rgba(255, 255, 255, 0.05));
  mask-image: linear-gradient(180deg, transparent, #000 42%);
}

.influence-hero > * {
  position: relative;
}

.influence-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.filters-panel,
.admin-toolbar {
  display: grid;
  gap: 12px;
}

.filters-panel {
  grid-template-columns: 1fr 1fr minmax(150px, 0.7fr) minmax(150px, 0.7fr) auto;
  align-items: end;
  margin: 34px 0;
  padding: 18px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(2, 2, 2, 0.82);
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 104px;
  resize: vertical;
  padding: 13px;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 0 0 3px rgba(160, 200, 255, 0.12);
}

input[type="file"] {
  display: flex;
  align-items: center;
  padding: 11px;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: #fff;
}

.bloggers-state {
  min-height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.bloggers-state:empty {
  display: none;
}

.countries-list {
  display: grid;
  gap: 44px;
}

.country-section {
  display: grid;
  gap: 18px;
}

.country-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--faint);
}

.country-heading h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 1.4px;
}

.country-heading span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.blogger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blogger-card {
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blogger-card:hover {
  transform: translateY(-4px);
  border-color: var(--strong-glow);
  box-shadow: 0 0 28px rgba(160, 200, 255, 0.16);
}

.blogger-photo {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050505;
}

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

.blogger-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #151515, #050505);
}

.blogger-placeholder svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.blogger-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.blogger-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.blogger-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blogger-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.045);
}

.blogger-meta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.blogger-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.07);
}

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

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

.feature-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #050505;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--strong-glow);
  box-shadow: 0 0 25px rgba(160, 200, 255, 0.14);
}

.feature-number {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.feature-icon {
  width: 54px;
  height: 54px;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(160, 200, 255, 0.38));
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.payment-card {
  min-height: 168px;
}

.influence-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.influence-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.05;
}

.influence-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.influence-cta .contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.admin-auth-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.admin-auth-card {
  display: grid;
  gap: 18px;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.admin-auth-card img {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  box-shadow: 0 0 28px var(--glow);
}

.admin-auth-card h1 {
  margin: 0;
  font-size: 42px;
}

.admin-page {
  padding-bottom: 70px;
}

.admin-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.admin-heading h1 {
  margin: 0;
}

.admin-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.admin-tabs a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
}

.admin-tabs a.is-active {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-form,
.admin-list-panel {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
}

.admin-form {
  display: grid;
  gap: 15px;
  padding: 18px;
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 12px;
  align-items: end;
}

.admin-preview {
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 118px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
}

.admin-preview img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-message.is-error {
  color: #ffb7b7;
}

.admin-message.is-success {
  color: #d8ffe1;
}

.admin-message[data-type="error"] {
  color: #ffb7b7;
}

.admin-message[data-type="success"] {
  color: #d8ffe1;
}

.admin-list-panel {
  min-width: 0;
  padding: 16px;
}

.admin-toolbar {
  grid-template-columns: minmax(190px, 1fr) minmax(160px, 0.56fr) minmax(160px, 0.56fr);
  margin-bottom: 14px;
}

.case-admin-toolbar {
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.34fr);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.admin-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 12px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.035);
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-blogger-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.admin-blogger-cell img,
.admin-blogger-cell span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: #050505;
}

.admin-blogger-cell span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.admin-blogger-cell strong,
.admin-blogger-cell small {
  display: block;
}

.admin-blogger-cell small {
  margin-top: 4px;
  color: var(--muted);
}

.admin-case-cell {
  min-width: 260px;
}

.admin-case-cell strong,
.admin-case-cell small {
  display: block;
}

.admin-case-cell small {
  max-width: 420px;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-video-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.admin-cases-table {
  min-width: 880px;
}

.table-action {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 10px;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.table-action + .table-action {
  margin-left: 6px;
}

.table-action.danger {
  color: #ffd0d0;
}

.admin-logout {
  flex: 0 0 auto;
  margin-left: 10px;
}

.admin-logout .button {
  min-height: 38px;
  padding-inline: 14px;
}

.reveal {
  animation: reveal-up 700ms ease both;
}

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

@keyframes reveal-up {
  from {
    opacity: 0.001;
    transform: translateY(18px);
  }

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

@media (max-width: 1240px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .about-stage,
  .service-stage,
  .about-layout,
  .about-manifest,
  .about-partnership,
  .about-close,
  .service-split,
  .service-cta,
  .split-cta,
  .influence-cta,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .phone-stack {
    max-width: 660px;
    min-height: 590px;
    margin: 0 auto;
  }

  .device-card {
    width: min(45vw, 300px);
  }

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

  .about-stage {
    min-height: auto;
  }

  .about-founder-panel {
    width: min(100%, 520px);
    min-height: 0;
  }

  .manifest-copy {
    position: static;
  }

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

  .about-close {
    justify-items: start;
  }

  .service-stage {
    min-height: auto;
  }

  .smm-showcase {
    width: min(100%, 620px);
  }

  .service-copy-block {
    position: static;
  }

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

  .service-cta .contact-actions {
    justify-content: flex-start;
  }

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

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

  .giveaway-proof-row,
  .giveaway-format-grid,
  .giveaway-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .giveaway-balance-panel {
    grid-template-columns: 1fr;
  }

  .giveaway-balance-panel article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .marketing-cover,
  .marketing-result {
    grid-template-columns: 1fr;
  }

  .marketing-cover {
    min-height: auto;
  }

  .marketing-orbit {
    place-self: start;
  }

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

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

  .marketing-flow li,
  .marketing-flow li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .marketing-flow li:nth-child(2n) {
    border-right: 0;
  }

  .marketing-flow li:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .digital-cover {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .digital-search-logos {
    justify-content: start;
  }

  .digital-direction-grid,
  .digital-traffic-grid {
    grid-template-columns: 1fr;
  }

  .digital-work-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .it-cover {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .it-chip-visual {
    justify-self: start;
    width: min(78vw, 460px);
  }

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

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

  .design-direction-grid article {
    min-height: 360px;
  }

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

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

  .target-work-panel article,
  .target-work-panel article:nth-child(5n) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .target-work-panel article:nth-child(2n) {
    border-right: 0;
  }

  .target-blogger {
    grid-template-columns: 1fr;
  }

  .target-blogger-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .filters-panel .button {
    grid-column: 1 / -1;
  }

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

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

  .influence-cta .contact-actions {
    justify-content: flex-start;
  }

  .admin-form {
    position: static;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-logo-mini {
    width: 38px;
    height: 38px;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    gap: 34px;
  }

  .page-main {
    padding-top: calc(var(--header-height) + 26px);
  }

  .influence-hero {
    min-height: 320px;
    padding-top: 52px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
    line-height: 1;
  }

  h1 span {
    display: block;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.28;
  }

  .hero-text {
    max-width: min(340px, 100%);
    font-size: 16px;
  }

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

  .hero-actions,
  .contact-actions,
  .about-stage-actions,
  .service-stage-actions {
    display: grid;
    width: 100%;
    max-width: 342px;
  }

  .button {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .split-cta h2 {
    font-size: clamp(24px, 7vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .entrepreneurs .split-cta h2 {
    font-size: clamp(21px, 6vw, 34px);
  }

  .phone-stack,
  .services-grid,
  .about-proof,
  .service-proof,
  .manifest-grid,
  .service-card-grid,
  .system-flow,
  .process-grid,
  .mini-card-grid,
  .contact-panel,
  .filters-panel,
  .admin-toolbar,
  .form-row,
  .admin-form-actions {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    max-width: 100%;
    min-height: 450px;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
  }

  .brand-name {
    display: none;
  }

  .device-card {
    width: min(43vw, 166px);
    gap: 10px;
  }

  .instagram-device {
    transform: rotate(-2deg);
  }

  .telegram-device {
    transform: rotate(2deg) translateY(28px);
  }

  .device-frame {
    border-radius: 28px;
    padding: 8px;
  }

  .device-frame img {
    border-radius: 21px;
  }

  .social-button {
    min-height: 42px;
    padding: 10px 6px;
    font-size: 11px;
  }

  .service-card {
    grid-template-columns: 36px 76px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .about-stage {
    padding-bottom: 36px;
  }

  .service-stage {
    padding-bottom: 36px;
  }

  .about-stage-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .service-stage-copy h1 {
    font-size: clamp(38px, 13vw, 62px);
  }

  .about-stage-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .service-stage-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .about-founder-panel {
    padding: 12px;
  }

  .smm-showcase {
    min-height: 500px;
  }

  .smm-device-main {
    left: 7%;
    width: min(52%, 230px);
  }

  .smm-device-side {
    right: 6%;
    width: min(42%, 188px);
  }

  .smm-badge {
    right: 6%;
    width: min(54%, 220px);
    padding: 14px;
  }

  .founder-photo {
    max-height: 560px;
  }

  .about-proof {
    margin-bottom: 42px;
  }

  .service-proof {
    margin-bottom: 42px;
  }

  .about-proof article,
  .service-proof article,
  .manifest-grid article,
  .service-card-grid article,
  .system-flow article {
    min-height: 0;
    padding: 18px;
  }

  .about-manifest,
  .about-system,
  .about-partnership,
  .service-split,
  .service-process {
    padding: 44px 0;
  }

  .manifest-copy p:not(.eyebrow),
  .about-partnership p,
  .service-copy-block p:not(.eyebrow),
  .service-cta p:not(.eyebrow) {
    font-size: 16px;
  }

  .partnership-models span {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .about-close {
    gap: 18px;
  }

  .service-cta {
    gap: 18px;
  }

  .smm-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .smm-cover {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .smm-presentation-link {
    position: static;
    display: inline-flex;
    margin-bottom: 34px;
  }

  .smm-cover h1 {
    font-size: clamp(40px, 13vw, 68px);
  }

  .smm-subtitle {
    font-size: 20px;
  }

  .smm-lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .smm-social-grid {
    grid-template-columns: repeat(4, 52px);
    gap: 18px 24px;
    margin-top: 34px;
  }

  .smm-social-grid span {
    width: 52px;
    height: 52px;
  }

  .smm-social-grid svg {
    width: 31px;
    height: 31px;
  }

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

  .smm-include-grid article {
    min-height: 210px;
    padding: 24px 12px 18px;
  }

  .smm-include-grid svg {
    width: 58px;
    height: 58px;
  }

  .smm-include-grid h3 {
    font-size: 13px;
  }

  .smm-include-grid p {
    font-size: 12px;
    line-height: 1.55;
  }

  .target-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .giveaway-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .giveaway-cover {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .giveaway-presentation-link {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 342px;
    min-height: 44px;
    margin-bottom: 34px;
    padding-inline: 16px;
  }

  .giveaway-cover h1 {
    margin-bottom: 34px;
    font-size: clamp(44px, 14vw, 72px);
  }

  .giveaway-proof-row,
  .giveaway-format-grid,
  .giveaway-case-grid {
    grid-template-columns: 1fr;
  }

  .giveaway-proof-row {
    gap: 18px;
  }

  .giveaway-proof-row article {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .giveaway-proof-row svg {
    width: 52px;
    height: 52px;
  }

  .giveaway-proof-row p {
    font-size: 13px;
  }

  .giveaway-proof-row strong {
    font-size: 34px;
  }

  .giveaway-formats,
  .giveaway-balance,
  .giveaway-cases {
    margin-bottom: 42px;
  }

  .giveaway-format-grid {
    gap: 12px;
  }

  .giveaway-format-grid article {
    min-height: 210px;
    gap: 18px;
    padding: 22px;
  }

  .giveaway-format-grid svg {
    width: 74px;
    height: 74px;
  }

  .giveaway-format-grid h3,
  .giveaway-balance-title h3 {
    font-size: 16px;
  }

  .giveaway-balance-panel article {
    min-height: 0;
    padding: 22px;
  }

  .giveaway-balance-title {
    gap: 14px;
    margin-bottom: 22px;
  }

  .giveaway-balance-title svg {
    width: 44px;
    height: 44px;
  }

  .giveaway-balance ol,
  .giveaway-balance p {
    font-size: 16px;
  }

  .giveaway-case-video {
    aspect-ratio: 16 / 10;
  }

  .giveaway-cases-empty {
    padding: 22px;
  }

  .marketing-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .design-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .digital-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .it-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .target-cover {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .design-cover {
    padding-top: 38px;
    padding-bottom: 26px;
  }

  .marketing-cover {
    gap: 34px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .target-presentation-link {
    position: static;
    min-height: 44px;
    margin-bottom: 38px;
    padding-inline: 16px;
  }

  .design-presentation-link {
    position: static;
    min-height: 44px;
    margin-bottom: 34px;
    padding-inline: 16px;
  }

  .marketing-presentation-link {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 342px;
    min-height: 44px;
    margin-bottom: 34px;
    padding-inline: 16px;
  }

  .target-cover h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .marketing-cover h1 {
    font-size: 52px;
    line-height: 0.92;
  }

  .marketing-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .marketing-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 6px;
    padding: 14px;
  }

  .marketing-orbit::before,
  .marketing-orbit::after {
    display: none;
  }

  .marketing-orbit-core {
    position: static;
    width: 100%;
    height: auto;
    min-height: 112px;
    transform: none;
    border-radius: 5px;
  }

  .orbit-node,
  .orbit-node-strategy,
  .orbit-node-brand,
  .orbit-node-content,
  .orbit-node-traffic,
  .orbit-node-sales,
  .orbit-node-data {
    position: static;
    transform: none;
    min-height: 42px;
    padding: 0 10px;
    font-size: 10px;
    text-align: center;
  }

  .marketing-orbit-core {
    grid-column: 1 / -1;
  }

  .marketing-stats {
    grid-template-columns: 1fr;
  }

  .marketing-stats article,
  .marketing-stats article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px;
  }

  .marketing-stats article:last-child {
    border-bottom: 0;
  }

  .marketing-system,
  .marketing-flow-section,
  .marketing-modes,
  .marketing-result {
    margin-top: 44px;
  }

  .marketing-section-heading h2,
  .marketing-result h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .marketing-pillar-grid,
  .marketing-mode-grid,
  .marketing-flow {
    grid-template-columns: 1fr;
  }

  .marketing-pillar-grid article,
  .marketing-mode-grid article {
    min-height: 0;
    padding: 22px;
  }

  .marketing-pillar-grid svg,
  .marketing-mode-grid svg {
    width: 62px;
    height: 62px;
  }

  .marketing-flow li,
  .marketing-flow li:nth-child(2n),
  .marketing-flow li:last-child {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px;
  }

  .marketing-flow li:last-child {
    border-bottom: 0;
  }

  .marketing-result {
    padding: 22px;
  }

  .marketing-result p:not(.marketing-kicker) {
    font-size: 15px;
  }

  .marketing-result-actions {
    width: 100%;
    min-width: 0;
  }

  .digital-cover {
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .it-cover {
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .digital-presentation-link {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 342px;
    min-height: 44px;
    margin-bottom: 34px;
    padding-inline: 16px;
  }

  .it-presentation-link {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 342px;
    min-height: 44px;
    margin-bottom: 34px;
    padding-inline: 16px;
  }

  .digital-cover h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 14vw, 72px);
  }

  .it-cover h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .it-cover-copy p {
    margin-top: 22px;
    font-size: 16px;
  }

  .it-chip-visual {
    width: min(100%, 360px);
  }

  .digital-cover-copy p {
    font-size: 16px;
  }

  .digital-search-logos {
    grid-template-columns: 92px auto 92px;
    gap: 20px;
    justify-content: start;
  }

  .digital-search-logos i {
    height: 82px;
  }

  .digital-directions,
  .digital-work,
  .digital-traffic {
    margin-bottom: 42px;
  }

  .it-services {
    margin-bottom: 42px;
  }

  .digital-direction-grid article {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }

  .digital-direction-brand,
  .digital-direction-accent {
    width: 72px;
    height: 72px;
  }

  .digital-direction-grid h3,
  .digital-traffic-grid h3 {
    font-size: 20px;
  }

  .digital-direction-grid ul,
  .digital-traffic-grid ul {
    font-size: 15px;
  }

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

  .it-service-grid {
    gap: 12px;
  }

  .it-service-card,
  .it-card-inner,
  .it-card-face {
    min-height: 256px;
  }

  .it-card-front {
    gap: 18px;
    padding: 42px 16px 24px;
  }

  .it-card-back {
    gap: 14px;
    padding: 24px;
  }

  .it-card-number {
    top: 18px;
    left: 18px;
    font-size: 30px;
  }

  .it-service-grid svg {
    width: 82px;
    height: 82px;
  }

  .it-card-title {
    font-size: 16px;
  }

  .it-card-hint {
    right: 16px;
    bottom: 16px;
  }

  .it-card-back-title {
    font-size: 20px;
  }

  .it-card-back-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .digital-work-grid article {
    min-height: 132px;
    padding: 16px 8px;
  }

  .digital-traffic-grid article {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }

  .digital-traffic-grid article > svg {
    width: 72px;
    height: 72px;
    border-right: 0;
    padding-right: 0;
  }

  .design-cover h1 {
    font-size: clamp(48px, 16vw, 82px);
  }

  .target-platforms,
  .target-work {
    margin-bottom: 42px;
  }

  .design-directions {
    margin-bottom: 34px;
  }

  .design-direction-grid {
    grid-template-columns: 1fr;
  }

  .design-direction-grid article {
    min-height: 0;
    gap: 14px;
    padding: 24px 16px 20px;
  }

  .design-card-icon {
    justify-content: start;
    min-height: 0;
  }

  .design-card-icon svg {
    width: 64px;
    height: 64px;
  }

  .design-direction-grid h3 {
    min-height: 0;
    font-size: 15px;
  }

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

  .design-catalog-grid article {
    min-height: 88px;
  }

  .design-signature {
    gap: 18px;
    padding-top: 28px;
  }

  .design-signature svg {
    width: 68px;
    height: 68px;
  }

  .design-signature p {
    letter-spacing: 8px;
  }

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

  .target-platform-grid article {
    min-height: 178px;
    gap: 18px;
  }

  .platform-logo {
    width: 74px;
    height: 74px;
    border-radius: 14px;
  }

  .platform-logo svg {
    width: 44px;
    height: 44px;
  }

  .target-platform-grid strong {
    font-size: 13px;
  }

  .target-work-panel {
    grid-template-columns: 1fr;
  }

  .target-work-panel article,
  .target-work-panel article:nth-child(2n),
  .target-work-panel article:nth-child(5n) {
    min-height: 176px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 28px 14px 22px;
  }

  .target-work-panel article:last-child {
    border-bottom: 0;
  }

  .target-work-panel svg {
    width: 58px;
    height: 58px;
  }

  .target-work-panel p {
    font-size: 14px;
  }

  .target-blogger-visual {
    min-height: 250px;
  }

  .target-blogger-person {
    width: 178px;
    height: 178px;
  }

  .target-float {
    width: 48px;
    height: 38px;
  }

  .target-heart {
    left: 24px;
    bottom: 78px;
  }

  .target-like {
    right: 28px;
    bottom: 94px;
  }

  .target-play {
    right: 74px;
    bottom: 32px;
  }

  .target-blogger-copy {
    padding: 22px;
  }

  .target-blogger-copy p {
    font-size: 15px;
  }

  .target-brand-line {
    letter-spacing: 8px;
  }

  .about-close img {
    width: 82px;
    height: 82px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
  }

  .filters-panel {
    margin-block: 24px;
    padding: 14px;
  }

  .country-heading {
    display: grid;
    align-items: start;
  }

  .country-heading h2 {
    font-size: 25px;
  }

  .blogger-grid,
  .feature-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .blogger-card-body {
    padding: 14px;
  }

  .feature-card,
  .payment-card {
    min-height: 0;
  }

  .influence-cta {
    padding: 22px;
  }

  .influence-cta h2 {
    font-size: 28px;
  }

  .admin-auth-card,
  .admin-form,
  .admin-list-panel {
    padding: 14px;
  }

  .admin-auth-card h1 {
    font-size: 36px;
  }

  .admin-logout {
    margin-left: auto;
  }

  .admin-logout .button {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .logo-marquee {
    margin-bottom: 34px;
    padding-block: 24px;
  }

  .client-card {
    width: 136px;
    height: 70px;
  }

  .client-card.wide-logo {
    width: 166px;
  }

  .client-card img {
    max-height: 54px;
  }

  .client-card.wide-logo img {
    max-height: 46px;
  }

  .smb-card {
    flex-basis: 158px;
  }

  .contact-mark {
    width: 84px;
  }
}

@media (max-width: 600px) {
  .giveaway-reference-page .section-shell {
    width: min(100% - 28px, 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .giveaway-cover h1 {
    font-size: 42px;
  }

  .giveaway-cover h1 span {
    overflow-wrap: anywhere;
  }

  .marketing-reference-page .section-shell {
    width: min(100% - 28px, 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .marketing-cover-copy,
  .marketing-orbit,
  .marketing-stats,
  .marketing-section-heading,
  .marketing-pillar-grid,
  .marketing-flow,
  .marketing-mode-grid,
  .marketing-result {
    width: 100%;
    max-width: 362px;
  }

  .marketing-cover h1 {
    font-size: 42px;
  }

  .marketing-orbit {
    grid-template-columns: 1fr;
  }

  .digital-reference-page .section-shell {
    width: min(100% - 28px, 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .it-reference-page .section-shell {
    width: min(100% - 28px, 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .digital-cover h1 {
    font-size: 42px;
  }

  .it-cover h1 {
    font-size: 42px;
  }

  .digital-cover h1 span {
    overflow-wrap: anywhere;
  }

  .it-cover h1 span {
    overflow-wrap: anywhere;
  }

  .digital-search-logos {
    grid-template-columns: 78px auto 78px;
  }

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

  .it-service-card,
  .it-card-inner,
  .it-card-face {
    min-height: 236px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(38px, 14vw, 48px);
  }

  .influence-hero h1 {
    font-size: 38px;
  }

  .influence-hero {
    min-height: 286px;
  }

  .smm-social-grid {
    grid-template-columns: repeat(3, 52px);
  }

  .smm-include-grid {
    grid-template-columns: 1fr;
  }

  .target-platform-grid {
    grid-template-columns: 1fr;
  }

  .giveaway-cover h1 {
    font-size: 42px;
  }

  .marketing-cover h1 {
    font-size: 42px;
  }

  .marketing-orbit {
    grid-template-columns: 1fr;
  }

  .digital-cover h1 {
    font-size: 40px;
  }

  .it-cover h1 {
    font-size: 40px;
  }

  .digital-work-grid {
    grid-template-columns: 1fr;
  }

  .it-chip-visual {
    width: min(100%, 318px);
  }

  .design-catalog-grid {
    grid-template-columns: 1fr;
  }

  .design-signature {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .design-signature > span {
    width: 100%;
  }

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

  .service-icon {
    width: 84px;
    height: 84px;
  }

  .smb-card {
    flex-basis: 144px;
  }

  .admin-toolbar input,
  .admin-toolbar select {
    min-width: 0;
  }

  .admin-table {
    min-width: 720px;
  }

  .table-action {
    display: block;
    width: 100%;
    margin: 4px 0 0;
  }

  .table-action + .table-action {
    margin-left: 0;
  }

  .smb-grid {
    gap: 14px;
  }

  .smb-shot {
    border-radius: 24px;
    padding: 6px;
  }

  .smb-shot img {
    border-radius: 18px;
  }
}

@media (max-width: 1240px) {
  .website-hero,
  .website-story-grid,
  .website-result,
  .website-trust,
  .website-turning-copy,
  .webdev-pinned-story {
    grid-template-columns: 1fr;
  }

  .webdev-pinned-story {
    min-height: 0;
  }

  .webdev-pinned-copy {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 0;
  }

  .website-hero {
    min-height: auto;
  }

  .website-hero-art {
    width: min(100%, 760px);
    min-height: 430px;
  }

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

  .website-process-strip article:nth-child(3n) {
    border-right: 0;
  }

  .website-process-strip article:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

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

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

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

@media (max-width: 760px) {
  .webdev-cursor,
  .webdev-cursor-trail {
    display: none;
  }

  .webdev-experience.cursor-enabled,
  .webdev-experience.cursor-enabled a,
  .webdev-experience.cursor-enabled button,
  .webdev-experience.cursor-enabled [data-cursor] {
    cursor: auto;
  }

  .website-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .website-reference-page {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 86px;
  }

  .website-sticky-cta {
    right: 18px;
    bottom: 18px;
    left: auto;
    justify-content: center;
    max-width: calc(100% - 36px);
    min-height: 48px;
  }

  .website-hero {
    gap: 30px;
    padding-bottom: 30px;
  }

  .website-hero h1 {
    font-size: clamp(38px, 9.4vw, 56px);
    line-height: 1;
  }

  .website-lead,
  .website-story-copy p,
  .website-turning-copy p,
  .website-trust p,
  .website-result p,
  .website-request-panel p {
    font-size: 16px;
  }

  .website-actions {
    display: grid;
    max-width: 342px;
  }

  .website-format-line {
    font-size: 10px;
    line-height: 1.6;
  }

  .website-hero-art,
  .website-chaos-panel,
  .website-rescue-panel,
  .website-result .website-comic-panel {
    min-height: 280px;
  }

  .website-story,
  .website-turning,
  .webdev-pinned-story,
  .website-process,
  .website-benefits,
  .website-types,
  .website-trust,
  .website-before-after,
  .website-result,
  .website-pricing,
  .website-faq,
  .website-request {
    margin-top: 48px;
  }

  .website-story-copy h2,
  .website-turning h2,
  .webdev-pinned-copy h2,
  .website-section-heading h2,
  .website-trust h2,
  .website-result h2,
  .website-request-panel h2 {
    font-size: clamp(28px, 8.4vw, 42px);
    line-height: 1.05;
  }

  .website-section-heading {
    display: block;
  }

  .website-process-strip,
  .website-benefit-grid,
  .website-type-grid,
  .website-price-grid,
  .website-faq-grid,
  .website-compare-grid,
  .website-compare-stage,
  .website-trust-list {
    grid-template-columns: 1fr;
  }

  .webdev-pinned-scenes {
    padding-top: 0;
  }

  .webdev-story-step {
    min-height: 0;
  }

  .website-process-strip article,
  .website-process-strip article:nth-child(3n),
  .website-process-strip article:nth-child(n + 4) {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    gap: 8px 14px;
    padding: 16px;
  }

  .website-process-strip article:first-child {
    border-top: 0;
  }

  .website-process-strip span {
    grid-column: 1;
    grid-row: 1;
  }

  .website-process-strip svg {
    grid-column: 1;
    grid-row: 2;
    width: 46px;
    height: 46px;
  }

  .website-process-strip h3,
  .website-process-strip p {
    grid-column: 2;
  }

  .website-process-strip h3 {
    grid-row: 1;
  }

  .website-process-strip p {
    grid-row: 2;
    font-size: 14px;
    line-height: 1.45;
  }

  .website-benefit-grid article,
  .website-type-grid article,
  .website-price-grid article,
  .website-faq-grid article {
    min-height: 0;
    padding: 18px;
  }

  .website-type-grid article,
  .website-price-grid article,
  .website-faq-grid article {
    gap: 10px;
  }

  .website-type-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 6px 12px;
  }

  .website-type-grid small {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 3px;
  }

  .website-type-grid h3,
  .website-type-grid p {
    grid-column: 2;
  }

  .website-type-grid h3,
  .website-price-grid h3,
  .website-faq-grid h3 {
    font-size: 18px;
  }

  .website-type-grid p,
  .website-price-grid p,
  .website-faq-grid p {
    font-size: 14px;
    line-height: 1.45;
  }

  .website-compare-stage {
    min-height: 0;
  }

  .website-compare-side,
  .website-compare-stage .website-before,
  .website-compare-stage .website-after {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 22px;
    clip-path: none;
  }

  .website-compare-stage .website-after {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .website-compare-art,
  .website-compare-handle {
    display: none;
  }

  .website-bubble {
    max-width: 158px;
    padding: 9px 11px;
    font-size: 10px;
  }

  .comic-text {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .website-reference-page .section-shell {
    width: min(100% - 28px, var(--max));
    margin-right: auto;
    margin-left: auto;
  }

  .website-sticky-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }

  .website-hero h1 {
    font-size: 36px;
  }

  .website-hero-art {
    min-height: 240px;
  }

  .website-comic-panel {
    border-radius: 6px;
  }

  .website-turning-copy,
  .website-story-grid,
  .website-result,
  .webdev-pinned-story {
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .website-hero h1,
  .website-story-copy h2,
  .website-turning h2,
  .webdev-pinned-copy h2,
  .website-section-heading h2,
  .website-trust h2,
  .website-result h2,
  .website-request-panel h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  .website-hero-art,
  .website-chaos-panel,
  .website-rescue-panel,
  .website-result .website-comic-panel {
    min-height: 220px;
  }

  .website-request-panel {
    padding: 24px 20px;
  }

  .website-request-panel h2 {
    font-size: 29px;
  }

  .website-process-strip article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .website-process-strip svg {
    width: 40px;
    height: 40px;
  }

  .website-bubble {
    max-width: 138px;
    padding: 8px 10px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webdev-cursor,
  .webdev-cursor-trail {
    display: none;
  }

  .webdev-experience *,
  .webdev-experience *::before,
  .webdev-experience *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-story-parallax] {
    transform: none !important;
  }
}
