:root {
  --bg: #fbfaf6;
  --bg-warm: #fffdf8;
  --ink: #09111f;
  --navy: #101a33;
  --muted: #687386;
  --line: rgba(14, 24, 44, 0.11);
  --card: rgba(255, 255, 255, 0.82);
  --white: #ffffff;
  --red: #e41424;
  --red-deep: #ad0713;
  --blue: #1468ff;
  --blue-deep: #092d88;
  --gold: #ffca2f;
  --gold-deep: #b87900;
  --shadow: 0 24px 70px rgba(13, 23, 42, 0.11);
  --shadow-soft: 0 18px 46px rgba(13, 23, 42, 0.08);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(228, 20, 36, .07), transparent 26rem),
    radial-gradient(circle at 86% 10%, rgba(20, 104, 255, .08), transparent 28rem),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 54%, #f7f9fc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 22px clamp(16px, 3vw, 42px) 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 14px 12px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 54px rgba(13, 23, 42, .08);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  width: max-content;
  padding: 12px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, #07101f 0%, #142242 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 10px 28px rgba(8, 14, 28, .18);
  letter-spacing: -.035em;
}

.brand-main {
  color: var(--white);
  font-weight: 780;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
}

.brand-studio {
  color: var(--red);
  font-weight: 900;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  color: rgba(9, 17, 31, .68);
  font-size: .88rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}

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

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.hero-button,
.outline-button,
.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 760;
  white-space: nowrap;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease), background .32s var(--ease);
}

.header-cta {
  min-height: 50px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(9, 17, 31, 0.12);
  background: rgba(255,255,255,.78);
  color: var(--navy);
  box-shadow: 0 12px 34px rgba(13, 23, 42, .08);
}

.cta-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(228,20,36,.1);
  transition: transform .32s var(--ease);
}

.header-cta:hover,
.hero-button:hover,
.outline-button:hover,
.final-button:hover {
  transform: translateY(-2px);
}

.header-cta:hover .cta-dot {
  transform: translateX(3px) scale(1.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(9, 17, 31, 0.12);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding-top: 4px;
}

.hero-bg-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(36px);
  opacity: .42;
  pointer-events: none;
}

.hero-bg-orb-red {
  width: 170px;
  height: 170px;
  top: 16%;
  left: -4%;
  background: var(--red);
}

.hero-bg-orb-blue {
  width: 220px;
  height: 220px;
  top: 0;
  right: 16%;
  background: var(--blue);
  opacity: .25;
}

.hero-bg-orb-gold {
  width: 190px;
  height: 190px;
  right: -4%;
  bottom: 8%;
  background: var(--gold);
  opacity: .38;
}

.hero-frame {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 78vh, 850px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-xl);
  background: #e8f3ff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  display: none;
}

.hero-video.has-source {
  display: block;
}

.hero-poster {
  transform: scale(1.02);
  animation: softVisualMotion 18s ease-in-out infinite alternate;
}

.hero-sheen {
  position: absolute;
  inset: -20% -10%;
  z-index: 2;
  background:
    linear-gradient(110deg, transparent 18%, rgba(255,255,255,.46) 38%, transparent 54%),
    radial-gradient(circle at 74% 18%, rgba(255,255,255,.6), transparent 18rem);
  mix-blend-mode: soft-light;
  opacity: .7;
  animation: sheenMove 14s ease-in-out infinite alternate;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(6, 10, 21, .48) 0%, rgba(6, 10, 21, .2) 44%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(6, 10, 21, .38));
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(920px, 92%);
  min-height: clamp(620px, 78vh, 850px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(74px, 9vw, 120px) clamp(24px, 6vw, 86px);
}

