:root {
  --bg: #070709;
  --bg-soft: #121218;
  --surface: rgba(18, 10, 12, 0.82);
  --surface-strong: rgba(34, 8, 10, 0.9);
  --surface-light: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 112, 112, 0.16);
  --border-strong: rgba(255, 112, 112, 0.3);
  --text: #fff6f3;
  --muted: rgba(255, 240, 235, 0.72);
  --accent: #ff4338;
  --accent-deep: #8f0d12;
  --accent-soft: rgba(255, 67, 56, 0.2);
  --glow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 48px rgba(167, 17, 17, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --liquid-drift-x: 0px;
  --liquid-drift-y: 0px;
  --liquid-grid-y: 0px;
  --liquid-layer-a-x: 0px;
  --liquid-layer-a-y: 0px;
  --liquid-layer-b-x: 0px;
  --liquid-layer-b-y: 0px;
  --liquid-orb-one-x: 0px;
  --liquid-orb-one-y: 0px;
  --liquid-orb-two-x: 0px;
  --liquid-orb-two-y: 0px;
  --liquid-orb-three-x: 0px;
  --liquid-orb-three-y: 0px;
  --liquid-tilt: 0deg;
  --liquid-scale: 1;
  --liquid-scale-strong: 1;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 18, 18, 0.98) rgba(0, 0, 0, 0.98);
  scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.98);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(5, 5, 5, 0.98));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.98), rgba(10, 10, 10, 0.98));
}

html::-webkit-scrollbar-corner {
  background: #000;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 60, 60, 0.16), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(180, 0, 0, 0.18), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(255, 83, 64, 0.12), transparent 24%),
    linear-gradient(180deg, #070709 0%, #0c0b10 45%, #070709 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20rem -10vw;
  z-index: -3;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(6, 5, 7, 0.92)),
    url("images/container15.jpg") center/cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
  transform: translate3d(var(--liquid-drift-x), var(--liquid-drift-y), 0) scale(var(--liquid-scale));
  transform-origin: center top;
  filter: saturate(1) contrast(1);
  transition:
    transform 1680ms var(--easing),
    opacity 560ms ease,
    filter 560ms ease;
}

body::after {
  content: "";
  position: fixed;
  inset: -14rem -8vw;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(8, 7, 10, 0.12), rgba(8, 7, 10, 0.32)),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  background-position: center top, center top, center top;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate3d(0, calc(var(--liquid-grid-y) * 0.72), 0);
  opacity: 0.56;
  transition:
    transform 1860ms var(--easing),
    opacity 560ms ease;
}

body.is-liquid-scrolling::before {
  opacity: 0.48;
  filter: saturate(1.18) contrast(1.08);
}

body.is-liquid-scrolling::after {
  opacity: 0.74;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 56% 44% 48% 52% / 44% 52% 48% 56%;
  mix-blend-mode: screen;
  transition:
    transform 2060ms var(--easing),
    opacity 620ms ease,
    filter 620ms ease;
}

.site-shell::before {
  top: 9vh;
  left: -10vw;
  width: clamp(18rem, 32vw, 30rem);
  height: clamp(18rem, 32vw, 30rem);
  background: radial-gradient(circle at 32% 32%, rgba(255, 126, 120, 0.18), rgba(255, 78, 68, 0.1) 36%, transparent 70%);
  filter: blur(54px);
  opacity: 0.22;
  transform: translate3d(var(--liquid-layer-a-x), var(--liquid-layer-a-y), 0) scale(var(--liquid-scale-strong)) rotate(var(--liquid-tilt));
}

.site-shell::after {
  top: 44vh;
  right: -12vw;
  width: clamp(18rem, 34vw, 32rem);
  height: clamp(18rem, 34vw, 32rem);
  background: radial-gradient(circle at 62% 38%, rgba(255, 110, 98, 0.14), rgba(125, 22, 18, 0.08) 40%, transparent 72%);
  filter: blur(62px);
  opacity: 0.17;
  transform: translate3d(var(--liquid-layer-b-x), var(--liquid-layer-b-y), 0) scale(var(--liquid-scale)) rotate(var(--liquid-tilt));
}

body.is-liquid-scrolling .site-shell::before {
  opacity: 0.46;
  filter: blur(78px);
}

body.is-liquid-scrolling .site-shell::after {
  opacity: 0.34;
  filter: blur(88px);
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.42;
  mix-blend-mode: screen;
  transition:
    top 1780ms var(--easing),
    right 1780ms var(--easing),
    bottom 1780ms var(--easing),
    left 1780ms var(--easing),
    opacity 620ms ease,
    filter 620ms ease;
}

.ambient-orb--one {
  top: calc(8rem + var(--liquid-orb-one-y));
  left: calc(-6rem + var(--liquid-orb-one-x));
  width: 18rem;
  height: 18rem;
  background: rgba(255, 52, 52, 0.28);
  animation: driftOne 16s ease-in-out infinite;
}

.ambient-orb--two {
  top: calc(28rem + var(--liquid-orb-two-y));
  right: calc(-5rem + var(--liquid-orb-two-x));
  width: 16rem;
  height: 16rem;
  background: rgba(150, 20, 20, 0.26);
  animation: driftTwo 20s ease-in-out infinite;
}

.ambient-orb--three {
  bottom: calc(8rem + var(--liquid-orb-three-y));
  left: calc(45% + var(--liquid-orb-three-x));
  width: 14rem;
  height: 14rem;
  background: rgba(255, 120, 120, 0.18);
  animation: driftThree 14s ease-in-out infinite;
}

