:root {
  --bg: rgb(10, 10, 10);
  --text: #ffffff;
  --muted: rgb(156, 156, 156);
  --line: rgba(255, 255, 255, 0.12);
  --accent-a: #7c5cff;
  --accent-b: #00d4aa;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-tight: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-display: "Antonio", "Arial Narrow", sans-serif;
  --font-art: "Syne", "Antonio", sans-serif;
  --font-serif-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --header-bar-h: 64px;
  --header-h: calc(var(--header-bar-h) + env(safe-area-inset-top, 0px));
}

/* Global — marketing site headings default to uppercase */
.site-wrap h1,
.site-wrap h2,
.site-wrap h3,
.site-wrap h4,
.site-wrap h5,
.site-wrap h6,
.site-wrap [class$="__title"],
.site-wrap [class*="__title-"],
.site-wrap .mk-title-md,
.site-wrap .mk-title-sm,
.site-wrap .fs-page__title,
.site-wrap .hero-title,
.site-wrap .hero-overlay-title,
.site-wrap .discover-browse-title {
  text-transform: uppercase;
}

/* Editorial / music-style headings — mixed case */
.site-wrap .slide-center__title,
.site-wrap .slide-center__title-main,
.site-wrap .slide-center__title-accent,
.page-home .hero-headline,
.page-home .hero-headline__line,
.page-home .hero-headline__accent {
  text-transform: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 809px) {
  html,
  body {
    touch-action: manipulation;
    overscroll-behavior: none;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.hero,
.mk-showcase-item {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: var(--header-h);
}

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

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

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: var(--header-h);
  padding: env(safe-area-inset-top, 0px) clamp(20px, 4vw, 40px) 0;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  text-decoration: none;
}

.site-brand:hover {
  color: #ffffff;
  opacity: 0.92;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.5vw, 28px);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 40px);
}

.site-nav__links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.site-nav__links a:hover {
  opacity: 0.75;
}

.site-nav__links a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.site-nav-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-nav-discover:hover {
  background: #f5f5f5;
  color: #000000;
  transform: scale(1.04);
}

.site-nav-discover.is-active {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.site-menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
}

.site-main {
  flex: 1;
  padding-top: var(--header-h);
}

/* Hero — matches Framer homepage */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  transform-origin: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.55) 45%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

.hero-overlay-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 34%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.35) 55%,
    rgba(255, 255, 255, 0.08) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 clamp(16px, 4vw, 40px);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 100px;
  max-width: 1040px;
  width: 100%;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 16px 24px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.55);
}

.hero-ticker__sep {
  opacity: 0.45;
}

.hero-ticker__copy {
  margin-left: auto;
}

@media (max-width: 640px) {
  .hero-ticker__copy {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 0 0 0.35em;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 36em;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.35);
}

.hero-sub--last {
  margin-bottom: 2rem;
}

.btn-primary--hero {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  padding: 14px 32px;
}

/* Shared tokens (showcase + marketing + inner pages) */
.mk-gradient {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mk-muted {
  color: var(--muted);
  line-height: 1.65;
}

.mk-eyebrow {
  font-size: 11px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
}

/* Marketing — cinematic panels (matches hero / showcase) */
.marketing-block {
  background: var(--bg);
  color: var(--text);
  width: 100%;
}

.mk-panel {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(64px, 12vh, 120px) clamp(24px, 5vw, 48px);
  overflow: hidden;
}

.mk-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 20% 100%,
    rgba(124, 92, 255, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.mk-panel--distribution::before {
  background: radial-gradient(
    ellipse 70% 50% at 0% 50%,
    rgba(0, 212, 170, 0.06) 0%,
    transparent 60%
  );
}

.mk-panel__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.mk-panel__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.mk-panel__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.mk-panel__display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0;
}

.mk-panel__display-line {
  display: block;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
}

.mk-panel__display-line--accent {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mk-panel__tag {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
  margin: 1rem 0 0;
  letter-spacing: -0.02em;
}

.mk-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.5rem;
}

.mk-panel__subtitle {
  font-family: var(--font-tight);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
  line-height: 1.35;
}

.mk-panel__copy {
  max-width: 42em;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.mk-panel__copy p {
  margin: 0 0 1.25em;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.mk-panel__copy p:last-child {
  margin-bottom: 0;
}

.mk-panel__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.7;
}

.mk-panel__logos img {
  height: clamp(22px, 3.5vw, 36px);
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mk-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-panel__list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.02em;
}

.mk-panel__cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-b);
  transition: opacity 0.2s ease;
}