.animation-indicator {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(7, 16, 31, .32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 15px 38px rgba(3, 8, 18, .14);
  backdrop-filter: blur(16px);
  font-size: .74rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title-wrap {
  position: relative;
  min-height: clamp(158px, 18vw, 244px);
  width: min(860px, 100%);
}

.hero-title {
  position: absolute;
  inset: 0 auto auto 0;
  margin: 0;
  color: var(--white);
  font-weight: 930;
  letter-spacing: -.075em;
  line-height: .83;
  text-transform: uppercase;
  text-wrap: balance;
  filter: drop-shadow(0 18px 48px rgba(0,0,0,.32));
}

.hero-title-brand {
  font-size: clamp(5.2rem, 16vw, 14rem);
  animation: brandTitleLoop 31s linear infinite;
}

.hero-title-main {
  display: flex;
  flex-wrap: wrap;
  gap: .03em .18em;
  max-width: 840px;
  font-size: clamp(3.15rem, 9.2vw, 8.8rem);
  animation: mainTitleLoop 31s linear infinite;
}

.hero-title-main span {
  display: inline-block;
}

.word-red {
  color: var(--red);
  text-shadow: 0 0 30px rgba(228,20,36,.25);
}

.word-blue {
  color: #55a0ff;
  text-shadow: 0 0 34px rgba(20,104,255,.35);
}

.word-gold {
  color: var(--gold);
  text-shadow: 0 0 32px rgba(255,202,47,.35);
}

.hero-subtitle {
  margin: 265px  0 30px;
  color: rgba(255,255,255,.88);
  font-size: clamp(.85rem, 1.3vw, 1.04rem);
  font-weight: 780;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.hero-button {
  align-self: flex-start;
  min-height: 58px;
  padding: 0 16px 0 24px;
  background: rgba(255,255,255,.92);
  color: #0d1424;
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.button-arrow,
.final-button span:last-child,
.outline-button span:last-child {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  transition: transform .32s var(--ease);
}

.hero-button:hover .button-arrow,
.final-button:hover span:last-child,
.outline-button:hover span:last-child {
  transform: translate(3px, -3px);
}

.showreel-button {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: clamp(24px, 4vw, 48px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: rgba(255,255,255,.95);
  background: rgba(8, 15, 31, .38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 18px 44px rgba(2, 8, 17, .24);
  backdrop-filter: blur(18px);
  font-size: .85rem;
  font-weight: 760;
  cursor: pointer;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255,255,255,.35);
  animation: pulsePlay 2.3s ease-in-out infinite;
  font-size: .76rem;
  text-indent: 2px;
}


.showreel-section {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: max-height .85s var(--ease), margin-top .55s var(--ease), opacity .45s ease, transform .55s var(--ease);
}

.showreel-section.is-open {
  max-height: 3200px;
  margin-top: clamp(24px, 4vw, 48px);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.showreel-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 12%, rgba(228,20,36,.26), transparent 22rem),
    radial-gradient(circle at 86% 8%, rgba(20,104,255,.24), transparent 24rem),
    radial-gradient(circle at 60% 110%, rgba(255,202,47,.20), transparent 24rem),
    linear-gradient(135deg, #07101f 0%, #111d39 100%);
  box-shadow: var(--shadow);
  color: var(--white);
}

.showreel-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 36px);
}

.showreel-heading-row .section-kicker {
  color: var(--gold);
}

.showreel-heading-row h2 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 920;
  letter-spacing: -.068em;
  line-height: .91;
  text-transform: uppercase;
  text-wrap: balance;
}

.colour-headline {
  background: linear-gradient(92deg, #e41424 0%, #1468ff 48%, #ffca2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 18px 50px rgba(20, 104, 255, .12);
}

.colour-headline span {
  display: block;
}


.showreel-intro {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.showreel-intro p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.showreel-intro strong,
.showreel-intro code,
.showreel-player-caption code {
  color: var(--white);
}

.showreel-close {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}

.showreel-close:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.14);
}

.showreel-player-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.showreel-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020711;
  object-fit: cover;
}

.showreel-player-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(16px, 3vw, 24px) 18px;
  color: rgba(255,255,255,.82);
}

.showreel-player-caption span {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 850;
  letter-spacing: -.02em;
}

.showreel-player-caption small {
  max-width: 560px;
  color: rgba(255,255,255,.58);
  line-height: 1.45;
  text-align: right;
}

.showreel-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.showreel-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 120px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  text-align: left;
  cursor: pointer;
  transition: transform .32s var(--ease), background .32s ease, border-color .32s ease, box-shadow .32s var(--ease);
}

.showreel-card:hover,
.showreel-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.showreel-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 19px;
  background: rgba(255,255,255,.08);
}

.showreel-thumb img,
.showreel-thumb video {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transform: scale(1.04);
}

.showreel-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  transform: translate(-50%, -50%);
  font-size: .68rem;
  text-indent: 2px;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}

.showreel-card-copy {
  display: grid;
  gap: 7px;
}

.showreel-card-copy strong {
  font-size: .98rem;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.showreel-card-copy small {
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  line-height: 1.35;
}

.services-section {
  padding: clamp(54px, 7vw, 92px) 0 32px;
}

.section-kicker,
.red-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 860;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 26px;
}

.section-heading-row h2,
.about-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5.1vw, 5.85rem);
  font-weight: 920;
  letter-spacing: -.068em;
  line-height: .91;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading-row p,
.about-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.74));
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .36s var(--ease), box-shadow .36s var(--ease), border-color .36s var(--ease), background .36s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 12%, var(--accent-soft), transparent 14rem),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.55) 100%);
  opacity: .82;
  pointer-events: none;
  transition: opacity .36s ease, transform .42s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .36s var(--ease);
  z-index: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: color-mix(in srgb, var(--accent) 42%, rgba(9,17,31,.12));
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.82));
  box-shadow: 0 34px 86px rgba(13, 23, 42, .16);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.08) rotate(1deg);
}

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