body.is-liquid-scrolling .ambient-orb {
  opacity: 0.78;
  filter: blur(118px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.9), rgba(7, 7, 9, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar__inner,
.section,
.footer {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-self: start;
}

.brand__name {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
}

.brand__meta {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar__socials {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.topbar__x {
  --x-logo-url: url("images/x-logo.png");
  justify-self: end;
  position: relative;
  width: 3.38rem;
  height: 2.88rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: visible;
  isolation: isolate;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16))
    drop-shadow(0 0 16px rgba(255, 94, 80, 0.1));
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.topbar__x::before,
.topbar__x::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.topbar__x::before {
  inset: -7%;
  z-index: 0;
  opacity: 0.26;
  background: center / contain no-repeat var(--x-logo-url);
  filter:
    brightness(0)
    saturate(100%)
    invert(22%)
    sepia(66%)
    saturate(2140%)
    hue-rotate(342deg)
    brightness(108%)
    contrast(102%)
    blur(8px);
  transform: scale(1.08);
}

.topbar__x::after {
  z-index: 2;
  opacity: 0.3;
  -webkit-mask-image: var(--x-logo-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--x-logo-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 76% 82%, rgba(255, 126, 106, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 30%, rgba(86, 24, 24, 0.18) 66%, rgba(28, 9, 11, 0.26));
  filter: saturate(1.08);
  transform: scale(1);
  mix-blend-mode: screen;
}

.topbar__x img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  transform: scale(1.015);
  filter:
    brightness(0)
    saturate(100%)
    invert(15%)
    sepia(54%)
    saturate(1560%)
    hue-rotate(340deg)
    brightness(78%)
    contrast(101%);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.topbar__x:hover,
.topbar__x:focus-visible {
  transform: translateY(-1px) scale(1.03);
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18))
    drop-shadow(0 0 22px rgba(255, 96, 82, 0.18))
    drop-shadow(0 0 34px rgba(255, 84, 70, 0.1));
}

.topbar__x:hover::before,
.topbar__x:focus-visible::before {
  opacity: 0.42;
  transform: scale(1.095);
  filter:
    brightness(0)
    saturate(100%)
    invert(22%)
    sepia(72%)
    saturate(2340%)
    hue-rotate(342deg)
    brightness(112%)
    contrast(102%)
    blur(10px);
}

.topbar__x:hover::after,
.topbar__x:focus-visible::after {
  opacity: 0.42;
  filter: saturate(1.1);
}

.topbar__x:hover img,
.topbar__x:focus-visible img {
  opacity: 1;
  transform: scale(1.02);
  filter:
    brightness(0)
    saturate(100%)
    invert(17%)
    sepia(60%)
    saturate(1700%)
    hue-rotate(340deg)
    brightness(82%)
    contrast(101%);
}

.topbar__discord {
  --discord-logo-url: url("images/discord-logo.png");
  justify-self: end;
  position: relative;
  width: 3.38rem;
  height: 2.88rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: visible;
  isolation: isolate;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16))
    drop-shadow(0 0 14px rgba(255, 94, 80, 0.08));
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.topbar__discord::before,
.topbar__discord::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.topbar__discord::before {
  inset: -7%;
  z-index: 0;
  opacity: 0.22;
  background: center / contain no-repeat var(--discord-logo-url);
  filter:
    brightness(0)
    saturate(100%)
    invert(22%)
    sepia(66%)
    saturate(2140%)
    hue-rotate(342deg)
    brightness(108%)
    contrast(102%)
    blur(8px);
  transform: scale(1.03);
}

.topbar__discord::after {
  z-index: 2;
  opacity: 0.22;
  -webkit-mask-image: var(--discord-logo-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--discord-logo-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    radial-gradient(circle at 76% 82%, rgba(255, 126, 106, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 30%, rgba(86, 24, 24, 0.18) 66%, rgba(28, 9, 11, 0.26));
  filter: saturate(1.05);
  transform: translateY(-1px) scale(0.986);
  mix-blend-mode: screen;
}

.topbar__discord img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  filter:
    brightness(0)
    saturate(100%)
    invert(15%)
    sepia(54%)
    saturate(1560%)
    hue-rotate(340deg)
    brightness(78%)
    contrast(101%);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.topbar__discord:hover,
.topbar__discord:focus-visible {
  transform: translateY(-1px) scale(1.03);
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18))
    drop-shadow(0 0 18px rgba(255, 96, 82, 0.14))
    drop-shadow(0 0 28px rgba(255, 84, 70, 0.08));
}

.topbar__discord:hover::before,
.topbar__discord:focus-visible::before {
  opacity: 0.3;
  transform: scale(1.045);
  filter:
    brightness(0)
    saturate(100%)
    invert(22%)
    sepia(72%)
    saturate(2340%)
    hue-rotate(342deg)
    brightness(112%)
    contrast(102%)
    blur(9px);
}

.topbar__discord:hover::after,
.topbar__discord:focus-visible::after {
  opacity: 0.3;
  filter: saturate(1.08);
}

.topbar__discord:hover img,
.topbar__discord:focus-visible img {
  opacity: 1;
  filter:
    brightness(0)
    saturate(100%)
    invert(17%)
    sepia(60%)
    saturate(1700%)
    hue-rotate(340deg)
    brightness(82%)
    contrast(101%);
}

.nav a {
  position: relative;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.button--primary {
  color: var(--text);
  background: linear-gradient(135deg, #c11916, #ff4338);
  box-shadow: 0 16px 38px rgba(186, 21, 21, 0.3);
}

.button--primary:hover {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255, 146, 136, 0.22), transparent 34%),
    linear-gradient(135deg, #c11916, #ff4338);
  box-shadow:
    0 18px 42px rgba(186, 21, 21, 0.34),
    0 0 0 1px rgba(255, 148, 140, 0.16),
    0 0 24px rgba(255, 73, 56, 0.28),
    0 0 58px rgba(255, 73, 56, 0.18);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.button--secondary:hover {
  border-color: rgba(255, 196, 190, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 110%, rgba(255, 100, 86, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 150, 140, 0.1),
    0 0 24px rgba(255, 82, 68, 0.14);
}

.button--ghost {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.button--ghost:hover {
  color: var(--text);
  border-color: rgba(255, 196, 190, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(255, 109, 94, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 138, 128, 0.08),
    0 0 20px rgba(255, 82, 68, 0.12);
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 200, 195, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.heading {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.subheading {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 40rem;
}

.hero {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 2.6rem;
}

.hero__copy {
  display: grid;
  gap: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.5rem;
}

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

.proof-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition:
    transform 560ms var(--easing),
    border-color 220ms ease,
    background 220ms ease;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: auto auto -35% -18%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 67, 56, 0.16), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.72;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 620ms var(--easing),
    opacity 220ms ease;
}

.proof-card:hover {
  transform: translateY(-4px) scale(1.032);
  border-color: rgba(255, 190, 185, 0.2);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.proof-card:hover::before {
  opacity: 0.92;
  transform: scale(1.14);
}

.proof-card__value {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.proof-card__label {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 32rem);
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms var(--easing);
}

.portrait-wrap::before,
.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 10% 5%;
  border-radius: 39% 61% 47% 53% / 38% 40% 60% 62%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 67, 56, 0.2), rgba(255, 67, 56, 0.02));
  filter: blur(24px);
  animation: liquidSpin 16s linear infinite;
  z-index: 0;
  transform: scale(1);
  transition:
    transform 620ms var(--easing),
    opacity 320ms ease,
    filter 320ms ease;
}

.portrait-wrap::after {
  inset: 5% 10%;
  opacity: 0.64;
  animation-direction: reverse;
  animation-duration: 22s;
}

.portrait-shell {
  position: relative;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  padding: 0.7rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 38px rgba(255, 255, 255, 0.3),
    0 0 90px rgba(255, 67, 56, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
  z-index: 1;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 620ms var(--easing),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 420ms ease;
}

.portrait-shell::before,
.portrait-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.portrait-shell::before {
  inset: 0.7rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.1), transparent 24%);
  opacity: 0.38;
  transform: translate3d(-8px, 10px, 0) scale(0.98);
  mix-blend-mode: screen;
  transition:
    transform 720ms var(--easing),
    opacity 320ms ease;
}

.portrait-shell::after {
  inset: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.22;
  transform: scale(0.985);
  transition:
    transform 720ms var(--easing),
    opacity 320ms ease,
    border-color 320ms ease;
}

.portrait-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 620ms var(--easing),
    filter 280ms ease;
}

.portrait-wrap:hover {
  transform: translate3d(0, -10px, 0);
}

.portrait-wrap:hover::before {
  opacity: 0.82;
  transform: scale(1.05);
  filter: blur(28px);
}

.portrait-wrap:hover::after {
  opacity: 0.7;
  transform: scale(1.03);
  filter: blur(30px);
}

.portrait-wrap:hover .portrait-shell {
  transform: scale(1.038);
  border-color: rgba(255, 214, 210, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 44px rgba(255, 255, 255, 0.32),
    0 0 98px rgba(255, 67, 56, 0.26);
}

.portrait-wrap:hover .portrait-shell::before {
  opacity: 0.62;
  transform: translate3d(4px, -5px, 0) scale(1.03);
}

.portrait-wrap:hover .portrait-shell::after {
  opacity: 0.42;
  transform: scale(1.015);
  border-color: rgba(255, 255, 255, 0.1);
}

.portrait-wrap:hover .portrait-shell img {
  transform: scale(1);
  filter: saturate(0.98) contrast(1.04);
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(10, 9, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--glow);
  z-index: 2;
}

.floating-note strong {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 208, 204, 0.92);
}

.floating-note span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.floating-note--player {
  top: 2.9rem;
  left: 0.25rem;
  width: min(14.8rem, 39vw);
  display: grid;
  gap: 0.38rem;
  padding: 0.78rem 0.8rem 0.72rem;
  min-height: auto;
  overflow: hidden;
  position: absolute;
  isolation: isolate;
  animation: bob 6.5s ease-in-out infinite;
}

.hero-player__stage {
  display: grid;
  min-height: 100%;
  position: relative;
  z-index: 1;
}

#hero-player {
  animation: bob 6.5s ease-in-out infinite;
  scale: 1;
  transition: scale 620ms var(--easing);
}

#hero-player:hover,
#hero-player:has(:focus-visible) {
  scale: 1.032;
}

