:root {
  color-scheme: dark;
  --bg: #050815;
  --bg-strong: #0b1123;
  --panel: rgba(11, 18, 37, 0.72);
  --panel-strong: rgba(17, 26, 53, 0.86);
  --text: #eef4ff;
  --muted: #9aa6c7;
  --line: rgba(150, 180, 255, 0.18);
  --cyan: #7bfff2;
  --aqua: #74d3ff;
  --violet: #bb83ff;
  --pink: #ff8bcf;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(107, 233, 255, 0.15), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(180, 126, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(93, 119, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #070a15 0%, #060913 48%, #04060d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(120, 153, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 153, 255, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

body::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 255, 242, 0.1), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(187, 131, 255, 0.12), transparent 50%);
  filter: blur(80px);
  opacity: 0.8;
}

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

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

iframe {
  border: 0;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 15, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.34);
}

.brand strong,
.site-nav a,
.button,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  color: #dce7ff;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-section {
  padding: 56px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 96px);
}

.header-row > *,
.hero-grid > *,
.about-grid > *,
.quote-grid > *,
.embed-layout > *,
.showreel-grid > *,
.gallery-grid > *,
.coverage-grid > *,
.sales-grid > *,
.contact-layout > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

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

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  max-width: 11ch;
  margin-bottom: 20px;
}

.hero-text,
.section-heading p,
.info-panel p,
.quote-card p,
.embed-card p,
.gallery-panel p,
.video-meta,
.press-embed-card p,
.presence-card p,
.spotlight-card p,
.mention-card p,
.sales-card p,
.contact-copy p,
.contact-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 12px;
}

.hero-note {
  margin: 0 0 28px;
  color: var(--muted);
}

