/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   AIVID STUDIOS â STYLE SHEET
   Darknode-inspired Glass-morphism Design
   âââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* ââ VARIABLES ââ */
:root {
  --bg-deep: #09080A;
  --bg-secondary: #2C1810;
  --bg-card: rgba(10, 235, 255, 0.04);
  --accent: #0AEBFF;
  --accent-dim: #5A8B9D;
  --accent-glow: rgba(10, 235, 255, 0.15);
  --accent-glow-strong: rgba(10, 235, 255, 0.35);
  --text: #E6E3DF;
  --text-dim: #8A8680;
  --white: #FFFFFF;
  --border: rgba(10, 235, 255, 0.12);
  --border-hover: rgba(10, 235, 255, 0.3);

  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Space Mono', monospace;
  --font-label: 'Montserrat', sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-pad: 24px;
}

/* ââ RESET ââ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ââ FILM GRAIN OVERLAY (global) ââ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grainShift 0.5s steps(4) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 3px); }
  50% { transform: translate(3px, -1px); }
  75% { transform: translate(-1px, -3px); }
}

/* ââ UTILITIES ââ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.text-accent { color: var(--accent); }

.heading-2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 24px;
}

.body-text {
  font-family: var(--font-label);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.85;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  max-width: 680px;
  margin-bottom: 16px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-label__number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}
.section-label__line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.section-label__text {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* ââ GLASS CARD ââ */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px var(--accent-glow), inset 0 0 20px rgba(10, 235, 255, 0.03);
  transform: translateY(-2px);
}

/* ââ BUTTONS ââ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn--primary:hover {
  box-shadow: 0 0 30px var(--accent-glow-strong), 0 4px 20px rgba(10, 235, 255, 0.2);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--ghost:hover {
  background: rgba(10, 235, 255, 0.08);
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn--full { width: 100%; }

/* ââ NAVIGATION ââ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 235, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled {
  background: rgba(9, 8, 10, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-img {
  height: 36px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  transition: color 0.3s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { width: 100%; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SYSTEM LABEL ── */
.hero__system-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 32px;
  text-transform: uppercase;
}

/* ── DISRUPTION BANNER ── */
.disruption {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 235, 255, 0.03) 0%, transparent 100%);
  border-top: 1px solid rgba(10, 235, 255, 0.08);
  border-bottom: 1px solid rgba(10, 235, 255, 0.08);
}
.disruption__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ── PIPELINE DIAGRAM (full-width image section after hero) ── */
.pipeline-diagram {
  padding: 60px 0;
  background: var(--bg-deep);
  position: relative;
}
.pipeline-diagram__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.pipeline-diagram__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* ── PIPELINE MODEL TAG ── */
.pipeline__stage-model {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 235, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 235, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 24, 16, 0.6) 0%, rgba(10, 235, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

/* Hero bokeh floating lights */
.hero__bokeh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bokeh-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: bokehFloat 16s ease-in-out infinite;
}
.hero__bokeh-dot--1 {
  width: 6px; height: 6px;
  background: rgba(10, 235, 255, 0.5);
  top: 25%; left: 15%;
  animation-delay: 0s;
  animation-duration: 14s;
  box-shadow: 0 0 12px rgba(10, 235, 255, 0.3);
}
.hero__bokeh-dot--2 {
  width: 4px; height: 4px;
  background: rgba(10, 235, 255, 0.4);
  top: 60%; right: 20%;
  animation-delay: -3s;
  animation-duration: 18s;
  box-shadow: 0 0 8px rgba(10, 235, 255, 0.2);
}
.hero__bokeh-dot--3 {
  width: 8px; height: 8px;
  background: rgba(255, 180, 100, 0.3);
  top: 35%; right: 30%;
  animation-delay: -7s;
  animation-duration: 20s;
  box-shadow: 0 0 16px rgba(255, 180, 100, 0.2);
}
.hero__bokeh-dot--4 {
  width: 3px; height: 3px;
  background: rgba(10, 235, 255, 0.6);
  bottom: 30%; left: 25%;
  animation-delay: -5s;
  animation-duration: 12s;
  box-shadow: 0 0 6px rgba(10, 235, 255, 0.3);
}
.hero__bokeh-dot--5 {
  width: 5px; height: 5px;
  background: rgba(255, 180, 100, 0.25);
  top: 70%; left: 60%;
  animation-delay: -10s;
  animation-duration: 16s;
  box-shadow: 0 0 10px rgba(255, 180, 100, 0.15);
}
@keyframes bokehFloat {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  15% { opacity: 1; }
  50% { opacity: 0.6; transform: translate(40px, -60px) scale(1.2); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(-20px, 30px) scale(0.5); }
}