.service-card:hover .service-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
}

.service-card:hover h3 {
  color: var(--accent);
}


.accent-red {
  --accent: var(--red);
  --accent-soft: rgba(228, 20, 36, .12);
}

.accent-blue {
  --accent: var(--blue);
  --accent-soft: rgba(20, 104, 255, .12);
}

.accent-gold {
  --accent: var(--gold);
  --accent-soft: rgba(255, 202, 47, .22);
}

.service-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 17px;
  color: var(--accent);
  background: var(--accent-soft);
  margin-bottom: 28px;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}

.service-icon svg,
.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.service-icon path,
.benefit-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.benefits-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p,
.benefits-strip p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
}

.card-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: auto;
  border: 1px solid rgba(9, 17, 31, .1);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 23, 42, .08);
  transition: transform .3s var(--ease), color .3s ease, background .3s ease, border-color .3s ease;
}

.service-card:hover .card-arrow {
  transform: translate(4px, -4px);
  color: var(--white);
  background: var(--accent);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, .78fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  margin-top: clamp(44px, 6vw, 78px);
  padding: clamp(26px, 5vw, 68px);
  border: 1px solid rgba(9, 17, 31, .08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.76)),
    radial-gradient(circle at 80% 20%, rgba(20,104,255,.1), transparent 26rem),
    radial-gradient(circle at 18% 80%, rgba(255,202,47,.16), transparent 24rem);
  box-shadow: var(--shadow);
}

.about-copy p {
  width: min(680px, 100%);
  margin-top: 24px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.tech-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(9, 17, 31, .09);
  border-radius: 999px;
  color: rgba(9, 17, 31, .72);
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 24px rgba(13, 23, 42, .04);
  font-size: .84rem;
  font-weight: 740;
}

.outline-button {
  min-height: 56px;
  padding: 0 13px 0 22px;
  border: 1px solid rgba(228, 20, 36, .44);
  color: var(--red);
  background: rgba(255,255,255,.48);
  box-shadow: 0 15px 36px rgba(228, 20, 36, .08);
}

.outline-button span:last-child {
  background: var(--red);
}

.outline-button:hover {
  border-color: var(--red);
  background: rgba(255,255,255,.9);
}

.about-visual {
  position: relative;
  min-height: 460px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(13, 23, 42, .12);
}

.floating-panel {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  color: rgba(9, 17, 31, .76);
  background: rgba(255,255,255,.68);
  box-shadow: 0 16px 42px rgba(13, 23, 42, .1);
  backdrop-filter: blur(16px);
  font-size: .82rem;
  font-weight: 800;
}

.floating-panel-top {
  top: 24px;
  right: 24px;
}

.floating-panel-bottom {
  left: 24px;
  bottom: 24px;
}

.panel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.panel-dot.red {
  background: var(--red);
}

.panel-dot.blue {
  background: var(--blue);
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}

.benefits-strip article {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

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

.benefit-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--blue);
  background: rgba(20,104,255,.09);
}

.benefits-strip article:nth-child(1) .benefit-icon {
  color: var(--red);
  background: rgba(228,20,36,.09);
}

.benefits-strip article:nth-child(3) .benefit-icon {
  color: var(--gold-deep);
  background: rgba(255,202,47,.19);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: clamp(38px, 6vw, 82px);
  padding: clamp(48px, 8vw, 92px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(228,20,36,.7), transparent 18rem),
    radial-gradient(circle at 82% 26%, rgba(20,104,255,.78), transparent 20rem),
    radial-gradient(circle at 55% 110%, rgba(255,202,47,.56), transparent 22rem),
    linear-gradient(135deg, #09111f 0%, #14254d 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta p {
  color: rgba(255,255,255,.72);
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 920px;
  color: var(--white);
}

.final-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  font-size: clamp(.95rem, 1.4vw, 1.12rem);
  font-weight: 760;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.final-email:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.final-button {
  min-height: 60px;
  padding: 0 15px 0 25px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.reveal-card:nth-child(2) { transition-delay: .08s; }
.reveal-card:nth-child(3) { transition-delay: .16s; }
.reveal-card:nth-child(4) { transition-delay: .24s; }
.reveal-card:nth-child(5) { transition-delay: .32s; }

@keyframes brandTitleLoop {
  0%, 2.6% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 18px 48px rgba(0,0,0,.32));
  }
  3.4%, 100% {
    opacity: 0;
    transform: translateY(-16px) scale(.97);
    filter: blur(12px) drop-shadow(0 18px 48px rgba(0,0,0,.18));
  }
}