.mk-panel__cta:hover {
  opacity: 0.75;
}

/* Legacy class aliases (projects / about pages) */
.mk-title-lg {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.35em;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

.mk-title-md {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.mk-title-sm {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  margin: 0 0 0.75em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mk-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.35);
}

.mk-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.mk-btn--outline:hover {
  border-color: var(--accent-a);
  color: #fff;
}

.mk-player-scrub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.mk-player-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.mk-player-bar span {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  border-radius: 2px;
}

.mk-list {
  margin: 1.25em 0 0;
  padding-left: 1.2em;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.mk-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 8px;
}

.mk-service-card {
  display: block;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.mk-service-card:hover {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.06);
  transform: translateY(-4px);
}

.mk-service-card__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin-bottom: 10px;
  font-weight: 600;
}

.mk-service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
  text-transform: capitalize;
}

.mk-service-card p {
  font-size: 0.92rem;
  margin: 0 0 14px;
}

.mk-service-card__link {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-b);
  font-weight: 600;
}

/* Full-screen project showcases (Website-vibe Selected projects) */
.mk-showcase {
  width: 100%;
  background: var(--bg);
}

.mk-showcase-intro {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-showcase-item {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  height: calc(100vh - var(--header-h));
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.mk-showcase-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

.mk-showcase-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.mk-showcase-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}

.mk-showcase-media video,
.mk-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mk-showcase-section-label {
  position: absolute;
  top: clamp(20px, 4vh, 36px);
  left: clamp(24px, 5vw, 48px);
  right: clamp(24px, 5vw, 48px);
  z-index: 4;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-b);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.mk-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 72px);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}

.mk-showcase-copy-panel {
  pointer-events: auto;
  max-width: min(560px, 92vw);
  padding: clamp(20px, 3vw, 32px);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--accent-b);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mk-showcase-copy-panel--wide {
  max-width: min(640px, 92vw);
}

.mk-showcase-index {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  opacity: 0.35;
  letter-spacing: -0.06em;
  margin-bottom: 0.25em;
  display: block;
}

.mk-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  max-width: 16em;
  color: #ffffff;
}

.mk-showcase-cta {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-b);
}

.mk-showcase-item--alt .mk-showcase-overlay {
  align-items: flex-end;
  text-align: right;
}

.mk-showcase-item--alt .mk-showcase-title {
  margin-left: auto;
}

/* Marketing copy inside videos 02–06 */
.mk-showcase-item--copy .mk-showcase-overlay--copy {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.7) 42%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.mk-showcase-item--copy.mk-showcase-item--alt .mk-showcase-overlay--copy {
  background: linear-gradient(
    255deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.7) 42%,
    rgba(0, 0, 0, 0.25) 100%
  );
  align-items: flex-end;
}

.mk-showcase-item--copy.mk-showcase-item--alt .mk-showcase-copy-panel {
  border-left: none;
  border-right: 3px solid var(--accent-b);
}

.mk-showcase-item.is-active .mk-showcase-section-label {
  color: #ffffff;
}

.mk-showcase-item.is-active {
  border-bottom-color: var(--accent-b);
}

.mk-showcase-display-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #ffffff;
}

.mk-showcase-display-line--dim {
  color: rgba(255, 255, 255, 0.55);
}