/* Hero cinematic vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(9, 8, 10, 0.6) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px var(--container-pad);
}

/* Hero centered logo — flat, no glow */
.hero__logo-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  background: none;
  border: none;
  box-shadow: none;
}
.hero__logo-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: auto;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  filter: none;
}
.hero__logo-img--flat {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  border: none;
  background: none;
  box-shadow: none;
  filter: none;
  border-radius: 0;
}

/* Hero acronym subtitle */
.hero__acronym {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 20px;
  text-transform: none;
  text-align: center;
  padding: 0 20px;
}

.hero__logo-wrapper {
  display: none;
}
.hero__logo {
  display: none;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
}
.hero__title-line { display: block; }
.hero__title-accent { color: var(--accent); }

.hero__subtitle {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  margin-bottom: 48px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 24px; }
}
.hero__scroll-text {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ââ ABOUT ââ */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 235, 255, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 24, 16, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about__text { max-width: 560px; }
.about__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat { text-align: center; }
.stat__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  display: inline;
}
.stat__symbol {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.stat__label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ââ PIPELINE ââ */
.pipeline {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.15) 50%, transparent 100%);
  overflow: hidden;
}
.pipeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 235, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 235, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 10%, transparent 70%);
  pointer-events: none;
}
.pipeline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 235, 255, 0.04) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.pipeline__intro {
  max-width: 700px;
  margin-bottom: 60px;
}
.pipeline__stages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.pipeline__stage {
  position: relative;
  padding: 28px;
}
.pipeline__stage-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  right: 20px;
}
.pipeline__stage-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.pipeline__stage-desc {
  font-family: var(--font-label);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* ââ GOOGLE CLOUD ââ */
.cloud {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cloud__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.cloud__item {
  position: relative;
  padding: 28px;
}
.cloud__item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.cloud__item-desc {
  font-family: var(--font-label);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* ââ PIPELINE TAG ââ */
.film-card__pipeline-tag {
  display: block;
  margin-top: 8px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ââ TIMELINE ââ */
.timeline {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 400px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(44, 24, 16, 0.35) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.timeline::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 235, 255, 0.04) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.timeline__track {
  position: relative;
  margin-top: 48px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  margin-bottom: 0;
}
.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  flex-shrink: 0;
  margin-top: 8px;
}
.timeline__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), rgba(10, 235, 255, 0.1));
  margin-top: 4px;
}
.timeline__line--last {
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline__card {
  margin-bottom: 28px;
}
.timeline__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border: 1px solid rgba(10, 235, 255, 0.25);
  border-radius: 50px;
  margin-bottom: 16px;
}
.timeline__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.timeline__desc {
  font-family: var(--font-label);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.timeline__desc:last-child {
  margin-bottom: 0;
}
.timeline__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.timeline__list li {
  font-family: var(--font-label);
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}
.timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.timeline__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  padding: 16px 20px;
  background: rgba(10, 235, 255, 0.04);
  border: 1px solid rgba(10, 235, 255, 0.1);
  border-radius: 10px;
}
.timeline__flow span {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}
.timeline__flow-arrow {
  color: var(--accent);
  font-size: 1rem;
}

/* ── FILMS ── */
.films {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 8, 10, 0.5) 20%, rgba(44, 24, 16, 0.08) 50%, rgba(9, 8, 10, 0.5) 80%, transparent 100%);
}
.films::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 235, 255, 0.15), transparent);
}
.films::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 235, 255, 0.1), transparent);
}
.films__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.film-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.film-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-4px);
}