.hero-player__intro,
.hero-player__content {
  grid-area: 1 / 1;
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease;
}

.hero-player__intro {
  display: grid;
  align-content: center;
  gap: 0.58rem;
  min-height: 100%;
  z-index: 2;
}

.hero-player__intro-eyebrow {
  color: rgba(255, 208, 204, 0.88);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-player__intro-copy {
  margin: 0;
  color: rgba(255, 242, 239, 0.92);
  font-size: 0.86rem;
  line-height: 1.35;
  max-width: 13rem;
}

.hero-player__intro-action {
  width: fit-content;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.92rem;
  border: 1px solid rgba(255, 169, 160, 0.14);
  border-radius: 999px;
  color: #fff5f2;
  background:
    linear-gradient(180deg, rgba(255, 93, 80, 0.18), rgba(255, 93, 80, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.hero-player__intro-action:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 189, 180, 0.2);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 120%, rgba(255, 98, 82, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 93, 80, 0.23), rgba(255, 93, 80, 0.1)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 150, 140, 0.08),
    0 0 22px rgba(255, 84, 70, 0.16);
  filter: saturate(1.06);
}

.hero-player__intro-action svg {
  width: 0.88rem;
  height: 0.88rem;
  fill: currentColor;
  opacity: 0.95;
}

.hero-player__content {
  display: grid;
  gap: 0.38rem;
  z-index: 1;
}

.hero-player:not(.is-started) .hero-player__content {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter: blur(6px);
  pointer-events: none;
}

.hero-player.is-started .hero-player__intro {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  filter: blur(6px);
  pointer-events: none;
}

.hero-player__main {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
  padding-right: 0;
}

.hero-player__header {
  color: rgba(255, 208, 204, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-player__track {
  color: rgba(255, 242, 239, 0.96);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding-top: 0;
  margin-top: 0.05rem;
  margin-bottom: -0.16rem;
}

.hero-player__button {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff8f6;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.hero-player__button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 194, 188, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(255, 88, 74, 0.14);
  filter: saturate(1.05);
}

.hero-player__button svg {
  width: 0.72rem;
  height: 0.72rem;
  fill: currentColor;
}

.hero-player__button--play {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 6px rgba(255, 255, 255, 0.035),
    0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero-player__button--play:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 6px rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(255, 108, 92, 0.18);
}

.hero-player__button--play svg {
  width: 0.86rem;
  height: 0.86rem;
}

#heroPauseIcon {
  display: none;
}

.hero-player.is-playing #heroPlayIcon {
  display: none;
}

.hero-player.is-playing #heroPauseIcon {
  display: block;
}

.hero-player__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  color: rgba(255, 239, 236, 0.7);
  font-size: 0.66rem;
  margin-top: -0.18rem;
  margin-bottom: -0.16rem;
}

.hero-player__seek {
  width: 100%;
  appearance: none;
  height: 5px;
  margin-top: -0.12rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.92) var(--seek-progress, 0%),
    rgba(255, 255, 255, 0.18) var(--seek-progress, 0%),
    rgba(255, 255, 255, 0.18) 100%
  );
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-player__seek::-webkit-slider-thumb {
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.hero-player__seek::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.hero-player__volume-shell {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.34rem;
  padding: 0;
  width: 100%;
  height: auto;
  margin-top: -0.02rem;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.hero-player__volume-icon {
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 248, 246, 0.92);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
  flex: 0 0 auto;
}

.hero-player__volume-icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-player__volume-icon svg {
  width: 0.66rem;
  height: 0.66rem;
  fill: currentColor;
}

#heroVolumeMuteIcon {
  display: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-player.is-muted #heroVolumeOnIcon {
  display: none;
}

.hero-player.is-muted #heroVolumeMuteIcon {
  display: block;
}

.hero-player__volume-slider {
  appearance: none;
  width: 3.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.92) var(--volume-progress, 0%),
    rgba(255, 255, 255, 0.18) var(--volume-progress, 0%),
    rgba(255, 255, 255, 0.18) 100%
  );
  cursor: pointer;
  margin: 0;
  transform: none;
}