@keyframes mainTitleLoop {
  0%, 3.1% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
    filter: blur(10px) drop-shadow(0 18px 48px rgba(0,0,0,.18));
  }
  4.4%, 96% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 18px 48px rgba(0,0,0,.32));
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.992);
    filter: blur(8px) drop-shadow(0 18px 48px rgba(0,0,0,.18));
  }
}

@keyframes pulsePlay {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,.34);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(255,255,255,0);
    transform: scale(1.04);
  }
}

@keyframes softVisualMotion {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.07) translate3d(-1.2%, .8%, 0); }
}

@keyframes sheenMove {
  0% { transform: translateX(-8%) rotate(0deg); opacity: .42; }
  100% { transform: translateX(9%) rotate(1deg); opacity: .72; }
}


/* Dynamic spec-ad showreel player */
.showreel-player-card {
  position: relative;
}

.showreel-player-shell {
  position: relative;
  overflow: hidden;
  background: #020711;
  isolation: isolate;
}

.showreel-player-shell:fullscreen {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  background: #020711;
}

.showreel-player-shell:fullscreen .showreel-player {
  width: min(100vw, 177.7778vh);
  max-width: 100vw;
}

.showreel-player-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,7,17,0), rgba(2,7,17,.82));
}

.showreel-player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020711 url("assets/hero-poster.png") center / cover no-repeat;
  cursor: pointer;
}

.showreel-media-mount {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #020711;
}


.showreel-youtube-frame {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}


/* Covers YouTube's unavoidable embedded-player title/channel chrome on load.
   YouTube no longer provides a real parameter to remove this text completely,
   so this visual mask keeps the showreel looking branded and clean. */
.showreel-youtube-frame::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  height: clamp(68px, 14%, 106px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,7,17,.96) 0%, rgba(2,7,17,.74) 52%, rgba(2,7,17,0) 100%);
}

.showreel-youtube-privacy-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: #020711;
  background-position: center;
  background-size: cover;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.showreel-youtube-privacy-shield::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(2,7,17,.08), rgba(2,7,17,.42));
}

.showreel-youtube-privacy-play {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 8vw, 74px);
  height: clamp(54px, 8vw, 74px);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 9, 21, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 18px 52px rgba(0,0,0,.36);
  backdrop-filter: blur(14px);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1;
  text-indent: .12em;
}

.showreel-player.is-youtube-started .showreel-youtube-privacy-shield {
  opacity: 0;
  visibility: hidden;
}

.showreel-youtube-mount,
.showreel-player iframe,
.showreel-player video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.showreel-player iframe,
.showreel-player video {
  pointer-events: none;
}

.showreel-player.is-youtube-native iframe {
  pointer-events: none;
}

.showreel-player video {
  object-fit: contain;
  background: #000;
}

.showreel-player.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(2, 7, 17, .36);
}

.showreel-player.is-loading::after {
  content: "Loading…";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(4, 9, 21, .7);
  backdrop-filter: blur(14px);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}



/* 21ÆON loading card shown only while the YouTube player is loading. It disappears after the iframe is ready. */
.showreel-loading-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: min(78%, 260px);
  padding: 20px 22px 18px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 24px;
  color: var(--white);
  background: radial-gradient(circle at 28% 0%, rgba(226, 35, 26, .26), transparent 34%), rgba(4, 9, 21, .78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.44);
  backdrop-filter: blur(18px);
  text-align: center;
  transform: translate(-50%, -50%) scale(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.showreel-loading-mark {
  font-size: clamp(1.75rem, 5vw, 3.8rem);
  font-weight: 930;
  line-height: .9;
  letter-spacing: -.075em;
}

.showreel-loading-brand strong {
  color: var(--red);
  font-size: clamp(.9rem, 2vw, 1.25rem);
  font-weight: 920;
  letter-spacing: -.035em;
}

.showreel-loading-brand small {
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.showreel-player.is-loading .showreel-loading-brand {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.showreel-player.is-loading::after {
  display: none;
}

.showreel-player-click-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.showreel-player-click-layer:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -8px;
}

.showreel-video-logo {
  position: absolute;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(78px, 8vw, 98px);
  z-index: 4;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(4, 9, 21, .48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 38px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  font-size: clamp(.78rem, 1vw, .96rem);
  letter-spacing: -.035em;
  pointer-events: none;
}

.showreel-video-logo span {
  font-weight: 780;
}

.showreel-video-logo strong {
  color: var(--red);
  font-weight: 920;
}

.showreel-custom-controls {
  position: absolute;
  left: clamp(12px, 2.4vw, 24px);
  right: clamp(12px, 2.4vw, 24px);
  bottom: clamp(12px, 2.4vw, 22px);
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto minmax(100px, 1fr) auto auto minmax(150px, .42fr) auto;
  align-items: center;
  gap: clamp(8px, 1.4vw, 14px);
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.94);
  background: rgba(4, 9, 21, .62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 16px 42px rgba(0,0,0,.28);
  backdrop-filter: blur(18px) saturate(120%);
}

.showreel-control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 94px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.10);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}

.showreel-control-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.18);
}