.hero-note a {
  color: #dfe7ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.button {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 0.95rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #08101d;
  background: linear-gradient(135deg, var(--cyan), var(--aqua) 55%, #c4e7ff);
  box-shadow: 0 16px 40px rgba(123, 255, 242, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.metric-card,
.info-panel,
.quote-card,
.embed-card,
.gallery-panel,
.video-card,
.coverage-card,
.spotlight-card,
.press-embed-card,
.presence-card,
.mention-card,
.sales-card,
.contact-form,
.contact-points article {
  background: linear-gradient(180deg, rgba(18, 28, 58, 0.78), rgba(9, 14, 29, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.metric-card::before,
.info-panel::before,
.quote-card::before,
.embed-card::before,
.gallery-panel::before,
.video-card::before,
.coverage-card::before,
.spotlight-card::before,
.press-embed-card::before,
.presence-card::before,
.mention-card::before,
.sales-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.metric-card span {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.hero-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  isolation: isolate;
}

.stage-glow {
  position: absolute;
  inset: 15% 10%;
  background:
    radial-gradient(circle, rgba(123, 255, 242, 0.2), transparent 44%),
    radial-gradient(circle at 65% 38%, rgba(187, 131, 255, 0.24), transparent 36%);
  filter: blur(24px);
}

.showcase-frame {
  position: absolute;
  inset: 7% 2% 9% 10%;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 21, 0.42);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.hero-shot {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 760ms ease,
    transform 4.8s ease;
}

.hero-shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.showcase-overlay,
.showcase-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.showcase-overlay {
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.16), rgba(5, 8, 18, 0.74)),
    radial-gradient(circle at 18% 20%, rgba(123, 255, 242, 0.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(187, 131, 255, 0.16), transparent 28%);
}

.showcase-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(140, 168, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 168, 255, 0.24) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.16));
}

.logo-pedestal {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  height: 100%;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  width: clamp(250px, 28vw, 360px);
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(8, 12, 27, 0.76), rgba(9, 14, 30, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(121, 208, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-7deg) translateX(28px);
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(123, 255, 242, 0.14), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(187, 131, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(5, 8, 19, 0.36), rgba(5, 8, 19, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  filter: drop-shadow(0 20px 48px rgba(116, 211, 255, 0.22));
}

.floating-note {
  position: absolute;
  width: min(240px, 44vw);
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-note span,
.card-topline span,
.spotlight-label,
.mention-card span,
.contact-points span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(123, 255, 242, 0.1);
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.floating-note strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  margin-bottom: 8px;
}

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

.top-left {
  top: 12%;
  left: 0;
  animation: drift 6.4s ease-in-out infinite;
}

.bottom-right {
  right: 0;
  bottom: 8%;
  animation: drift 7.2s ease-in-out infinite reverse;
}

.marquee-strip {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 7, 15, 0.35);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  min-width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  position: relative;
  color: #dce6ff;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.marquee-track span::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  transform: translateY(-50%);
}

.content-section {
  padding: 120px 0;
}

.content-section-strong {
  background:
    linear-gradient(180deg, rgba(8, 12, 25, 0.78), rgba(6, 9, 19, 0.9)),
    linear-gradient(90deg, rgba(123, 255, 242, 0.03), rgba(187, 131, 255, 0.03));
}

.content-section-proof {
  background:
    radial-gradient(circle at 10% 20%, rgba(123, 255, 242, 0.08), transparent 30%),
    radial-gradient(circle at 90% 25%, rgba(187, 131, 255, 0.1), transparent 26%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.about-grid,
.quote-grid,
.mention-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.info-panel,
.quote-card,
.coverage-card,
.spotlight-card,
.gallery-panel,
.press-embed-card,
.presence-card,
.mention-card,
.sales-card {
  position: relative;
  padding: 28px;
}

.info-panel h3,
.embed-card h3,
.gallery-panel h3,
.video-card h3,
.coverage-card h3,
.press-embed-card h3,
.presence-card h3,
.spotlight-card h3,
.mention-card h3,
.sales-card h3,
.contact-copy h2 {
  font-size: 1.42rem;
  margin-bottom: 16px;
}

.info-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.68;
}

.detail-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.68;
}

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

.embed-card,
.video-card {
  position: relative;
  padding: 28px;
}

.card-topline,
.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card-topline {
  margin-bottom: 18px;
}

.card-topline a,
.link-row a,
.spotlight-card a,
.mention-card a,
.footer-links a {
  color: #dfe7ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.steam-frame {
  width: 100%;
  min-height: 190px;
  margin: 22px 0 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.project-preview {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 22px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-preview-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.project-preview-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 1;
  transition: transform 420ms ease;
}

.project-preview-collage img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 8;
}

.embed-card:hover .project-preview-collage img,
.embed-card:focus-within .project-preview-collage img {
  transform: scale(1.03);
}

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

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

.coverage-card {
  position: relative;
  padding: 28px;
}

.coverage-media {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
}

.coverage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.coverage-card:hover .coverage-media img,
.coverage-card:focus-within .coverage-media img {
  transform: scale(1.03);
}

.showreel-grid,
.gallery-grid,
.presence-grid {
  display: grid;
  gap: 18px;
}

.showreel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.video-card-featured,
.presence-card-featured {
  grid-column: span 2;
}

.video-meta {
  margin-bottom: 0;
  margin-top: 16px;
}

.gallery-grid,
.presence-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.logo-wall {
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 28, 58, 0.72), rgba(9, 14, 29, 0.9)),
    linear-gradient(90deg, rgba(123, 255, 242, 0.04), rgba(187, 131, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.logo-wall .eyebrow {
  margin-bottom: 16px;
}

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

.logo-chip {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(123, 255, 242, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 132px;
  display: grid;
  align-content: space-between;
}

.logo-chip::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 255, 242, 0.55), rgba(187, 131, 255, 0.1));
}

.logo-chip strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  letter-spacing: 0.16em;
  line-height: 1.1;
}

.logo-chip small {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.presence-brandmark {
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(123, 255, 242, 0.16), transparent 46%),
    linear-gradient(135deg, rgba(18, 28, 58, 0.95), rgba(9, 14, 29, 0.98));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.presence-brandmark span {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.96);
  text-shadow: 0 0 28px rgba(123, 255, 242, 0.18);
}

.quote-card strong,
.embed-quote strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  line-height: 1.14;
  margin-bottom: 14px;
  color: var(--text);
}

.quote-card p strong {
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--cyan), #c9e3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sales-banner {
  position: relative;
  margin-top: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(123, 255, 242, 0.1), rgba(187, 131, 255, 0.1)),
    linear-gradient(180deg, rgba(12, 18, 37, 0.92), rgba(9, 14, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.sales-banner h3 {
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.sales-banner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.sales-banner-actions p {
  margin: 0;
  max-width: 44ch;
}

.sales-banner-compact {
  margin-top: 18px;
}

.embed-quote {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.embed-quote p,
.mention-quote {
  margin-bottom: 0;
}

.source-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.source-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe7ff;
  font-size: 0.84rem;
}

.video-shell {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
}

.gallery-shell {
  position: relative;
  margin: 22px 0 18px;
}

.gallery-track {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition:
    opacity 380ms ease,
    transform 460ms ease;
}

.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

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

.gallery-slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7, 10, 21, 0.24), rgba(7, 10, 21, 0.88)),
    linear-gradient(135deg, rgba(123, 255, 242, 0.08), rgba(187, 131, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaf2ff;
  line-height: 1.55;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.gallery-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.gallery-button:hover,
.gallery-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(123, 255, 242, 0.1);
  border-color: rgba(123, 255, 242, 0.3);
}

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

.gallery-dot {
  appearance: none;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);
  transition:
    width 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.gallery-dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.presence-media,
.presence-collage {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.presence-media {
  aspect-ratio: 16 / 9;
}

.presence-media img,
.presence-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presence-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.presence-collage img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 8;
}

.presence-collage img:not(:first-child) {
  aspect-ratio: 1;
}

.presence-quote {
  margin-bottom: 14px;
}

.presence-quote strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.26rem;
  line-height: 1.28;
}

.link-stack {
  display: grid;
  gap: 18px;
}

.mention-quote strong {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

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

.sales-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.68;
}

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

.contact-points {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-points article {
  padding: 18px 20px;
}

.contact-points strong {
  display: block;
  line-height: 1.55;
}

.contact-form {
  position: relative;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 0.98rem;
  color: #e7eeff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 18, 0.82);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(123, 255, 242, 0.5);
  box-shadow: 0 0 0 3px rgba(123, 255, 242, 0.12);
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--cyan);
}

.contact-note {
  max-width: 48ch;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-row strong {
  display: block;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .media-grid,
  .showreel-grid,
  .gallery-grid,
  .coverage-grid,
  .logo-grid,
  .presence-grid,
  .contact-layout,
  .about-grid,
  .quote-grid,
  .sales-grid,
  .mention-grid {
    grid-template-columns: 1fr;
  }

  .video-card-featured,
  .presence-card-featured {
    grid-column: span 1;
  }

  .embed-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .showcase-frame {
    inset: 8% 0 14% 0;
  }

  .floating-note {
    width: min(280px, 55vw);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
  }

  .header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    row-gap: 10px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-grid {
    min-height: auto;
    gap: 24px;
  }

  .showcase-frame {
    position: absolute;
    inset: 0;
  }

  h1 {
    font-size: clamp(2.5rem, 9vw, 3.6rem);
    max-width: none;
    overflow-wrap: anywhere;
  }

  .hero-text,
  .hero-note {
    font-size: 0.98rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .logo-card {
    width: min(100%, 360px);
    transform: rotate(-4deg);
  }

  .top-left,
  .bottom-right {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .logo-pedestal {
    gap: 16px;
  }

  .content-section {
    padding: 88px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