.hero-player__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.hero-player__volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.hero-player__volume-slider::-moz-range-track {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.floating-player-dock {
  position: fixed;
  right: 1.55rem;
  bottom: 1.15rem;
  z-index: 45;
  isolation: isolate;
  contain: layout;
  overflow: visible;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(1.15rem) scale(0.92);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-player-dock.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-player-dock__inner {
  --dock-compact-width: min(12.25rem, calc(100vw - 3.8rem));
  --dock-expanded-width: min(13.6rem, calc(100vw - 3.8rem));
  --dock-compact-padding-top: 0.72rem;
  --dock-expanded-padding-top: 2rem;
  position: relative;
  top: auto;
  left: auto;
  width: var(--dock-compact-width);
  padding-top: var(--dock-compact-padding-top);
  scale: 1.12;
  animation: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  contain: none;
  transform: scale(1);
  transform-origin: right bottom;
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms var(--easing),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(12, 7, 9, 0.92);
  border-color: rgba(255, 178, 170, 0.12);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(146, 26, 18, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-player--dock.is-started {
  width: var(--dock-expanded-width);
  padding-top: var(--dock-expanded-padding-top);
  scale: 1;
}

.floating-player-dock__inner:hover,
.floating-player-dock__inner:has(:focus-visible) {
  transform: scale(1.032);
}

.floating-player-dock__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 4;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.hero-player--dock.is-started .floating-player-dock__close {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.floating-player-dock__close svg {
  width: 0.72rem;
  height: 0.72rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

#dockPauseIcon,
#dockVolumeMuteIcon {
  display: none;
}

#dockVolumeMuteIcon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-player--dock.is-playing #dockPlayIcon {
  display: none;
}

.hero-player--dock.is-playing #dockPauseIcon {
  display: block;
}

.hero-player--dock.is-muted #dockVolumeOnIcon {
  display: none;
}

.hero-player--dock.is-muted #dockVolumeMuteIcon {
  display: block;
}

.hero-player--dock .hero-player__intro-copy {
  max-width: 11.2rem;
}

.floating-note--left {
  top: 8%;
  left: -4%;
  max-width: 12rem;
  animation: bob 6.5s ease-in-out infinite;
}

.floating-note--right {
  right: -3%;
  bottom: 10%;
  max-width: 13.2rem;
  animation: bob 7.2s ease-in-out infinite reverse;
}

.hero__stripe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 224, 220, 0.76);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__stripe span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__stripe span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.75;
}

.work-grid {
  display: grid;
  gap: 1.5rem;
}

.project {
  --surface-translate-y: 0px;
  --surface-scale: 1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(20, 8, 10, 0.92), rgba(34, 8, 8, 0.88));
  box-shadow: var(--glow);
  overflow: hidden;
  transform-origin: center;
  will-change: transform;
  transform: translate3d(0, var(--surface-translate-y), 0) scale(var(--surface-scale));
  transition:
    transform 720ms var(--easing),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 420ms ease;
}

.project::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 67, 56, 0.12), transparent 66%);
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.72;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 700ms var(--easing),
    opacity 220ms ease;
}

.project:hover {
  --surface-translate-y: -5px;
  --surface-scale: 1.015;
  border-color: rgba(255, 190, 185, 0.2);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(20, 8, 10, 0.92), rgba(34, 8, 8, 0.88));
}

.project:hover::before {
  opacity: 0.92;
  transform: scale(1.12);
}

.project--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.project--reverse .project__media {
  order: 2;
}

.project--reverse .project__copy {
  order: 1;
}

.project__media {
  position: relative;
  min-height: 22rem;
}

.video-card {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-origin: center;
  will-change: transform;
  transition:
    transform 620ms var(--easing),
    box-shadow 320ms ease;
}

.video-card:hover {
  transform: translateY(-3px) scale(1.008);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 42px rgba(0, 0, 0, 0.28);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.5)),
    linear-gradient(0deg, rgba(6, 4, 6, 0.62), transparent 38%);
  pointer-events: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.video-trigger__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 67, 56, 0.92);
  box-shadow: 0 0 0 10px rgba(255, 67, 56, 0.16);
  z-index: 1;
}

.video-trigger__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.3rem;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.08rem solid white;
}

.video-trigger__meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  color: rgba(255, 243, 239, 0.92);
  text-align: left;
  font-size: 0.88rem;
}

.video-trigger__meta strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.project__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-width: 0;
}

.project__kicker {
  color: rgba(255, 204, 200, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project__title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.project__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 240, 236, 0.88);
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform: translateY(0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition:
    transform 560ms var(--easing),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 320ms ease;
}

.pill::before {
  content: "";
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8072, #ff4338);
  box-shadow: 0 0 12px rgba(255, 67, 56, 0.8);
  transition:
    transform 560ms var(--easing),
    box-shadow 220ms ease;
}

.pill::after {
  content: "";
  position: absolute;
  inset: auto auto -85% -8%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 67, 56, 0.17), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.68;
  transform: scale(1);
  transform-origin: center;
  z-index: 0;
  transition:
    transform 620ms var(--easing),
    opacity 220ms ease;
}

.pill:hover {
  transform: translateY(-3px) scale(1.028);
  border-color: rgba(255, 190, 185, 0.2);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pill:hover::before {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(255, 67, 56, 0.9);
}

.pill:hover::after {
  opacity: 0.92;
  transform: scale(1.14);
}

.project__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.project__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.project--plastic-scot .project__copy {
  gap: 1.25rem;
}

.project--plastic-scot .project__stats {
  display: block;
  width: 100%;
}

.project--plastic-scot .project__stats .pill {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project--plastic-scot .project__stats .pill::before {
  width: 0.62rem;
  height: 0.62rem;
}

.project--plastic-scot .project__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  padding-top: 0.1rem;
}

.project--plastic-scot .project__links .button {
  width: 100%;
  min-height: 4.25rem;
  padding: 0 1.6rem;
  font-size: 1.08rem;
}

.project--novella .project__copy {
  gap: 1.25rem;
}

.project--novella .project__stats {
  display: block;
  width: 100%;
}

.project--novella .project__stats .pill {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project--novella .project__stats .pill::before {
  width: 0.62rem;
  height: 0.62rem;
}

.project--novella .project__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  padding-top: 0.1rem;
}

.project--novella .project__links .button {
  width: 100%;
  min-height: 4.25rem;
  padding: 0 1.6rem;
  font-size: 1.08rem;
}

.mini-grid__feature {
  grid-column: 1 / -1;
}

.project--duo {
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.project--duo .project__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: 0;
  align-items: start;
}

.project--duo .video-card {
  min-height: 18rem;
}

.project--duo .project__copy {
  justify-items: center;
  align-content: end;
  gap: 0;
  text-align: center;
}

.project--duo .project__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.project--talking-head {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.project--talking-head .project__media {
  min-height: 0;
}

.talking-head__video-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border-radius: calc(var(--radius-xl) - 8px);
  background: #111;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 44px rgba(0, 0, 0, 0.28);
  transform-origin: center;
  will-change: transform;
  transition:
    transform 620ms var(--easing),
    box-shadow 320ms ease;
}

.talking-head__video-shell:hover {
  transform: translateY(-3px) scale(1.008);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(0, 0, 0, 0.32);
}

.talking-head__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
  pointer-events: none;
}