.showreel-control-button.compact {
  min-width: 42px;
  width: 42px;
  padding: 0;
}

.showreel-volume-control {
  display: grid;
  grid-template-columns: auto minmax(72px, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  min-width: 154px;
}

.showreel-volume {
  --volume: 100%;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  outline: none;
  appearance: none;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) var(--volume), rgba(255,255,255,.18) var(--volume), rgba(255,255,255,.18) 100%);
  cursor: pointer;
}

.showreel-volume::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}

.showreel-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}

.showreel-volume-value {
  min-width: 38px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.control-icon {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
  font-size: .84rem;
  line-height: 1;
}

.control-label {
  font-size: .78rem;
  font-weight: 840;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.showreel-time {
  min-width: 38px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.showreel-progress {
  --progress: 0%;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  outline: none;
  appearance: none;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) var(--progress), rgba(255,255,255,.18) var(--progress), rgba(255,255,255,.18) 100%);
  cursor: pointer;
}

.showreel-progress::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}

.showreel-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}

.showreel-player-caption {
  background: rgba(4, 9, 21, .42);
}

.showreel-player-caption small {
  word-break: break-word;
}

.showreel-thumb img,
.showreel-thumb video {
  background: #020711;
}

.showreel-card.is-active .showreel-play {
  color: var(--white);
  background: var(--red);
}

.showreel-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.24);
  border-radius: 24px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
}

.showreel-credit {
  margin: clamp(18px, 3vw, 28px) 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.08);
  text-align: center;
  font-size: .92rem;
  font-weight: 720;
  letter-spacing: .02em;
}

.showreel-credit strong {
  color: var(--white);
}

@media (max-width: 1280px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-shell {
    padding-top: 14px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
    padding: 10px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(9,17,31,.08);
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, transform .28s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 22px;
    border-bottom: 1px solid rgba(9,17,31,.07);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .header-cta {
    min-height: 48px;
    padding: 0 14px 0 18px;
  }

  .hero-frame,
  .hero-content {
    min-height: 640px;
  }

  .section-heading-row,
  .showreel-heading-row,
  .about-section {
    grid-template-columns: 1fr;
  }

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

  .service-card:last-child {
    grid-column: auto;
  }

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

  .showreel-video-grid {
    grid-template-columns: 1fr;
  }

  .benefits-strip article:nth-child(2) {
    border-right: 0;
  }

  .benefits-strip article:nth-child(1),
  .benefits-strip article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding-inline: 12px;
  }

  .site-header {
    top: 10px;
    gap: 10px;
    border-radius: 28px;
  }

  .brand {
    padding: 11px 13px;
  }

  .brand-main,
  .brand-studio {
    font-size: .95rem;
  }

  .header-cta span:first-child {
    display: none;
  }

  .header-cta {
    width: 48px;
    padding: 0;
  }

  .cta-dot {
    width: 10px;
    height: 10px;
  }

  .hero-frame {
    min-height: 610px;
    border-radius: 30px;
  }

  .hero-content {
    width: 100%;
    min-height: 610px;
    padding: 70px 20px 112px;
  }

  .animation-indicator {
    gap: 7px;
    padding: 9px 11px;
    font-size: .62rem;
    letter-spacing: .09em;
  }

  .hero-title-wrap {
    min-height: 164px;
  }

  .hero-title-brand {
    font-size: clamp(4.55rem, 22vw, 6.7rem);
  }

  .hero-title-main {
    font-size: clamp(3rem, 16vw, 4.95rem);
  }

  .hero-subtitle {
    max-width: 310px;
    letter-spacing: .18em;
    line-height: 1.55;
  }

  .hero-button {
    min-height: 54px;
    padding-left: 20px;
  }

  .showreel-button {
    left: 20px;
    right: auto;
    bottom: 22px;
    transform: none;
  }


  .showreel-inner {
    padding: 20px;
    border-radius: 30px;
  }

  .showreel-player-card {
    border-radius: 24px;
  }

  .showreel-player-caption {
    display: grid;
    gap: 8px;
  }

  .showreel-player-caption small {
    text-align: left;
  }

  .showreel-card {
    grid-template-columns: 96px 1fr;
    border-radius: 22px;
  }

  .section-heading-row h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .service-grid,
  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .benefits-strip article,
  .benefits-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits-strip article:last-child {
    border-bottom: 0;
  }

  .about-section {
    padding: 22px;
    border-radius: 30px;
  }

  .about-visual,
  .about-visual img {
    min-height: 340px;
    border-radius: 26px;
  }

  .floating-panel {
    font-size: .75rem;
  }

  .floating-panel-top {
    top: 14px;
    right: 14px;
  }

  .floating-panel-bottom {
    left: 14px;
    bottom: 14px;
  }
}