.film-card__poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}
.film-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.film-card:hover .film-card__poster img {
  transform: scale(1.05);
}
.film-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 8, 10, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.film-card__status {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 50px;
}
.film-card__status--production {
  background: rgba(10, 235, 255, 0.2);
  color: var(--accent);
  border: 1px solid rgba(10, 235, 255, 0.3);
}
.film-card__status--development {
  background: rgba(255, 165, 0, 0.15);
  color: #FFA500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.film-card__info { padding: 20px; }
.film-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.film-card__genre {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}
.film-card__logline {
  font-family: var(--font-label);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* ── CONTACT ACCESS BUTTON ── */
.contact__access {
  margin-bottom: 32px;
}

/* ── CLOUD BODY ── */
.cloud__body {
  max-width: 780px;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.1) 50%, transparent 100%);
}
.contact::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 235, 255, 0.035) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 235, 255, 0.08), transparent);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 48px;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 235, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  text-transform: uppercase;
}
.form-input::placeholder {
  color: var(--text-dim);
  opacity: 0.5;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.form-input--textarea { resize: vertical; min-height: 120px; }

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%230AEBFF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
select.form-input option {
  background: var(--bg-deep);
  color: var(--text);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__info-card { padding: 24px; }
.contact__info-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.contact__info-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.8;
}
.contact__info-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.8;
  transition: color 0.3s ease;
}
.contact__info-link:hover { color: var(--accent); }

/* ââ FOOTER ââ */
.footer {
  padding: 80px 0 40px;
  position: relative;
  border-top: 1px solid var(--border);
}
.footer__glow {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__logo {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}
.footer__tagline {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 2.2;
  transition: color 0.3s ease;
}
.footer__link:hover { color: var(--accent); }

.footer__bottom { text-align: center; }
.footer__line {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.footer__copy {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  opacity: 0.6;
}

/* ââ SECTION DIVIDERS ââ */
.section-divider {
  position: relative;
  height: 1px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section-divider::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 235, 255, 0.12) 20%, rgba(10, 235, 255, 0.2) 50%, rgba(10, 235, 255, 0.12) 80%, transparent 100%);
}

/* ââ SCROLL REVEAL ââ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__title {
    font-size: 2.8rem;
    letter-spacing: 0.10em;
  }
  .hero__acronym {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .about__stats .glass-card { flex: 1; min-width: 150px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(9, 8, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 32px var(--container-pad);
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }

  .hero__logo { width: 180px; height: 180px; }

  .hero__title {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 16px;
    word-wrap: break-word;
    width: 100%;
  }
  .hero__acronym {
    font-size: 0.75rem;
    text-align: center;
    padding: 0 20px;
  }
  .hero__subtitle {
    font-size: 0.85rem;
    padding: 0 24px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta .btn {
    display: block;
    margin: 0 auto;
    max-width: 280px;
    text-align: center;
  }
  .hero__logo-img--flat {
    max-width: 320px;
    width: 100%;
  }

  .pipeline__stages {
    grid-template-columns: 1fr;
  }
  .timeline__item {
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }
  .timeline__flow {
    gap: 6px;
  }
  .timeline__flow span {
    font-size: 0.65rem;
  }
  .films__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  .about__stats { flex-direction: column; }
  .about__stats .glass-card { min-width: unset; }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    padding: 0 12px;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    text-align: center;
  }
  .films__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   AIVID STUDIOS — 2026-04-08 SIZZLE REBUILD OVERRIDES
   Film-studio pivot: video hero, founder, ticker, countdown
   ═══════════════════════════════════════════════════════ */

/* ── LOGO CLEANUP (remove boxes/glow site-wide) ── */
.nav__logo-img {
  height: 52px !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  filter: none !important;
}
.nav__logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.footer__logo {
  height: 64px !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
}
.footer__brand {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── HERO VIDEO BACKGROUND ── */
.hero {
  position: relative;
}
#hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.hero__bg {
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
}
/* Film grain overlay on top of video */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
  line-height: 1.05 !important;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,200,100,0.06) 0%, transparent 70%);
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  border-radius: 50%;
  left: -400px;
  top: -400px;
}
@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ── TICKER MARQUEE ── */
.ticker-wrap {
  overflow: hidden;
  background: rgba(255,200,100,0.08);
  border-top: 1px solid rgba(255,200,100,0.15);
  border-bottom: 1px solid rgba(255,200,100,0.15);
  padding: 12px 0;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.ticker {
  display: inline-block;
  animation: ticker 60s linear infinite;
  will-change: transform;
}
.ticker span {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,200,100,0.6);
  text-transform: uppercase;
  padding: 0 1rem;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION DIVIDER (upgraded to support <span> content) ── */
.section-divider {
  position: relative;
  height: auto !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem var(--container-pad) !important;
  margin: 0 auto !important;
  max-width: var(--container-max);
  opacity: 0.4;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,200,100,0.4) !important;
  position: relative !important;
  display: block !important;
  width: auto !important;
}
.section-divider span {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,200,100,0.7);
  white-space: nowrap;
  text-transform: uppercase;
  flex: 0 0 auto;
}

