:root {
  --ink: #0b0d14;
  --paper: #f4f6fb;
  --muted: #767b8f;
  --line: rgba(255, 255, 255, 0.14);
  --coral: #ff3928;
  --cyan: #ff8a3d;
  --yellow: #f5d24b;
  --green: #28f0ad;
  --violet: #8a5cff;
  --charcoal: #05060c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 6, 12, 0.84);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 66px;
  height: 66px;
}

.brand-logo {
  position: absolute;
  inset: 0 auto auto 0;
  width: 66px;
  height: 66px;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  color: var(--cyan);
  opacity: 1;
}

.sound-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.sound-toggle:hover,
.sound-toggle.is-on {
  border-color: rgba(255, 122, 46, 0.72);
  background: linear-gradient(135deg, rgba(255, 57, 40, 0.86), rgba(255, 122, 46, 0.86));
  transform: translateY(-1px);
}

.sound-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.sound-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 5px;
  width: 8px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  opacity: 0.4;
}

.sound-toggle.is-on .sound-icon::after {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 140px clamp(18px, 5vw, 64px) 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-video,
.hero-canvas,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  background: url("assets/studio-hero.png") center / cover no-repeat;
  opacity: 0.58;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 118, 45, 0.58), transparent 32%),
    radial-gradient(circle at 16% 55%, rgba(255, 0, 0, 0.46), transparent 22%),
    linear-gradient(90deg, rgba(3, 3, 6, 0.9), rgba(8, 5, 5, 0.52) 50%, rgba(4, 4, 8, 0.78)),
    linear-gradient(0deg, rgba(3, 3, 6, 0.74), rgba(3, 3, 6, 0.02));
}

.hero-grid {
  opacity: 0.26;
  background:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  animation: grid-drift 9s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 590px;
  animation: hero-enter 720ms ease both;
}

.hero-logo {
  width: clamp(180px, 24vw, 320px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(255, 57, 40, 0.24);
}

h2 {
  margin-bottom: 0;
  max-width: 800px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff3c25, #ff7a2e);
  box-shadow: 0 16px 38px rgba(255, 61, 24, 0.35);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}


.section,
.intro-band,
.portfolio-band,
.contact-section {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 64px);
}

.intro-band {
  padding-top: 34px;
  padding-bottom: 34px;
  background: linear-gradient(90deg, #080606, #180b08);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 2.3vw, 1.7rem);
  line-height: 1.35;
}

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

.stats span {
  border: 1px solid rgba(255, 122, 46, 0.28);
  padding: 14px 12px;
  text-align: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.045);
}

.section {
  background:
    linear-gradient(180deg, rgba(22, 217, 255, 0.05), transparent 260px),
    var(--charcoal);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.light {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.service-card:nth-child(2) {
  border-top: 6px solid var(--cyan);
}

.service-card:nth-child(3) {
  border-top: 6px solid var(--yellow);
}

.service-card:nth-child(4) {
  border-top: 6px solid var(--green);
}

.service-card:nth-child(5) {
  border-top: 6px solid var(--cyan);
}

.service-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card p,
.process-list p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.business-branding {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 122, 46, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 57, 40, 0.08), transparent 36%),
    #080607;
  color: var(--white);
}

.business-copy {
  max-width: 640px;
}

.business-copy h2 {
  margin-bottom: 22px;
}

.business-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.business-branding img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portfolio-band {
  background:
    linear-gradient(135deg, rgba(138, 92, 255, 0.24), transparent 38%),
    linear-gradient(315deg, rgba(22, 217, 255, 0.18), transparent 42%),
    #05060c;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.flyer-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 26px;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.flyer-card,
.motion-card {
  aspect-ratio: 4 / 5.2;
  min-height: 0;
  padding: 0;
  background: #080808;
}

.flyer-card img,
.motion-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.flyer-card::after,
.motion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.88)),
    linear-gradient(135deg, rgba(255, 57, 40, 0.1), transparent 44%);
}

.flyer-card:hover img,
.motion-card:hover video {
  opacity: 0.82;
  transform: scale(1.045);
}

.work-info {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.work-card p,
.work-info p {
  margin-bottom: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card h3,
.work-info h3 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 1.7vw, 2rem);
}

.work-coral {
  background:
    linear-gradient(135deg, rgba(255, 61, 110, 0.92), rgba(5, 6, 12, 0.56)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 12px, transparent 12px 24px);
}

.work-cyan {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #16d9ff, #16426f);
}

.work-green {
  background:
    linear-gradient(135deg, rgba(40, 240, 173, 0.75), rgba(5, 6, 12, 0.88)),
    linear-gradient(90deg, rgba(245, 210, 75, 0.24) 0 20%, transparent 20% 100%);
}

.motion-card .work-info p {
  color: var(--cyan);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 220px;
  border-top: 2px solid rgba(22, 217, 255, 0.42);
  padding-top: 22px;
  counter-increment: steps;
}

.process-list li::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 48px;
  color: var(--green);
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 61, 110, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(22, 217, 255, 0.1), transparent 42%),
    #f3f4f8;
  color: var(--ink);
}

.contact-copy,
.contact-form {
  max-width: 620px;
}

.section-logo {
  width: clamp(132px, 16vw, 190px);
  height: auto;
  margin-bottom: 28px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy p {
  color: #606472;
  line-height: 1.65;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  border: 1px solid var(--ink);
  padding: 10px 12px;
  font-weight: 900;
}

.social-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  margin-top: 16px;
}

.social-links a,
.footer-socials a {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 57, 40, 0.42);
  border-radius: 999px;
  padding: 0;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.social-icon {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.social-links a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
}

.footer-socials a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.social-links a:hover,
.footer-socials a:hover {
  color: var(--white);
  background: linear-gradient(135deg, #ff3c25, #ff7a2e);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
  border-radius: 8px;
  padding: clamp(18px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 8px;
  color: #606472;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(11, 13, 20, 0.16);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #168b69;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: #03040a;
}

.site-footer p {
  margin: 0;
}

.footer-logo {
  width: 116px;
  height: auto;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  min-width: 68px;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #22c55e, #13a653);
  padding: 0 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 24px rgba(34, 197, 94, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38), 0 0 34px rgba(34, 197, 94, 0.48);
}

.whatsapp-float-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-float span {
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 86px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    color: var(--white);
    background: rgba(5, 6, 12, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .sound-toggle {
    order: 2;
  }

  .brand,
  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .intro-grid,
  .contact-section,
  .business-branding {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 118px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 5, 12, 0.9), rgba(4, 5, 12, 0.52)),
      linear-gradient(0deg, rgba(4, 5, 12, 0.58), rgba(4, 5, 12, 0.08));
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .footer-copy {
    justify-items: center;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-width: 60px;
    min-height: 60px;
    padding: 0 14px;
  }

  .whatsapp-float-icon {
    width: 31px;
    height: 31px;
  }

  .whatsapp-float span {
    display: none;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .process-list,
  .portfolio-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .work-card,
  .service-card {
    min-height: 230px;
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 64px 64px;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