.mk-showcase-tag {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.65);
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.mk-showcase-body {
  margin: 0 0 1em;
  font-size: clamp(0.92rem, 1.8vw, 1.06rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.01em;
}

.mk-showcase-body--lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #ffffff;
  font-weight: 500;
}

.mk-showcase-subtitle {
  font-family: var(--font-tight);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  max-width: 36em;
  line-height: 1.35;
}

.mk-showcase-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 1.5rem;
}

.mk-showcase-platforms span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-showcase-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 1.75rem;
  opacity: 0.75;
}

.mk-showcase-logos img {
  height: clamp(20px, 3vw, 32px);
  width: auto;
  filter: brightness(0) invert(1);
}

.mk-showcase-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  max-width: 38em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-showcase-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(0.88rem, 1.7vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.mk-showcase-overlay--copy .mk-showcase-cta {
  pointer-events: auto;
  margin-top: 1.25rem;
}

.mk-showcase-overlay--split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.mk-showcase-copy-col {
  flex: 1 1 280px;
  min-width: 0;
}

.mk-showcase-player {
  flex: 0 1 280px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 20px;
  pointer-events: none;
}

.mk-showcase-player__cover {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2a2a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.mk-showcase-player__track {
  margin: 0 0 0.2em;
  font-weight: 600;
  font-size: 0.95rem;
}

.mk-showcase-player__artist {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.mk-showcase-player__scrub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

.mk-showcase-player__bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.mk-showcase-player__bar span {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--accent-b);
}

.mk-showcase-tagline {
  max-width: 36em;
  margin: 0 0 1em;
  font-size: 1rem;
}

.mk-showcase--single .mk-showcase-item {
  border-bottom: 0;
}

/* Full-screen inner pages (contact / about hero) */
.fs-page {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.fs-page__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}

.fs-page__media video,
.fs-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fs-page__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.45) 35%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

.fs-page__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(32px, 6vw, 72px);
  max-width: 920px;
}

.fs-page__content--wide {
  max-width: min(1100px, 100%);
}

.fs-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 0.25em 0 0.35em;
}

.fs-page__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 36em;
  margin-bottom: 1.25em;
}

.fs-page__body {
  max-width: 42em;
  margin-bottom: 1.5em;
  line-height: 1.65;
}

.fs-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem 2.5rem;
  margin: 1.5rem 0 2rem;
}

.fs-contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin: 0 0 0.65em;
  font-weight: 600;
}

.fs-contact-maps {
  margin-top: 0.75em;
}

.fs-contact-maps a {
  color: var(--accent-b);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.fs-page__content .mk-btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.fs-page__content .mk-btn + .mk-btn--outline {
  margin-left: 0.75rem;
}

.mk-platforms-strip {
  text-align: center;
}

.mk-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  margin-top: 40px;
  opacity: 0.85;
}

.mk-logo-row img {
  height: clamp(28px, 4vw, 44px);
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mk-final-cta {
  text-align: center;
  padding-bottom: 96px;
}

.mk-final-cta .mk-btn {
  margin: 24px 8px 0;
}

/* Legacy section helpers (about, contact, projects) */
.section {
  padding: 72px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 100px 24px 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, transform 0.2s;
}

.project-card:hover {
  border-color: rgba(124, 92, 255, 0.5);
  transform: translateY(-4px);
}

.project-card .cat {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin-bottom: 8px;
}

.project-card h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.page-hero {
  padding: 120px 24px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.contact-list p {
  margin: 0 0 1em;
}

.contact-list a {
  color: var(--accent-b);
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Footer — editorial grid + effects */
.site-footer {
  position: relative;
  z-index: 20;
  flex-shrink: 0;
  width: 100%;
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 0;
  color: var(--text);
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.site-footer__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site-footer__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: footerOrbFloat 14s ease-in-out infinite;
}

.site-footer__orb--1 {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  left: -8%;
  bottom: -25%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.4), transparent 70%);
}

.site-footer__orb--2 {
  width: min(260px, 38vw);
  height: min(260px, 38vw);
  right: 5%;
  top: -20%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.35), transparent 70%);
  animation-delay: -5s;
}