@media (max-width: 760px) {
  .showreel-custom-controls {
    grid-template-columns: auto 1fr auto auto;
    border-radius: 24px;
  }

  .showreel-progress {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .showreel-volume-control {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(120px, 1fr) auto auto;
    min-width: 0;
  }

  .showreel-control-button {
    min-width: 48px;
  }

  .showreel-control-button:not(.compact) {
    min-width: 92px;
  }

  .showreel-time {
    display: none;
  }

  .showreel-video-logo {
    bottom: 92px;
  }
}

@media (max-width: 460px) {
  .showreel-custom-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .showreel-control-button:not(.compact) {
    min-width: 80px;
  }

  .control-label,
  .showreel-volume-value {
    display: none;
  }

  .showreel-volume-control {
    grid-template-columns: auto minmax(78px, 1fr) auto;
  }

  .showreel-video-logo {
    right: 12px;
    bottom: 82px;
    padding: 8px 10px;
  }
}

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

  .hero-title-brand {
    opacity: 0;
  }

  .hero-title-main {
    opacity: 1;
    position: relative;
  }
}

/* v8 updates: About CTA, benefit-card hover effects, and light/dark preview toggle */
.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(9, 17, 31, .11);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 34px rgba(13, 23, 42, .08);
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s ease, color .28s ease, border-color .28s ease;
}

.theme-toggle:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 104, 255, .28);
  box-shadow: 0 18px 44px rgba(13, 23, 42, .13);
}

.theme-toggle-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  font-size: .85rem;
}

.theme-toggle-text {
  font-size: .82rem;
  font-weight: 840;
}

.benefits-strip article {
  --accent: var(--blue);
  --accent-soft: rgba(20, 104, 255, .1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .36s var(--ease), box-shadow .36s var(--ease), background .36s ease, border-color .36s var(--ease);
}

.benefits-strip article:nth-child(1) {
  --accent: var(--red);
  --accent-soft: rgba(228, 20, 36, .12);
}

.benefits-strip article:nth-child(3) {
  --accent: var(--gold);
  --accent-soft: rgba(255, 202, 47, .22);
}

.benefits-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 15%, var(--accent-soft), transparent 13rem),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.5) 100%);
  opacity: 0;
  transform: scale(.98);
  pointer-events: none;
  transition: opacity .36s ease, transform .42s var(--ease);
  z-index: 0;
}

.benefits-strip article::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .36s var(--ease);
  z-index: 1;
}

.benefits-strip article > * {
  position: relative;
  z-index: 2;
}

.benefits-strip article:hover {
  transform: translateY(-10px) scale(1.01);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.84));
  box-shadow: 0 30px 80px rgba(13, 23, 42, .15);
  z-index: 3;
}

.benefits-strip article:hover::before {
  opacity: 1;
  transform: scale(1.07) rotate(1deg);
}

.benefits-strip article:hover::after {
  transform: scaleX(1);
}

.benefits-strip article:hover .benefit-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
}

.benefits-strip article:hover h3 {
  color: var(--accent);
}

body.theme-dark {
  --bg: #060b14;
  --bg-warm: #08111f;
  --ink: #f7f9ff;
  --muted: rgba(222, 230, 244, .72);
  --line: rgba(255, 255, 255, .12);
  --card: rgba(10, 18, 33, .82);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, .28);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(228, 20, 36, .16), transparent 26rem),
    radial-gradient(circle at 86% 10%, rgba(20, 104, 255, .18), transparent 28rem),
    linear-gradient(180deg, #050a12 0%, #08111f 54%, #060b14 100%);
}

body.theme-dark .site-header,
body.theme-dark .about-section,
body.theme-dark .benefits-strip,
body.theme-dark .service-card,
body.theme-dark .theme-toggle {
  border-color: rgba(255,255,255,.12);
  background: rgba(10, 18, 33, .72);
}

body.theme-dark .site-header {
  box-shadow: 0 18px 54px rgba(0,0,0,.26);
}

body.theme-dark .main-nav,
body.theme-dark .mobile-menu-button {
  color: rgba(247,249,255,.72);
}

body.theme-dark .about-section {
  background:
    linear-gradient(135deg, rgba(10, 18, 33, .92), rgba(9, 17, 31, .78)),
    radial-gradient(circle at 80% 20%, rgba(20,104,255,.18), transparent 26rem),
    radial-gradient(circle at 18% 80%, rgba(255,202,47,.12), transparent 24rem);
}

body.theme-dark .service-card,
body.theme-dark .benefits-strip article:hover {
  background: linear-gradient(180deg, rgba(14,25,45,.96), rgba(9,17,31,.82));
}