/* ── STUDIO VIDEO BANNER ── */
.studio-video-banner {
  width: 100%;
  max-height: 280px;
  overflow: hidden;
  margin: 2rem 0 3rem;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,200,100,0.1), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.studio-video-banner video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.studio-video-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.2) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* ── FOUNDER SECTION ── */
.founder {
  padding: 8rem 0;
  position: relative;
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.founder__photo img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 200, 100, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 2px;
}
.founder__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.founder__text .body-text {
  margin: 0;
}

/* ── AUGUSTUS RELEASE COUNTDOWN ── */
.release-countdown {
  margin: 5rem auto 0;
  max-width: 640px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(255, 200, 100, 0.03);
  border: 1px solid rgba(255, 200, 100, 0.15);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 200, 100, 0.05), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.release-countdown__label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 200, 100, 0.7);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.release-countdown__timer {
  font-family: 'Space Mono', monospace;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFD27A;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 200, 100, 0.3);
}
.release-countdown__date {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ── HAMBURGER MENU LINES ── */
.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav__toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO VIDEO BACKGROUND ── */
#hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  margin-left: -150px;
  margin-top: -150px;
  background: radial-gradient(circle, rgba(255, 200, 100, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  display: none;
}
@media (pointer: fine) {
  .cursor-glow { display: block; }
}

/* ═══════════════════ RESPONSIVE (mobile/tablet) ═══════════════════ */
@media (max-width: 900px) {
  .about__grid,
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pipeline__stages {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .films__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .studio-video-banner,
  .studio-video-banner video {
    max-height: 200px;
    height: 200px;
  }
  .release-countdown {
    padding: 2rem 1.25rem;
    margin: 3rem auto 0;
  }
  .release-countdown__timer {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(9, 8, 10, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255, 200, 100, 0.1);
  }
  .nav__links.open {
    transform: translateY(0);
  }
  .nav__link {
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
  }
  .films__grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 85vh !important;
    padding: 6rem 1.25rem 3rem !important;
  }
  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.6rem) !important;
    letter-spacing: 0.02em !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
    padding: 0 0.5rem;
  }
  .hero__subtitle {
    font-size: 1.05rem !important;
    line-height: 1.5;
    max-width: 90%;
    margin: 1rem auto 2rem;
  }
  .hero__cta {
    font-size: 0.9rem !important;
    padding: 1rem 2rem !important;
  }
  #hero-bg-video {
    object-fit: cover;
    object-position: center center;
  }
  .section-label__text {
    font-size: 0.8rem !important;
  }
  .section-label__number {
    font-size: 1rem !important;
  }
  .heading-2 {
    font-size: clamp(2rem, 7vw, 2.75rem) !important;
    line-height: 1.15 !important;
  }
  .body-text, .section-intro {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }
  .film-card__title {
    font-size: 1.35rem !important;
  }
  .pipeline__stage-title {
    font-size: 1.15rem !important;
  }
  .ticker {
    animation-duration: 40s;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.65rem, 7.5vw, 2.25rem) !important;
    letter-spacing: 0.01em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
  .hero__subtitle {
    font-size: 0.98rem !important;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .heading-2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
  }
  .section-label__text {
    font-size: 0.75rem !important;
  }
}

/* ── STUDIO VISUAL PLACEHOLDER (Cast & Design stage) ── */
.studio-visual-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(255, 200, 100, 0.08) 0%, transparent 70%),
    linear-gradient(135deg, rgba(20, 18, 22, 0.95) 0%, rgba(9, 8, 10, 0.95) 100%);
  border: 1px solid rgba(255, 200, 100, 0.18);
  border-radius: 6px;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(255, 200, 100, 0.72);
  text-transform: uppercase;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.6),
    0 4px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.studio-visual-placeholder::before,
.studio-visual-placeholder::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 200, 100, 0.5);
}
.studio-visual-placeholder::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.studio-visual-placeholder::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
@media (max-width: 720px) {
  .studio-visual-placeholder {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
}