.talking-head__controls {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(3.8rem, 6rem);
  gap: 0.56rem;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.42rem 0.5rem;
  border: 1px solid rgba(255, 236, 232, 0.14);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(42, 18, 20, 0.82), rgba(20, 10, 12, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.65rem, 0);
  transition:
    opacity 260ms ease,
    transform 420ms var(--easing);
}

.talking-head__video-shell:hover .talking-head__controls,
.talking-head__video-shell:focus-within .talking-head__controls {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.talking-head__button {
  width: 1.78rem;
  height: 1.78rem;
  border: 1px solid rgba(255, 236, 232, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: #fff8f5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 67, 56, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.talking-head__button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 230, 226, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 67, 56, 0.32);
}

.talking-head__icon {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.talking-head__icon--mute {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talking-head__icon--fullscreen {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talking-head__fullscreen-toggle {
  display: none;
  position: absolute;
}

.talking-head__icon--play,
.talking-head__icon--volume {
  display: none;
}

.talking-head__video-shell.is-paused .talking-head__icon--play,
.talking-head__video-shell:not(.is-muted) .talking-head__icon--volume {
  display: block;
}

.talking-head__video-shell.is-paused .talking-head__icon--pause,
.talking-head__video-shell:not(.is-muted) .talking-head__icon--mute {
  display: none;
}

.talking-head__seek,
.talking-head__volume {
  width: 100%;
  height: 0.34rem;
  appearance: none;
  border-radius: 999px;
  outline: 0;
  cursor: pointer;
  touch-action: none;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.94) var(--progress, 0%),
      rgba(255, 255, 255, 0.18) var(--progress, 0%));
}

.talking-head__volume {
  --progress: 0%;
}

.talking-head__seek::-webkit-slider-thumb,
.talking-head__volume::-webkit-slider-thumb {
  appearance: none;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  border: 0;
  background: #fff8f5;
  box-shadow: 0 0 0 4px rgba(255, 67, 56, 0.16);
}

.talking-head__seek::-moz-range-thumb,
.talking-head__volume::-moz-range-thumb {
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  border: 0;
  background: #fff8f5;
  box-shadow: 0 0 0 4px rgba(255, 67, 56, 0.16);
}

@media (hover: none) {
  .talking-head__controls {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
  }

  .talking-head__video-shell.is-touch-controls-visible .talking-head__controls,
  .talking-head__video-shell:focus-within .talking-head__controls {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 640px) and (hover: none) {
  .talking-head__controls {
    inset: 0;
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 30%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 42%);
    box-shadow: none;
    backdrop-filter: none;
  }

  .talking-head__button {
    width: 1.52rem;
    height: 1.52rem;
    color: rgba(255, 248, 245, 0.94);
    border-color: rgba(255, 236, 232, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
      rgba(20, 10, 12, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 18px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
  }

  .talking-head__icon {
    width: 0.78rem;
    height: 0.78rem;
  }

  .talking-head__play-toggle .talking-head__icon {
    width: 0.62rem;
    height: 0.62rem;
  }

  .talking-head__play-toggle {
    position: absolute;
    left: 0.72rem;
    bottom: 0.66rem;
    width: 1.52rem;
    height: 1.52rem;
    z-index: 4;
    color: rgba(255, 248, 245, 0.96);
    border-color: rgba(255, 236, 232, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
      rgba(136, 55, 52, 0.86);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 5px 12px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
  }

  .talking-head__play-toggle:hover {
    transform: none;
    border-color: rgba(255, 236, 232, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
      rgba(136, 55, 52, 0.86);
  }

  .talking-head__mute-toggle {
    position: absolute;
    top: 0.58rem;
    right: 0.58rem;
  }

  .talking-head__fullscreen-toggle {
    position: absolute;
    display: grid;
    bottom: 0.66rem;
    right: 0.58rem;
  }

  .talking-head__seek {
    position: absolute;
    left: 2.52rem;
    right: 2.52rem;
    bottom: 0.66rem;
    width: auto;
    height: 1.32rem;
    padding: 0 0.48rem;
    border-radius: 999px;
    background-color: rgba(20, 10, 12, 0.66);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 18px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
      linear-gradient(90deg,
        rgba(255, 255, 255, 0.94) var(--progress, 0%),
        rgba(255, 255, 255, 0.24) var(--progress, 0%)) center / calc(100% - 0.96rem) 0.26rem no-repeat,
      rgba(20, 10, 12, 0.66);
  }

  .talking-head__seek::-webkit-slider-thumb {
    width: 0.64rem;
    height: 0.64rem;
    box-shadow: 0 0 0 3px rgba(255, 67, 56, 0.14);
  }

  .talking-head__seek::-moz-range-thumb {
    width: 0.64rem;
    height: 0.64rem;
    box-shadow: 0 0 0 3px rgba(255, 67, 56, 0.14);
  }

  .talking-head__volume {
    display: none;
  }
}

.project--talking-head .project__copy {
  justify-items: center;
  gap: 0;
  text-align: center;
}

.project--talking-head .project__title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
}

.duo-feature__item {
  display: grid;
  gap: 0.9rem;
  --surface-translate-y: 0px;
  --surface-scale: 1;
  transform-origin: center;
  will-change: transform;
  transform: translate3d(0, var(--surface-translate-y), 0) scale(var(--surface-scale));
  transition: transform 700ms var(--easing);
}

.duo-feature__item:hover {
  --surface-translate-y: -4px;
  --surface-scale: 1.012;
}

.duo-feature__actions {
  display: grid;
  gap: 0.8rem;
}

.duo-feature__actions .button {
  width: 100%;
  min-height: 3.85rem;
  padding: 0 1.25rem;
}

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

.mini-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--glow);
}

.mini-card .video-card {
  min-height: 13rem;
  border-radius: 18px;
}

.mini-card__copy {
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
}

.mini-card__copy h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
}

.mini-card__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.liquid-panel {
  --surface-translate-y: 0px;
  --surface-scale: 1;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    linear-gradient(140deg, rgba(29, 12, 16, 0.96), rgba(78, 13, 17, 0.88) 60%, rgba(22, 10, 14, 0.94));
  box-shadow: var(--glow);
  isolation: isolate;
  transform-origin: center;
  will-change: transform;
  transform: translate3d(0, var(--surface-translate-y), 0) scale(var(--surface-scale));
  transition:
    transform 720ms var(--easing),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 420ms ease;
}

.liquid-panel::before,
.liquid-panel::after {
  content: "";
  position: absolute;
  border-radius: 45% 55% 60% 40% / 36% 44% 56% 64%;
  background: radial-gradient(circle, rgba(255, 101, 88, 0.18), transparent 70%);
  filter: blur(18px);
  z-index: 0;
  animation: liquidFloat 12s ease-in-out infinite;
  opacity: 0.78;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 700ms var(--easing),
    opacity 220ms ease;
}

.liquid-panel::before {
  width: 15rem;
  height: 15rem;
  top: -3rem;
  right: -4rem;
}

.liquid-panel::after {
  width: 13rem;
  height: 13rem;
  left: -4rem;
  bottom: -5rem;
  animation-delay: -4s;
}

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

.liquid-panel:hover {
  --surface-translate-y: -5px;
  --surface-scale: 1.015;
  border-color: rgba(255, 190, 185, 0.2);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(140deg, rgba(29, 12, 16, 0.96), rgba(78, 13, 17, 0.88) 60%, rgba(22, 10, 14, 0.94));
}

.liquid-panel:hover::before,
.liquid-panel:hover::after {
  opacity: 0.94;
  transform: scale(1.1);
}

.liquid-panel h3 {
  margin: 0 0 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.liquid-panel p {
  margin: 0;
  color: rgba(255, 239, 236, 0.82);
  line-height: 1.8;
}

.capabilities {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.capability {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.capability::before {
  content: "";
  flex: 0 0 0.6rem;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 67, 56, 0.8);
}

.capability span {
  color: rgba(255, 240, 236, 0.86);
  line-height: 1.7;
}

.testimonial-grid {
  --surface-translate-y: 0px;
  --surface-scale: 1;
  position: relative;
  display: grid;
  gap: 1.2rem;
  max-width: 78rem;
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255, 112, 112, 0.16);
  background:
    linear-gradient(140deg, rgba(29, 12, 16, 0.52), rgba(78, 13, 17, 0.18) 60%, rgba(22, 10, 14, 0.4));
  box-shadow: var(--glow);
  isolation: isolate;
  overflow: hidden;
  transform-origin: center;
  will-change: transform;
  transform: translate3d(0, var(--surface-translate-y), 0) scale(var(--surface-scale));
  transition:
    transform 720ms var(--easing),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 420ms ease;
}

.testimonial-grid::before,
.testimonial-grid::after {
  content: "";
  position: absolute;
  border-radius: 45% 55% 60% 40% / 36% 44% 56% 64%;
  background: radial-gradient(circle, rgba(255, 101, 88, 0.2), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: liquidFloat 12s ease-in-out infinite;
  opacity: 0.8;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 700ms var(--easing),
    opacity 220ms ease;
}

.testimonial-grid::before {
  width: 15rem;
  height: 15rem;
  top: -4rem;
  left: -3rem;
}

.testimonial-grid::after {
  width: 13rem;
  height: 13rem;
  right: -2rem;
  bottom: -4rem;
  animation-delay: -4s;
}

.testimonial-grid > * {
  position: relative;
  z-index: 1;
}

.testimonial-grid:hover {
  --surface-translate-y: -5px;
  --surface-scale: 1.015;
  border-color: rgba(255, 190, 185, 0.2);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(140deg, rgba(29, 12, 16, 0.52), rgba(78, 13, 17, 0.18) 60%, rgba(22, 10, 14, 0.4));
}

.testimonial-grid:hover::before,
.testimonial-grid:hover::after {
  opacity: 0.94;
  transform: scale(1.1);
}

.testimonial {
  --surface-translate-y: 0px;
  --surface-scale: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.7rem 1.8rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(11, 8, 10, 0.72);
  box-shadow: var(--glow);
  transform-origin: center;
  will-change: transform;
  transform: translate3d(0, var(--surface-translate-y), 0) scale(var(--surface-scale));
  transition:
    transform 680ms var(--easing),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 420ms ease;
}

.testimonial:hover {
  --surface-translate-y: -4px;
  --surface-scale: 1.012;
  border-color: rgba(255, 190, 185, 0.2);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(11, 8, 10, 0.72);
}

.testimonial__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

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

.testimonial__body {
  display: grid;
  gap: 0.7rem;
}

.testimonial__name {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.testimonial__quote {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.testimonial__stars {
  color: #ffd659;
  letter-spacing: 0.16em;
  font-size: 1.2rem;
}

.cta {
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.cta-card {
  --surface-translate-y: 0px;
  --surface-scale: 1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  padding: 4.2rem 2rem 2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid rgba(255, 112, 112, 0.22);
  background:
    linear-gradient(145deg, rgba(22, 8, 10, 0.94), rgba(96, 14, 18, 0.84) 55%, rgba(25, 8, 11, 0.94));
  box-shadow: var(--glow);
  isolation: isolate;
  transform-origin: center;
  will-change: transform;
  transform: translate3d(0, var(--surface-translate-y), 0) scale(var(--surface-scale));
  transition:
    transform 760ms var(--easing),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 420ms ease;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -4%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 67, 56, 0.2), transparent 70%);
  filter: blur(22px);
  z-index: 0;
  animation: liquidFloat 14s ease-in-out infinite;
  opacity: 0.82;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 720ms var(--easing),
    opacity 220ms ease;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card:hover {
  --surface-translate-y: -5px;
  --surface-scale: 1.015;
  border-color: rgba(255, 190, 185, 0.24);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(145deg, rgba(22, 8, 10, 0.94), rgba(96, 14, 18, 0.84) 55%, rgba(25, 8, 11, 0.94));
}

.cta-card:hover::before {
  opacity: 0.96;
  transform: scale(1.11);
}

.cta__eyebrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  margin: 0;
  text-align: right;
  z-index: 2;
}

.cta-card h2 {
  margin: 0 0 0.75rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.cta-card p {
  margin: 0;
  color: rgba(255, 239, 236, 0.82);
  line-height: 1.8;
  max-width: 34rem;
}

.cta-copy {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.cta-copy__cookie-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.8rem;
  width: fit-content;
}

.cookie-trigger-wrap {
  position: relative;
  display: inline-flex;
  width: max-content;
}

.cookie-trigger {
  position: relative;
  width: max-content;
  min-width: 14.5rem;
  min-height: 5.15rem;
  padding: 0 2.45rem;
  font-size: 1.22rem;
  font-weight: 800;
  color: #4f2b15;
  border: 1px solid rgba(126, 72, 30, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 236, 192, 0.98), rgba(235, 188, 118, 0.96)),
    #f1c173;
  box-shadow:
    0 14px 30px rgba(53, 22, 5, 0.2),
    inset 0 1px 0 rgba(255, 250, 234, 0.72);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.cookie-trigger:hover {
  border-color: rgba(126, 72, 30, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 241, 205, 1), rgba(241, 196, 128, 0.98)),
    #f3c77b;
  box-shadow:
    0 18px 34px rgba(53, 22, 5, 0.24),
    0 0 0 1px rgba(255, 228, 178, 0.22),
    0 0 24px rgba(255, 193, 108, 0.24),
    0 0 52px rgba(255, 186, 98, 0.16),
    inset 0 1px 0 rgba(255, 250, 234, 0.78);
  filter: saturate(1.04);
}

.cookie-trigger::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(116, 63, 31, 0.76);
  box-shadow:
    16px 10px 0 rgba(116, 63, 31, 0.8),
    34px -4px 0 rgba(116, 63, 31, 0.76),
    52px 8px 0 rgba(116, 63, 31, 0.72),
    78px 1px 0 rgba(116, 63, 31, 0.78),
    95px 12px 0 rgba(116, 63, 31, 0.7);
  pointer-events: none;
}

.cookie-trigger::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(126, 70, 36, 0.76);
  box-shadow:
    -16px -6px 0 rgba(126, 70, 36, 0.78),
    -34px 7px 0 rgba(126, 70, 36, 0.74),
    -56px -2px 0 rgba(126, 70, 36, 0.8),
    -82px 10px 0 rgba(126, 70, 36, 0.72);
  pointer-events: none;
}

.cookie-trigger.is-fired {
  transform: translateY(-1px) scale(0.985);
}

.cookie-trigger.is-tapped:not(.is-fired) {
  transform: translateY(1px) scale(0.982);
}

.cookie-preview {
  position: relative;
  width: 7.2rem;
  height: 7.2rem;
  flex: 0 0 auto;
  opacity: 0;
  transform: translate3d(-1.6rem, 0.9rem, 0) scale(0.72) rotate(-10deg);
  transform-origin: left center;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 0 rgba(255, 195, 96, 0));
}

.cookie-preview::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 210, 126, 0.46), rgba(255, 170, 70, 0.18) 42%, transparent 72%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 420ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-preview.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: drop-shadow(0 12px 24px rgba(53, 22, 5, 0.26));
}

.cookie-preview.is-visible::before {
  opacity: 1;
  transform: scale(1);
}

.cookie-preview.is-animating {
  animation: cookiePreviewFloat 5.6s ease-in-out infinite 820ms;
}

.cookie-preview__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  mix-blend-mode: screen;
  user-select: none;
}