body.theme-dark .service-card::before,
body.theme-dark .benefits-strip article::before {
  background:
    radial-gradient(circle at 22% 12%, var(--accent-soft), transparent 14rem),
    linear-gradient(180deg, transparent 0%, rgba(9,17,31,.44) 100%);
}

body.theme-dark .card-arrow,
body.theme-dark .outline-button,
body.theme-dark .theme-toggle,
body.theme-dark .floating-panel {
  color: var(--ink);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

body.theme-dark .outline-button {
  color: #ff5964;
}

body.theme-dark .theme-toggle-icon {
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: #07101f;
}

body.theme-dark .about-visual img {
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

body.theme-dark .final-cta {
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}

@media (max-width: 720px) {
  .about-actions {
    align-items: stretch;
  }

  .theme-toggle,
  .outline-button {
    width: 100%;
    justify-content: center;
  }
}

/* v9 updates: make the light/dark toggle theme the full website */
body,
.site-shell,
.site-header,
.hero-section,
.hero-frame,
.services-section,
.about-section,
.benefits-strip,
.final-cta,
.service-card,
.benefits-strip article,
.showreel-section,
.showreel-player-card,
.showreel-custom-controls,
.showreel-player-caption,
.showreel-video-card,
.theme-toggle,
.header-cta,
.hero-button,
.outline-button,
.final-button,
.card-arrow,
.floating-panel {
  transition:
    background-color .35s ease,
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    filter .35s ease;
}

body.theme-dark {
  color-scheme: dark;
  --bg: #050912;
  --bg-warm: #07101d;
  --ink: #f8fbff;
  --navy: #dce8ff;
  --muted: rgba(221, 230, 245, .72);
  --line: rgba(255, 255, 255, .13);
  --card: rgba(10, 18, 33, .82);
  --white: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(228, 20, 36, .22), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(20, 104, 255, .24), transparent 34rem),
    radial-gradient(circle at 55% 96%, rgba(255, 202, 47, .10), transparent 28rem),
    linear-gradient(180deg, #030711 0%, #07101d 48%, #050912 100%) !important;
}

body.theme-dark .site-shell {
  background: transparent;
}

body.theme-dark .site-header {
  border-color: rgba(255, 255, 255, .12) !important;
  background: rgba(5, 10, 20, .76) !important;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .38) !important;
}

body.theme-dark .brand {
  background: linear-gradient(135deg, #101b33 0%, #061022 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 14px 38px rgba(0,0,0,.32);
}

body.theme-dark .main-nav,
body.theme-dark .main-nav a,
body.theme-dark .mobile-menu-button {
  color: rgba(248, 251, 255, .74) !important;
}

body.theme-dark .main-nav a:hover {
  color: #ffffff !important;
}

body.theme-dark .header-cta,
body.theme-dark .hero-button,
body.theme-dark .outline-button,
body.theme-dark .final-button,
body.theme-dark .theme-toggle {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, .15) !important;
  background: rgba(255, 255, 255, .08) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26) !important;
}

body.theme-dark .header-cta:hover,
body.theme-dark .hero-button:hover,
body.theme-dark .outline-button:hover,
body.theme-dark .final-button:hover,
body.theme-dark .theme-toggle:hover {
  border-color: rgba(255, 255, 255, .28) !important;
  background: rgba(255, 255, 255, .13) !important;
}

body.theme-dark .menu-toggle {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.16) !important;
}

body.theme-dark .menu-toggle span {
  background: #ffffff !important;
}

body.theme-dark .hero-frame {
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 34px 100px rgba(0,0,0,.42) !important;
}

body.theme-dark .animation-indicator,
body.theme-dark .section-kicker,
body.theme-dark .red-label {
  color: #ff5a66 !important;
}

body.theme-dark .hero-subtitle,
body.theme-dark .section-heading-row p,
body.theme-dark .about-copy p,
body.theme-dark .benefits-strip p,
body.theme-dark .service-card p,
body.theme-dark .showreel-intro p,
body.theme-dark .showreel-player-caption small,
body.theme-dark .final-cta p {
  color: rgba(225, 233, 248, .72) !important;
}

body.theme-dark .services-section,
body.theme-dark .about-section,
body.theme-dark .benefits-strip {
  color: var(--ink);
}

body.theme-dark .services-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(228,20,36,.10), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(20,104,255,.12), transparent 30rem);
}

body.theme-dark .section-heading-row h2,
body.theme-dark .about-copy h2,
body.theme-dark .benefits-strip h3,
body.theme-dark .service-card h3,
body.theme-dark .showreel-heading-row h2 {
  color: #f8fbff !important;
}