.site-footer__shine {
  position: absolute;
  top: 0;
  left: -30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(0, 212, 170, 0.06) 50%,
    transparent 100%
  );
  animation: footerShineSweep 9s ease-in-out infinite;
}

@keyframes footerOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.06);
  }
}

@keyframes footerShineSweep {
  0%,
  100% {
    left: -40%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    left: 110%;
    opacity: 1;
  }
  65%,
  100% {
    opacity: 0;
  }
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-b) 25%,
    var(--accent-a) 50%,
    var(--accent-b) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: footerBorderFlow 6s linear infinite;
}

@keyframes footerBorderFlow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.site-footer__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.08s + var(--footer-i, 0) * 0.1s);
}

.site-footer.is-visible .site-footer__reveal {
  opacity: 1;
  transform: translateY(0);
}

.page-home .site-footer {
  scroll-snap-align: end;
}

.page-home .mk-showcase-item:last-child {
  scroll-snap-stop: normal;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.site-footer__shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.012) 55%,
    rgba(0, 212, 170, 0.025) 100%
  );
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.site-footer__divider {
  height: 1px;
  margin: clamp(1.35rem, 2.8vw, 1.85rem) 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(0, 212, 170, 0.18) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent
  );
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

.site-footer__col--brand {
  padding-right: 1rem;
}

.site-footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.site-footer__logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.45));
  background: linear-gradient(120deg, #fff 0%, var(--accent-b) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerLogoShimmer 2.5s ease-in-out infinite;
}

@keyframes footerLogoShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.site-footer__tagline {
  margin: 0;
  max-width: 14em;
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

.site-footer__title {
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  font-family: var(--font-tight);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-b);
  border-bottom: 1px solid rgba(0, 212, 170, 0.25);
  transition: text-shadow 0.3s ease, border-color 0.3s ease;
}

.site-footer__col:hover .site-footer__title {
  text-shadow: 0 0 18px rgba(0, 212, 170, 0.35);
  border-bottom-color: rgba(0, 212, 170, 0.55);
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 0 0.85rem;
  font-style: normal;
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__address-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}

.site-footer__maps {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-tight);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease, gap 0.25s ease;
}

.site-footer__maps-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__maps:hover {
  color: var(--accent-b);
  gap: 0.55rem;
}

.site-footer__maps:hover .site-footer__maps-arrow {
  transform: translateX(4px);
}

.site-footer__contact-simple {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__contact-simple li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-footer__contact-simple a {
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__contact-simple a:hover {
  color: var(--accent-b);
}

.site-footer__contact-list,
.site-footer__nav-list,
.site-footer__nav-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem;
  margin: 0 -0.6rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__contact-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateX(4px);
}

.site-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  color: var(--accent-b);
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.site-footer__contact-link:hover .site-footer__contact-icon {
  transform: scale(1.08);
  background: rgba(0, 212, 170, 0.18);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.35);
}

.site-footer__contact-icon svg {
  width: 16px;
  height: 16px;
}

.site-footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.site-footer__contact-key {
  font-family: var(--font-tight);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer__contact-val {
  font-family: var(--font-tight);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  word-break: break-word;
}

.site-footer__contact-link:hover .site-footer__contact-val {
  color: var(--accent-b);
}

.site-footer__col--nav {
  text-align: left;
}

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

.site-footer__nav-grid a {
  position: relative;
  display: inline-block;
  font-family: var(--font-tight);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

.site-footer__nav-grid a:hover {
  color: var(--accent-b);
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.site-footer__nav-list a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 2px;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.site-footer__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-b), var(--accent-a));
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__col--nav .site-footer__nav-list a::after {
  transform-origin: right center;
}

.site-footer__nav-list a:hover {
  color: #fff;
  letter-spacing: 0.1em;
}

.site-footer__nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-footer__bar {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: 1rem 0 clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: none;
}

.site-footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

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

.site-footer__metric {
  position: relative;
  padding: 0 1rem;
}

.site-footer__metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  right: 0;
  width: 1px;
  height: calc(100% - 0.3rem);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer__metric:first-child {
  padding-left: 0;
}

.site-footer__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.35rem;
}