.cta-copy__promo {
  font-size: 1.06rem;
}

.cta-copy__promo span {
  color: #fff2da;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta__actions {
  display: grid;
  gap: 1.2rem;
  width: min(100%, 29rem);
  min-width: 24rem;
  justify-self: end;
  align-self: center;
}

.cta__actions .button {
  width: 100%;
  min-height: 5.6rem;
  justify-content: center;
  padding-inline: 2.4rem;
  font-size: 1.16rem;
  font-weight: 800;
}

.cta__actions .button--primary {
  box-shadow:
    0 18px 36px rgba(255, 54, 46, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta__actions .button--primary:hover {
  box-shadow:
    0 20px 44px rgba(255, 54, 46, 0.34),
    0 0 0 1px rgba(255, 148, 140, 0.16),
    0 0 26px rgba(255, 73, 56, 0.28),
    0 0 62px rgba(255, 73, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.cta__backtotop {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 214, 210, 0.12);
}

.footer {
  padding-bottom: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 231, 226, 0.68);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 245, 243, 0.78);
}

[data-reveal] {
  --reveal-offset-y: 30px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-offset-y) + var(--surface-translate-y, 0px)), 0) scale(var(--surface-scale, 1));
  will-change: transform, opacity;
  transition:
    opacity 780ms var(--easing),
    transform 920ms var(--easing);
}