body.theme-dark .colour-headline {
  background: linear-gradient(92deg, #ff4f5c 0%, #4f91ff 48%, #ffd95a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

body.theme-dark .service-card,
body.theme-dark .benefits-strip,
body.theme-dark .benefits-strip article {
  border-color: rgba(255, 255, 255, .13) !important;
  background: linear-gradient(180deg, rgba(13, 24, 43, .94), rgba(8, 16, 31, .84)) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.28) !important;
}

body.theme-dark .service-card:hover,
body.theme-dark .benefits-strip article:hover {
  background: linear-gradient(180deg, rgba(18, 32, 58, .98), rgba(10, 20, 39, .9)) !important;
  box-shadow: 0 34px 96px rgba(0,0,0,.42) !important;
}

body.theme-dark .service-icon,
body.theme-dark .benefit-icon,
body.theme-dark .card-arrow {
  border-color: rgba(255,255,255,.13) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.22) !important;
}

body.theme-dark .about-section {
  border-color: rgba(255, 255, 255, .12) !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(20,104,255,.22), transparent 30rem),
    radial-gradient(circle at 18% 80%, rgba(255,202,47,.12), transparent 28rem),
    linear-gradient(135deg, rgba(9, 17, 31, .96), rgba(6, 12, 24, .88)) !important;
  box-shadow: 0 30px 100px rgba(0,0,0,.32) !important;
}

body.theme-dark .about-visual img {
  filter: brightness(.9) contrast(1.08) saturate(1.08);
  border-radius: 30px;
  box-shadow: 0 28px 88px rgba(0,0,0,.42) !important;
}

body.theme-dark .floating-panel {
  color: #f8fbff !important;
  border-color: rgba(255,255,255,.13) !important;
  background: rgba(9, 17, 31, .74) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.28) !important;
}

body.theme-dark .showreel-section {
  color: #f8fbff;
  background:
    radial-gradient(circle at 20% 0%, rgba(228, 20, 36, .14), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(20,104,255,.14), transparent 30rem),
    linear-gradient(180deg, rgba(5, 10, 20, .96), rgba(7, 13, 26, .92)) !important;
}

body.theme-dark .showreel-player-card,
body.theme-dark .showreel-custom-controls,
body.theme-dark .showreel-player-caption,
body.theme-dark .showreel-video-card {
  border-color: rgba(255,255,255,.12) !important;
  background: rgba(5, 10, 20, .82) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.36) !important;
}

body.theme-dark .final-cta {
  border-color: rgba(255,255,255,.13) !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(228,20,36,.34), transparent 24rem),
    radial-gradient(circle at 84% 18%, rgba(20,104,255,.38), transparent 26rem),
    radial-gradient(circle at 52% 100%, rgba(255,202,47,.20), transparent 24rem),
    linear-gradient(135deg, #060d1a, #101f41) !important;
  box-shadow: 0 30px 100px rgba(0,0,0,.42) !important;
}

body.theme-dark .final-cta h2,
body.theme-dark .final-email {
  color: #ffffff !important;
}

body.theme-dark ::selection {
  background: rgba(20,104,255,.42);
  color: #ffffff;
}

/* v11 updates: dynamic desktop/tablet/mobile floating light/dark toggle */
.floating-theme-toggle {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 148px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(8, 15, 29, .12);
  background: rgba(255, 255, 255, .82);
  color: #08111f;
  box-shadow: 0 18px 50px rgba(8, 15, 29, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.floating-theme-toggle .theme-toggle-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(8, 15, 29, .08);
  flex: 0 0 auto;
}

.floating-theme-toggle:hover {
  transform: translate3d(0, -4px, 0);
}

.floating-theme-toggle:focus-visible {
  outline: 3px solid rgba(20, 104, 255, .45);
  outline-offset: 4px;
}

body.theme-dark .floating-theme-toggle {
  border-color: rgba(255, 255, 255, .16) !important;
  background: rgba(7, 14, 28, .82) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 58px rgba(0, 0, 0, .42) !important;
}

body.theme-dark .floating-theme-toggle .theme-toggle-icon {
  background: rgba(255, 255, 255, .12);
}

@media (min-width: 1025px) {
  .floating-theme-toggle {
    right: max(28px, calc(env(safe-area-inset-right) + 28px));
    bottom: max(28px, calc(env(safe-area-inset-bottom) + 28px));
  }
}

@media (max-width: 1024px) {
  .floating-theme-toggle {
    right: max(20px, calc(env(safe-area-inset-right) + 20px));
    bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
    min-width: 132px;
    height: 46px;
    padding: 0 15px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .floating-theme-toggle {
    right: max(14px, calc(env(safe-area-inset-right) + 14px));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 14px));
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }

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

  .floating-theme-toggle .theme-toggle-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .floating-theme-toggle {
    right: max(10px, calc(env(safe-area-inset-right) + 10px));
    bottom: max(10px, calc(env(safe-area-inset-bottom) + 10px));
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
