:root {
  --bg: #0b0b0b;
  --panel: #1c1c1c;
  --panel-soft: #1c1c1c;
  --burgundy: #2b0f0f;
  --text: #f4f1ea;
  --muted: #b7afa2;
  --dim: #7c756c;
  --gold: #c6a15b;
  --amber: #ffb347;
  --ai: #00d1ff;
  --line: rgba(244, 241, 234, 0.13);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 clamp(22px, 5vw, 84px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.section-shell,
.hero {
  width: min(100% - 56px, var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: flex-end;
  margin-inline: 0;
  padding: clamp(84px, 9vw, 130px) clamp(28px, 5vw, 84px) clamp(44px, 5vw, 78px);
  overflow: hidden;
  background: var(--bg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background: url("assets/kaali-kaya.jpg") center / cover no-repeat;
  opacity: 0.5;
  transform: scale(1.02);
}

.hero::after {
  background: rgba(11, 11, 11, 0.62);
}

.eyebrow,
.section-kicker,
.proof-card span,
.systems-grid span,
.pipeline-list span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: 5.1rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.7rem;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.85rem;
  line-height: 1;
}

.hero-text,
.section-heading > p:not(.section-kicker),
.closing p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(58vw, 920px);
  min-width: 0;
}

.credit-line {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.8;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.button.primary {
  border-color: rgba(198, 161, 91, 0.58);
  background: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.production-board,
.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.46);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.08) brightness(0.88);
  transition: transform 800ms ease, filter 800ms ease;
}

.proof-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.12) brightness(0.94);
}

.production-board {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 5vw, 84px);
  bottom: clamp(34px, 4vw, 66px);
  width: clamp(420px, 34vw, 560px);
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 8px;
  padding: 38px 8px 8px;
  border-color: rgba(198, 161, 91, 0.28);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(14px);
}

.board-title {
  position: absolute;
  top: 13px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.board-title span,
.board-title strong {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.board-title strong {
  color: var(--muted);
}

.board-card {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.18);
  background: var(--panel);
}

.board-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.46);
}

.board-card.broadcast {
  grid-row: span 2;
}

.board-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.16) contrast(1.08) brightness(0.82);
  transition: transform 800ms ease, filter 800ms ease;
}

.board-card.broadcast img {
  object-position: center top;
}

.board-card.brand-work img,
.board-card.auto-work img {
  object-position: center;
}

.board-card.ott-work img {
  object-position: center top;
}

.board-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.12) brightness(0.9);
}

.board-card span,
.board-card strong {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
}

.board-card span {
  bottom: 46px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-card strong {
  bottom: 14px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--panel-soft);
}

.trust-strip div {
  min-height: 112px;
  padding: clamp(20px, 2.8vw, 32px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.proof-section,
.pipeline-section,
.leverage-section,
.ip-section {
  padding: clamp(110px, 14vw, 190px) 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.proof-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.proof-card {
  flex: 0 0 min(72vw, 760px);
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-snap-align: start;
}

.proof-card.lead {
  flex-basis: min(82vw, 900px);
  min-height: 520px;
}

.proof-card:not(.lead) {
  flex-basis: min(46vw, 500px);
}

.proof-card.broadcast-card::after,
.proof-card.platform-card::after,
.proof-card.music-card::after {
  background: rgba(11, 11, 11, 0.52);
}

.proof-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08) brightness(0.78);
}

.proof-card.broadcast-card img,
.proof-card.platform-card img {
  object-position: center top;
}

.proof-card.music-card img {
  object-position: center;
}

.proof-card span,
.proof-card h3,
.proof-card p {
  position: relative;
  z-index: 2;
}

.proof-card h3 {
  margin-top: 14px;
  max-width: 620px;
}

.proof-card p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.58;
}

.systems-section {
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.systems-section .section-shell {
  padding: clamp(88px, 12vw, 160px) 0;
}

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

.systems-grid article {
  min-height: 340px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.systems-grid article:nth-child(3) {
  border-color: rgba(0, 209, 255, 0.32);
}

.systems-grid h3 {
  margin-top: 68px;
  font-size: 2.2rem;
}

.systems-grid p,
.leverage-grid p,
.fit-list p,
.pipeline-list p,
.footer span {
  color: var(--muted);
  line-height: 1.6;
}

.leverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
}

.leverage-grid article {
  min-height: 310px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.leverage-grid article:last-child {
  border-right: 0;
}

.leverage-grid span,
.fit-list span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.leverage-grid h3 {
  font-size: 1.95rem;
}

.leverage-grid .ai-layer {
  border-color: rgba(0, 209, 255, 0.32);
}

.leverage-grid .ai-layer span {
  color: var(--ai);
}

.pipeline-layout {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 6vw, 86px);
}

.pipeline-list {
  display: grid;
  gap: 12px;
}

.pipeline-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.fit-section {
  border-block: 1px solid var(--line);
  background: var(--panel-soft);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(90px, 12vw, 150px) 0;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fit-list article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--bg);
}

.ip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.ip-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(198, 161, 91, 0.16);
  filter: grayscale(0.18) contrast(1.06) brightness(0.84);
  scroll-snap-align: start;
}

.closing {
  border-top: 1px solid var(--line);
  background: var(--burgundy);
}

.closing-inner {
  padding: clamp(110px, 14vw, 190px) 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(22px, 5vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer div,
.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer nav {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .pipeline-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .production-board {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 38px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .board-card.broadcast {
    grid-row: span 1;
  }

  .trust-strip,
  .leverage-grid,
  .fit-grid,
  .systems-grid,
  .ip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fit-grid {
    gap: 28px;
  }

  .leverage-grid article:nth-child(2) {
    border-right: 0;
  }

  .leverage-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-card,
  .proof-card.lead,
  .proof-card:not(.lead) {
    flex-basis: min(78vw, 620px);
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  .brand {
    font-size: 1.12rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-block: 22px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.68rem;
  }

  .section-shell,
  .hero {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    width: 100%;
    padding-inline: 14px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3,
  .systems-grid h3,
  .leverage-grid h3 {
    font-size: 1.45rem;
  }

  .hero-text,
  .section-heading > p:not(.section-kicker),
  .closing p {
    font-size: 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    padding: 0 14px;
  }

  .production-board {
    grid-template-columns: 1fr;
  }

  .board-card {
    min-height: 270px;
  }

  .trust-strip,
  .leverage-grid,
  .fit-grid,
  .fit-list,
  .systems-grid,
  .ip-grid {
    grid-template-columns: 1fr;
  }

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

  .leverage-grid article:last-child {
    border-bottom: 0;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-card,
  .proof-card.lead,
  .proof-card:not(.lead) {
    flex-basis: min(86vw, 420px);
    min-height: 330px;
  }

  .footer {
    flex-direction: column;
  }
}