[data-reveal].is-visible {
  --reveal-offset-y: 0px;
  opacity: 1;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 6, 8, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 60;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__dialog {
  width: min(100%, 74rem);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #08080a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(18px) scale(0.986);
  transition:
    opacity 340ms ease,
    transform 340ms var(--easing);
}

.video-modal.is-open .video-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.video-modal__title {
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.video-modal__close {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 0.98rem;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at top, rgba(255, 68, 68, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(14, 14, 16, 0.96), rgba(8, 8, 10, 1));
}

.video-modal__fallback-card {
  width: min(100%, 34rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.video-modal__fallback-eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 220, 214, 0.72);
}

.video-modal__fallback-title {
  margin: 0 0 0.85rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  color: #fff7f4;
}

.video-modal__fallback-copy {
  margin: 0;
  color: rgba(255, 240, 235, 0.82);
  line-height: 1.7;
}

.video-modal__fallback-copy + .video-modal__fallback-copy {
  margin-top: 0.9rem;
}

.video-modal__fallback-action {
  margin-top: 1.3rem;
  width: 100%;
  justify-content: center;
}

.music-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: min(88vw, 390px);
  min-height: 80px;
  border-radius: 24px;
  border: 1px solid rgba(255, 70, 70, 0.22);
  background:
    linear-gradient(135deg, rgba(40, 0, 0, 0.92), rgba(18, 0, 0, 0.88)),
    rgba(20, 0, 0, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42), 0 0 28px rgba(190, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
  isolation: isolate;
}

.music-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 120, 120, 0.4),
    rgba(255, 60, 60, 0.1),
    rgba(255, 120, 120, 0.16)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.music-widget__liquid {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 70, 70, 0.24), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(255, 0, 0, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 110, 110, 0.12), transparent 36%);
  filter: blur(24px);
  opacity: 0.85;
  z-index: 0;
  animation: liquidFloat 8s ease-in-out infinite;
  transform-origin: center;
}

.music-widget__view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  transition:
    opacity 0.7s var(--easing),
    transform 0.7s var(--easing),
    filter 0.7s var(--easing);
  z-index: 1;
}

.music-widget__prompt {
  color: #fff5f3;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.music-widget__controls {
  gap: 14px;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  filter: blur(10px);
  pointer-events: none;
}

.music-widget.is-active .music-widget__prompt {
  opacity: 0;
  transform: translateY(-16px) scale(0.94);
  filter: blur(12px);
  pointer-events: none;
}

.music-widget.is-active .music-widget__controls {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.music-widget.is-morphing {
  animation: widgetPulse 0.9s var(--easing);
}

.music-widget.is-morphing .music-widget__liquid {
  animation:
    liquidFloat 8s ease-in-out infinite,
    liquidMorph 0.95s var(--easing);
}

.music-widget__toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: white;
  background: linear-gradient(180deg, rgba(255, 72, 72, 0.25), rgba(120, 0, 0, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.music-widget__toggle:hover {
  transform: scale(1.06);
}

.music-widget__toggle:active {
  transform: scale(0.96);
}

.music-widget__toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.music-widget__toggle #pauseIcon {
  display: none;
}

.music-widget.is-playing .music-widget__toggle #playIcon {
  display: none;
}

.music-widget.is-playing .music-widget__toggle #pauseIcon {
  display: block;
}