.site-footer__metric-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}

.site-footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  text-align: right;
}

.site-footer__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.site-footer__genres-line {
  margin: 0;
  max-width: 36ch;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-tight);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-footer__btn--primary {
  color: #041210;
  background: linear-gradient(120deg, var(--accent-b), #5ee8c8);
  border: 1px solid transparent;
}

.site-footer__btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.site-footer__btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__btn--ghost:hover {
  border-color: rgba(0, 212, 170, 0.45);
  color: var(--accent-b);
}

.site-footer__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.site-footer__voice {
  margin: 0;
  padding: 0 clamp(0.75rem, 1.5vw, 1rem);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__voice:first-child {
  padding-left: 0;
  border-left: none;
}

.site-footer__voice-text {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.site-footer__voice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.7rem;
}

.site-footer__voice-name {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__voice-stars {
  flex-shrink: 0;
  letter-spacing: 0.08em;
  color: rgba(245, 200, 66, 0.85);
  font-size: 0.62rem;
}

.site-footer__reveal--bar {
  opacity: 1;
  transform: none;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin-bottom: 1rem;
}

.site-footer__legal-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.site-footer__legal-links a:hover {
  color: var(--accent-b);
}

.site-footer__legal-stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
}

.site-footer__legal {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
}

.site-footer__legal--rights {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__orb,
  .site-footer__shine,
  .site-footer::before,
  .site-footer__logo:hover {
    animation: none !important;
  }

  .site-footer__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-footer__contact-link:hover,
  .site-footer__contact-link:hover .site-footer__contact-icon,
  .site-footer__logo:hover {
    transform: none;
  }
}

@media (max-width: 809px) {
  :root {
    --header-bar-h: 56px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 8px 0;
  }

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

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-nav__links a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .site-nav-discover {
    margin: 12px 24px 16px;
    min-height: 40px;
    padding: 10px 24px;
    font-size: 15px;
    justify-content: center;
  }

  .site-menu-btn {
    display: block;
  }

  .mk-panel__inner--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mk-panel {
    padding: 56px 20px;
  }

  .mk-service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mk-section {
    padding: 56px 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .site-footer__body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .site-footer__metric {
    padding: 0 0.75rem 0 0;
  }

  .site-footer__metric:nth-child(2n)::after {
    display: none;
  }

  .site-footer__metric:nth-child(odd)::after {
    display: block;
  }

  .site-footer__actions {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__cta-row {
    justify-content: flex-start;
  }

  .site-footer__proof {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer__voice {
    padding: 0 0 1rem;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-footer__voice:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .site-footer__col--nav {
    grid-column: 1 / -1;
    text-align: left;
  }

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

  .site-footer__legal {
    font-size: 0.7rem;
    line-height: 1.55;
    text-align: center;
  }

  .mk-showcase-item {
    min-height: calc(100vh - var(--header-h));
    height: calc(100vh - var(--header-h));
  }

  .fs-page {
    min-height: calc(100vh - var(--header-h));
    height: auto;
    min-height: calc(100dvh - var(--header-h));
  }

  .fs-page__content {
    min-height: calc(100vh - var(--header-h));
    padding-bottom: 48px;
  }

  .fs-page__content .mk-btn + .mk-btn--outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .mk-showcase-item--alt .mk-showcase-overlay {
    text-align: left;
    align-items: flex-start;
  }

  .mk-showcase-item--alt .mk-showcase-title {
    margin-left: 0;
  }

  .mk-showcase-overlay--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .mk-showcase-player {
    width: 100%;
    max-width: 320px;
  }

  .hero-content {
    padding-bottom: 64px;
  }
}
