:root {
  --black: #020305;
  --charcoal: #0b0d10;
  --panel: #111318;
  --line: rgba(255, 255, 255, 0.14);
  --white: #f4f7fb;
  --muted: #9ba3ad;
  --blue: #006dff;
  --blue-hot: #00a2ff;
  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, rgba(0, 109, 255, 0.12), transparent 28rem),
    var(--black);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  z-index: 1;
}

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

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

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 109, 255, 0.22), transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 200ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 3, 5, 0.64);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.nav-links,
.hero-actions,
.audience-list {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--white);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a,
.header-cta {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.header-cta {
  color: var(--blue-hot);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 5vw, 5rem) 2rem;
  overflow: hidden;
}

.hero-image,
.grain,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.72);
  transform: translateY(calc(var(--scroll-y, 0) * 0.08px)) scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.92), rgba(2, 3, 5, 0.46) 46%, rgba(2, 3, 5, 0.18)),
    linear-gradient(0deg, var(--black), transparent 38%);
  z-index: 1;
}

.grain {
  z-index: 2;
  opacity: 0.24;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  animation: grain-shift 550ms steps(2) infinite;
}

.hero-content,
.hero-stats,
section,
.site-footer {
  position: relative;
  z-index: 3;
}

.hero-content {
  width: min(66rem, 100%);
}

.eyebrow,
.section-kicker {
  color: var(--blue-hot);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(4.4rem, 13vw, 12.8rem);
  line-height: 0.82;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.8rem, 7vw, 7.8rem);
  line-height: 0.9;
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 0.95;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.hero-copy {
  width: min(42rem, 100%);
  margin-top: 1.4rem;
  color: rgba(244, 247, 251, 0.78);
  font-weight: 600;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.2rem;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 32px rgba(0, 109, 255, 0.36);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(46rem, 100%);
  margin-top: 4rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-stats span,
.proof-item {
  min-height: 7rem;
  padding: 1rem;
  background: rgba(2, 3, 5, 0.66);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats strong,
.proof-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--blue);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.ticker span {
  padding: 0.9rem 1.4rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto,
.services,
.studio-panel,
.proof,
.campaign,
.contact {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.manifesto p {
  width: min(55rem, 100%);
  margin-top: 1.5rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  background: linear-gradient(180deg, rgba(0, 109, 255, 0.24), rgba(255, 255, 255, 0.03));
  transform: translateY(-6px);
}

.service-card span {
  color: var(--blue-hot);
  font-family: var(--font-head);
  font-size: 1.45rem;
}

.service-card p {
  font-size: 0.98rem;
}

.studio-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--charcoal);
}

.studio-image-wrap {
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.studio-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  transition: transform 900ms ease;
}

.studio-image-wrap:hover img {
  transform: scale(1.04);
}

.studio-copy p {
  margin-top: 1.4rem;
}

.audience-list {
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.audience-list span {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.campaign {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 109, 255, 0.12), transparent 28rem),
    #050608;
}

.campaign-image {
  width: 100%;
  max-height: 82svh;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 24px 24px 0 rgba(0, 109, 255, 0.72);
}

.campaign-copy p {
  width: min(38rem, 100%);
  margin-top: 1.5rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

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

@keyframes grain-shift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(2px, -2px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section-grid,
  .section-heading,
  .studio-panel,
  .proof,
  .campaign,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .campaign {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand-lockup span:last-child,
  .header-cta {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 14vw, 4.25rem);
    line-height: 0.92;
  }

  .hero {
    min-height: 100svh;
    display: block;
    padding-top: 7.4rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero h1[data-reveal],
  .hero .hero-copy[data-reveal] {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .hero-stats {
    margin-top: 2rem;
  }

  .hero-stats,
  .proof-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 18rem;
  }

  .studio-image-wrap,
  .studio-image-wrap img {
    min-height: 24rem;
  }

  .campaign-image {
    box-shadow: 12px 12px 0 rgba(0, 109, 255, 0.72);
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