.music-widget__volume {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: #fff5f3;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.music-widget__volume span {
  white-space: nowrap;
}

.music-widget__volume input[type="range"] {
  width: 100%;
  appearance: none;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #ff3b30 0%,
    #ff3b30 var(--range-progress, 25%),
    rgba(255, 255, 255, 0.92) var(--range-progress, 25%),
    rgba(255, 255, 255, 0.92) 100%
  );
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.music-widget__volume input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff4338;
  border: 0;
  box-shadow: 0 0 0 5px rgba(255, 67, 56, 0.16);
  cursor: pointer;
}

.music-widget__volume input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff4338;
  border: 0;
  box-shadow: 0 0 0 5px rgba(255, 67, 56, 0.16);
  cursor: pointer;
}

@keyframes driftOne {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2rem, 1.2rem, 0) scale(1.05); }
}

@keyframes driftTwo {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-1.4rem, 2rem, 0) scale(1.08); }
}

@keyframes driftThree {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0.8rem, -1.2rem, 0) scale(0.96); }
}

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

@keyframes liquidSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.06);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes liquidFloat {
  0%, 100% {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -1.5%, 0) scale(1.06);
  }
}

@keyframes discordGlassGlow {
  0% {
    transform: translate3d(-1.1%, 0.4%, 0) scale(0.98);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(1.2%, -0.9%, 0) scale(1.04);
    opacity: 0.82;
  }
  100% {
    transform: translate3d(-0.4%, 1%, 0) scale(1);
    opacity: 0.74;
  }
}

@keyframes discordGlassDrift {
  0% {
    transform: translate3d(-1.1%, 0.6%, 0) scale(0.992);
  }
  50% {
    transform: translate3d(1.4%, -1.1%, 0) scale(1.008);
  }
  100% {
    transform: translate3d(-0.3%, 1%, 0) scale(0.996);
  }
}

@keyframes liquidMorph {
  0% {
    transform: scale(1) translateY(0);
    filter: blur(24px);
  }
  35% {
    transform: scale(1.08, 0.92) translateY(-2px);
    filter: blur(28px);
  }
  65% {
    transform: scale(0.96, 1.08) translateY(2px);
    filter: blur(32px);
  }
  100% {
    transform: scale(1) translateY(0);
    filter: blur(24px);
  }
}

@keyframes widgetPulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.02, 0.985); }
  70% { transform: scale(0.992, 1.015); }
  100% { transform: scale(1); }
}

@keyframes cookiePreviewFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -0.38rem, 0) scale(1.025) rotate(1deg);
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .project,
  .project--reverse,
  .proof-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .project--reverse .project__media,
  .project--reverse .project__copy {
    order: initial;
  }

  .hero__visual {
    padding-top: 1rem;
  }

  .floating-note--left {
    left: 0;
  }

  .floating-note--right {
    right: 0;
  }

  .cta-card {
    align-items: start;
  }

  .cta__actions {
    justify-self: stretch;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .floating-player-dock {
    display: none;
    right: 0.75rem;
    left: auto;
    bottom: 0.68rem;
  }

  .floating-player-dock__inner {
    --dock-compact-width: min(10.95rem, calc(100vw - 4rem));
    --dock-expanded-width: min(11.85rem, calc(100vw - 4rem));
    --dock-compact-padding-top: 0.95rem;
    --dock-expanded-padding-top: 1.78rem;
    padding: var(--dock-compact-padding-top) 0.72rem 0.66rem;
  }

  .floating-player-dock__close {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .cta__eyebrow {
    position: static;
    grid-column: 1 / -1;
    justify-self: start;
    margin: 0 0 0.35rem;
    text-align: left;
  }

  .topbar__inner {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
  }

  .topbar__socials {
    gap: 0.22rem;
    flex-shrink: 0;
  }

  .topbar__x,
  .topbar__discord {
    width: 2.92rem;
    height: 2.48rem;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__proof,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    width: min(100%, 25rem);
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }

  .portrait-wrap::before,
  .portrait-wrap::after {
    inset: auto;
    left: 50%;
    right: auto;
    width: min(calc(100vw - 3.5rem), 21rem);
    height: min(calc(100vw - 3.5rem), 21rem);
    border-radius: 50%;
    animation: none;
    transform: translateX(-50%);
  }

  .portrait-wrap::before {
    bottom: 0.15rem;
  }

  .portrait-wrap::after {
    bottom: 0.55rem;
    opacity: 0.58;
  }

  .floating-note {
    position: static;
    width: 100%;
    max-width: none;
    animation: none;
  }

  .floating-note--player {
    position: relative;
    order: -1;
    width: min(100%, 16.2rem);
    min-height: auto;
    align-self: stretch;
    margin-inline: auto;
    padding: 0.72rem 0.76rem 0.68rem;
    top: auto;
    left: auto;
  }

  .floating-player-dock .floating-player-dock__inner {
    width: var(--dock-compact-width);
    padding-top: var(--dock-compact-padding-top);
  }

  .floating-player-dock .hero-player--dock.is-started {
    width: var(--dock-expanded-width);
    padding-top: var(--dock-expanded-padding-top);
  }

  .hero-player__volume-shell {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 0.08rem;
  }

  .hero__visual {
    justify-items: center;
  }

  .portrait-shell {
    width: min(calc(100vw - 4.5rem), 18.75rem);
    height: min(calc(100vw - 4.5rem), 18.75rem);
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
  }

  .portrait-shell img {
    aspect-ratio: 1 / 1;
  }

  .hero-player__intro-copy {
    max-width: none;
  }

  .hero-player--dock .hero-player__intro-copy {
    max-width: 9.5rem;
  }

  .proof-card,
  .project,
  .liquid-panel,
  .testimonial,
  .cta-card {
    border-radius: 24px;
  }

  .project,
  .liquid-panel,
  .cta-card {
    padding: 1.25rem;
  }

  .project__media {
    min-height: 16rem;
  }

  .hero__actions,
  .project__links,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-copy__cookie-row {
    align-items: center;
    flex-wrap: wrap;
  }

  .project--plastic-scot .project__links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project--novella .project__links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project--duo .project__media,
  .duo-feature__actions {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 8rem;
  }

  .music-widget {
    right: 14px;
    bottom: 14px;
    width: min(92vw, 360px);
    min-height: 106px;
    border-radius: 22px;
  }

  .music-widget__view {
    padding: 16px;
  }

  .music-widget__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .music-widget__volume {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .music-widget__volume span {
    text-align: center;
  }

  .music-widget__toggle {
    align-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
