:root {
  --ink: #0b0b13;
  --night: #090a12;
  --night-2: #11121d;
  --paper: #f5f2ea;
  --paper-2: #ece8dc;
  --white: #ffffff;
  --violet: #6657ff;
  --violet-dark: #2c207f;
  --pink: #ff4ea3;
  --orange: #ff7848;
  --yellow: #ffca58;
  --lime: #ccff50;
  --mint: #58e4b4;
  --cyan: #57d6ff;
  --line-dark: rgba(255, 255, 255, .13);
  --line-light: rgba(11, 11, 19, .13);
  --container: min(1180px, calc(100% - 48px));
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shadow: 0 30px 80px rgba(5, 5, 15, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--lime); color: var(--ink); padding: 12px 18px;
  border-radius: 10px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.cursor-glow {
  position: fixed; width: 360px; height: 360px; border-radius: 50%;
  pointer-events: none; z-index: 0; opacity: .13;
  background: radial-gradient(circle, var(--violet), transparent 68%);
  transform: translate(-50%, -50%); transition: opacity .2s ease;
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 16px 0; transition: padding .25s ease, background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(9, 10, 18, .84);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { position: relative; z-index: 2; }
.brand img { width: 178px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.72); font-weight: 700; font-size: .92rem; }
.site-nav > a { transition: color .2s ease; }
.site-nav > a:hover { color: #fff; }
.nav-action {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink) !important; background: var(--lime);
  padding: 13px 18px; border-radius: 999px;
}
.nav-action span { font-size: 1.1rem; }
.menu-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 7px 0; transition: .25s; }

.hero {
  position: relative; min-height: 100vh; color: #fff; background: var(--night);
  overflow: hidden; padding: 148px 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,78,163,.2), transparent 25%),
    radial-gradient(circle at 80% 28%, rgba(102,87,255,.3), transparent 28%),
    radial-gradient(circle at 48% 90%, rgba(88,228,180,.13), transparent 30%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-spark { position: absolute; width: 12px; height: 12px; background: var(--lime); transform: rotate(45deg); }
.spark-a { top: 20%; left: 6%; box-shadow: 0 0 34px var(--lime); }
.spark-b { top: 34%; right: 5%; background: var(--pink); box-shadow: 0 0 34px var(--pink); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 78px; align-items: center; padding-bottom: 96px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(204,255,80,.55); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(204,255,80,0); } 100% { box-shadow: 0 0 0 0 rgba(204,255,80,0); } }
.hero h1 { margin: 24px 0 24px; font-family: "Syne", sans-serif; font-size: clamp(4.2rem, 7.15vw, 7.4rem); line-height: .88; letter-spacing: -.07em; max-width: 800px; }
.hero h1 span { display: block; color: var(--lime); }
.hero-copy > p { max-width: 610px; color: rgba(255,255,255,.66); font-size: 1.13rem; line-height: 1.78; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }
.button { border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 13px; min-height: 54px; padding: 0 23px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--violet); color: #fff; box-shadow: 0 12px 34px rgba(102,87,255,.32); }
.button-secondary { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; backdrop-filter: blur(12px); }
.button-play { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--pink); font-size: .68rem; }
.hero-stats { display: flex; gap: 0; margin-top: 45px; border-top: 1px solid var(--line-dark); max-width: 650px; }
.hero-stats div {
  flex: 1;
  min-width: 0;
  padding: 23px 22px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stats div + div { border-left: 1px solid var(--line-dark); padding-left: 22px; }
.hero-stats strong {
  display: block;
  font-family: "Syne";
  font-size: clamp(1.04rem, 1.35vw, 1.38rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.hero-stats span {
  display: block;
  min-height: 2.5em;
  color: rgba(255,255,255,.45);
  font-size: .76rem;
  line-height: 1.35;
  margin-top: 8px;
}

.hero-stage { position: relative; min-width: 0; }
.stage-orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; z-index: -1; }
.orbit-one { width: 620px; height: 620px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-two { width: 770px; height: 770px; left: 50%; top: 50%; transform: translate(-50%,-50%); opacity: .45; }
.director-window { position: relative; border: 1px solid rgba(255,255,255,.16); background: rgba(20,20,35,.88); border-radius: 25px; box-shadow: var(--shadow); overflow: hidden; transform: rotate(2.2deg); }
.window-top { height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .62rem; letter-spacing: .12em; color: rgba(255,255,255,.48); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ff605c; }
.window-dots span:nth-child(2) { background: #ffbd44; }
.window-dots span:nth-child(3) { background: #00ca4e; }
.window-status { justify-self: end; color: var(--lime); }
.scene-canvas { position: relative; padding: 12px; }
.scene-canvas svg { width: 100%; border-radius: 18px; }
.scene-badge { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 999px; font-size: .72rem; font-weight: 800; box-shadow: 0 12px 28px rgba(0,0,0,.17); }
.badge-story { left: 28px; top: 29px; background: #fff; color: var(--ink); }
.badge-story span { color: var(--violet); }
.badge-frame { right: 29px; bottom: 30px; background: var(--lime); color: var(--ink); }
.badge-frame span { font-family: "Syne"; font-size: 1.05rem; }
.timeline { height: 62px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 17px; padding: 0 17px; border-top: 1px solid rgba(255,255,255,.09); }
.timeline-tools { display: flex; gap: 10px; color: rgba(255,255,255,.55); font-size: .65rem; }
.timeline-track { height: 6px; background: rgba(255,255,255,.13); border-radius: 20px; overflow: hidden; }
.timeline-track i { display: block; width: 57%; height: 100%; background: linear-gradient(90deg, var(--pink), var(--violet)); border-radius: inherit; }
.timeline-time { color: rgba(255,255,255,.58); font-size: .68rem; font-variant-numeric: tabular-nums; }
.floating-note { position: absolute; display: flex; align-items: center; gap: 11px; color: var(--ink); background: #fff; padding: 11px 15px 11px 11px; border-radius: 16px; box-shadow: 0 20px 45px rgba(0,0,0,.22); z-index: 3; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: .8rem; }
.floating-note small { font-size: .61rem; color: #6e6e79; margin-top: 2px; }
.note-icon { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 11px; font-family: "Syne"; font-weight: 800; }
.note-one { left: -32px; bottom: 98px; transform: rotate(-5deg); }
.note-one .note-icon { background: var(--yellow); }
.note-two { right: -35px; top: 86px; transform: rotate(5deg); }
.note-two .note-icon { background: var(--cyan); }

.ticker { position: relative; z-index: 3; overflow: hidden; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #0e0f19; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 27px; padding: 17px 0; animation: ticker 30s linear infinite; font-family: "Syne"; font-weight: 800; font-size: .78rem; letter-spacing: .09em; }
.ticker-track span { color: rgba(255,255,255,.72); }
.ticker-track b { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.overline { margin: 0 0 15px; font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--violet); }
.overline.light { color: var(--lime); }
h2 { margin: 0; font-family: "Syne"; font-size: clamp(2.7rem, 5vw, 5.1rem); line-height: .98; letter-spacing: -.055em; }
.section-heading > p { margin: 0; color: #67656b; line-height: 1.8; }

.work-section { background: var(--paper); }
.work-section .section-heading,
.services-section .section-heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}
.work-section .section-heading h2,
.services-section .section-heading h2 {
  font-size: clamp(2.75rem, 4vw, 3.35rem);
  white-space: nowrap;
}
.featured-work { display: grid; grid-template-columns: 1.45fr .55fr; background: var(--ink); color: #fff; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; }
.featured-thumb { position: relative; border: 0; padding: 0 0 0 24px; cursor: pointer; background: #171722; min-height: 470px; overflow: hidden; }
.featured-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(11,11,19,.9)); }
.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px 0 0 18px;
  transition: filter .3s ease;
}
.featured-thumb:hover img { filter: brightness(.94); }
.featured-play, .video-play { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); }
.featured-play { left: 32px; bottom: 32px; width: 72px; height: 72px; font-size: 1.2rem; }
.featured-label { position: absolute; left: 118px; bottom: 57px; z-index: 2; color: #fff; font-weight: 800; }
.featured-copy { padding: 54px 45px; align-self: center; }
.project-category { color: var(--lime); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.featured-copy h3 { margin: 14px 0 20px; font-family: "Syne"; font-size: 3.4rem; letter-spacing: -.05em; }
.featured-copy > p:not(.project-category) { color: rgba(255,255,255,.62); line-height: 1.72; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 27px 0; }
.project-tags span { border: 1px solid rgba(255,255,255,.17); padding: 8px 10px; border-radius: 999px; font-size: .68rem; color: rgba(255,255,255,.7); }
.inline-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.inline-link span { color: var(--lime); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { min-width: 0; }
.video-thumb { position: relative; display: block; width: 100%; aspect-ratio: 16/10; border: 0; padding: 0; border-radius: 24px; overflow: hidden; background: #1b1b27; cursor: pointer; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,19,.52), transparent 55%); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.video-thumb:hover img { transform: scale(1.06); }
.video-play { width: 52px; height: 52px; left: 18px; bottom: 18px; font-size: .8rem; }
.video-duration { position: absolute; right: 15px; bottom: 17px; z-index: 2; padding: 7px 9px; border-radius: 9px; color: #fff; background: rgba(9,10,18,.68); backdrop-filter: blur(8px); font-size: .65rem; font-weight: 700; }
.video-info { padding: 17px 5px 7px; }
.video-info span { color: var(--violet); font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.video-info h3 { margin: 7px 0 0; font-size: 1.07rem; line-height: 1.45; }
.video-info h3[lang="ml"], .video-info h3 { font-family: "Manrope", "Noto Sans Malayalam", sans-serif; }
.channel-card { min-height: 280px; border-radius: 24px; background: var(--violet); color: #fff; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.channel-symbol { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--pink); }
.channel-card p { font-family: "Syne"; font-size: 1.45rem; line-height: 1.12; letter-spacing: -.025em; }
.channel-card a { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.22); padding-top: 17px; font-weight: 800; font-size: .86rem; }

.services-section { background: #e9e5d8; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(300px, auto); gap: 18px; }
.bento-card { position: relative; overflow: hidden; border-radius: 30px; padding: 29px; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.bento-card h3 { margin: 0 0 13px; font-family: "Syne"; font-size: 1.75rem; line-height: 1.04; letter-spacing: -.04em; }
.bento-card p { margin: 0; line-height: 1.7; opacity: .7; }
.bento-wide { grid-column: span 2; }
.service-top { display: flex; justify-content: space-between; align-items: center; }
.service-top span { font-family: "Syne"; font-size: .75rem; opacity: .58; }
.service-top i { font-style: normal; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); }
.purple { background: var(--violet); color: #fff; }
.lime { background: var(--lime); }
.dark { background: var(--ink); color: #fff; }
.orange { background: var(--orange); }
.light { background: #fff; }
.cyan { background: var(--cyan); }
.yellow { background: var(--yellow); }
.bento-card > * { position: relative; z-index: 2; }
.motion-lines { position: absolute; right: 0; bottom: 25px; width: 49%; display: grid; gap: 12px; transform: rotate(-11deg); }
.motion-lines span { display: block; height: 12px; border-radius: 999px; background: rgba(255,255,255,.17); }
.motion-lines span:nth-child(2) { width: 83%; margin-left: auto; }
.motion-lines span:nth-child(3) { width: 65%; margin-left: auto; }
.motion-lines span:nth-child(4) { width: 42%; margin-left: auto; }
.face-grid { display: flex; gap: 8px; margin-top: 28px; }
.face-grid span { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; background: rgba(255,255,255,.09); font-weight: 800; }
.audio-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 30px; align-items: end; }
.wave { height: 120px; display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
.wave span { width: 9px; height: 35%; border-radius: 99px; background: var(--violet); animation: wave 1.2s ease-in-out infinite alternate; }
.wave span:nth-child(2), .wave span:nth-child(8) { height: 60%; animation-delay: .1s; }
.wave span:nth-child(3), .wave span:nth-child(7) { height: 82%; animation-delay: .2s; }
.wave span:nth-child(4), .wave span:nth-child(6) { height: 48%; animation-delay: .3s; }
.wave span:nth-child(5) { height: 100%; animation-delay: .4s; }
.wave span:nth-child(9) { height: 26%; animation-delay: .15s; }
@keyframes wave { to { transform: scaleY(.58); } }
.vr-orbit {
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 190px;
  aspect-ratio: 1;
}
.vr-orbit span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(11,11,19,.18);
  border-radius: 50%;
}
.vr-orbit span:nth-child(2) { inset: 31px; }
.vr-orbit i {
  position: absolute;
  inset: 76px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 12px rgba(102,87,255,.14);
}
.game-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
}
.game-controls span,
.game-controls b {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: rgba(255,255,255,.1);
  font-size: .8rem;
}
.game-controls b {
  margin-left: 7px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
}
.game-controls b + b {
  margin-left: 0;
  background: var(--pink);
}
.device-pair {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 42%;
  height: 115px;
}
.device-pair span,
.device-pair i {
  position: absolute;
  display: block;
  border: 3px solid rgba(11,11,19,.72);
  background: rgba(255,255,255,.2);
}
.device-pair span {
  inset: 10px 20px 13px 0;
  border-radius: 12px;
}
.device-pair span::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -12px;
  height: 8px;
  border-radius: 0 0 9px 9px;
  background: rgba(11,11,19,.72);
}
.device-pair i {
  right: 0;
  bottom: 0;
  width: 48px;
  height: 91px;
  border-radius: 12px;
  background: var(--paper);
}
.edit-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 6px;
  margin-top: 36px;
  padding-top: 19px;
}
.edit-strip span {
  height: 42px;
  border-radius: 8px;
  background: var(--violet);
}
.edit-strip span:nth-child(2) { background: var(--pink); }
.edit-strip span:nth-child(3) { background: var(--cyan); }
.edit-strip i {
  position: absolute;
  top: 0;
  left: 42%;
  width: 2px;
  height: 69px;
  background: var(--ink);
}
.edit-strip i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%,-50%);
}
.compact-wave {
  justify-content: flex-start;
  height: 82px;
  margin-top: 15px;
}
.compact-wave span {
  background: var(--ink);
}
.qr-demo {
  display: grid;
  grid-template-columns: repeat(3, 18px);
  grid-template-rows: repeat(3, 18px);
  gap: 5px;
  margin-top: 26px;
}
.qr-demo span {
  border-radius: 3px;
  background: var(--ink);
}
.qr-demo span:nth-child(2),
.qr-demo span:nth-child(4),
.qr-demo span:nth-child(8) {
  background: transparent;
  border: 2px solid var(--ink);
}

.studio-section { background: var(--night); color: #fff; }
.studio-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.studio-visual { position: relative; min-height: 570px; }
.studio-card { position: absolute; border-radius: 28px; box-shadow: 0 35px 80px rgba(0,0,0,.3); }
.card-main { inset: 45px 55px 80px 0; background: var(--paper); color: var(--ink); overflow: hidden; transform: rotate(-4deg); }
.clapper-top { height: 64px; background: var(--ink); color: #fff; padding: 0 25px; display: flex; justify-content: space-between; align-items: center; font-size: .7rem; letter-spacing: .1em; }
.clapper-lines { height: 84px; background: repeating-linear-gradient(-45deg, var(--white), var(--white) 28px, var(--ink) 28px, var(--ink) 56px); border-bottom: 2px solid var(--ink); }
.clapper-copy { padding: 75px 42px; }
.clapper-copy small { display: block; color: var(--violet); text-transform: uppercase; font-weight: 800; letter-spacing: .14em; }
.clapper-copy strong { display: block; margin-top: 20px; font-family: "Syne"; font-size: 3.2rem; line-height: .98; letter-spacing: -.055em; }
.card-colour { top: 0; right: 0; width: 145px; padding: 16px; background: #fff; transform: rotate(7deg); display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.card-colour span { aspect-ratio: 1; border-radius: 50%; background: var(--violet); }
.card-colour span:nth-child(2) { background: var(--pink); }
.card-colour span:nth-child(3) { background: var(--lime); }
.card-colour span:nth-child(4) { background: var(--orange); }
.card-colour span:nth-child(5) { background: var(--cyan); grid-column: span 2; aspect-ratio: 2.2; border-radius: 99px; }
.card-quote { left: 70px; right: 0; bottom: 0; background: var(--violet); color: #fff; padding: 24px 29px; font-family: "Syne"; font-size: 1.18rem; line-height: 1.3; transform: rotate(2deg); }
.studio-copy > p:not(.overline) { color: rgba(255,255,255,.59); line-height: 1.8; }
.studio-copy h2 { margin-bottom: 30px; }
.studio-points { margin-top: 35px; }
.studio-points div { display: grid; grid-template-columns: 145px 1fr; gap: 22px; padding: 18px 0; border-top: 1px solid var(--line-dark); }
.studio-points strong { color: var(--lime); font-size: .86rem; }
.studio-points span { color: rgba(255,255,255,.58); font-size: .9rem; }

.process-section { background: var(--paper); }
.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: 60px;
}
.process-heading h2 {
  font-size: clamp(2.75rem, 4vw, 3.35rem);
  white-space: nowrap;
}
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.process-list li { display: grid; grid-template-columns: 120px 1fr 55px; gap: 20px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--line-light); transition: padding .25s ease; }
.process-list li::after { content: "↗"; display: grid; place-items: center; width: 47px; height: 47px; border-radius: 50%; background: #e7e2d4; transition: transform .25s ease, background .25s ease; }
.process-list li:hover { padding-left: 18px; }
.process-list li:hover::after { transform: rotate(45deg); background: var(--lime); }
.process-list li > span { font-family: "Syne"; color: var(--violet); font-size: 1rem; }
.process-list li > div { display: grid; grid-template-columns: .5fr 1fr; gap: 35px; align-items: center; }
.process-list h3 { margin: 0; font-family: "Syne"; font-size: 2rem; letter-spacing: -.04em; }
.process-list p { margin: 0; color: #6b686e; line-height: 1.65; }

.contact-section { position: relative; overflow: hidden; padding: 72px 0; background: var(--violet-dark); color: #fff; }
.contact-pattern { position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(circle, #fff 1.4px, transparent 1.4px); background-size: 28px 28px; mask-image: linear-gradient(90deg, black, transparent 80%); }
.contact-section::after { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; right: -140px; top: -180px; border: 120px solid rgba(255,78,163,.2); }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.contact-copy h2 { margin-bottom: 27px; }
.contact-copy > p:not(.overline) { color: rgba(255,255,255,.64); line-height: 1.75; max-width: 560px; }
.contact-copy .overline.light {
  display: inline-flex;
  width: max-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  letter-spacing: .13em;
}
.contact-links { margin-top: 32px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-links a { display: grid; grid-template-columns: 68px 1fr auto; gap: 15px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-links a span { color: rgba(255,255,255,.48); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-links a strong { font-size: .93rem; }
.contact-links a i { font-style: normal; color: var(--lime); }
.location-line { display: flex; gap: 12px; margin-top: 18px; color: rgba(255,255,255,.64); font-size: .85rem; }
.location-line b { color: var(--lime); }
.contact-form { background: var(--paper); color: var(--ink); border-radius: 34px; padding: 32px; box-shadow: 0 40px 90px rgba(0,0,0,.22); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line-light); margin-bottom: 20px; }
.form-heading span { font-family: "Syne"; font-weight: 800; font-size: 1.25rem; }
.form-heading small { color: #77747a; align-self: center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form label > span { display: block; font-size: .69rem; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; margin: 0 0 7px 3px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(11,11,19,.15); background: #fff; border-radius: 13px; padding: 12px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(102,87,255,.1); }
.contact-form textarea { resize: vertical; }
.form-button { width: 100%; background: var(--ink); color: #fff; }
.form-button span { color: var(--lime); }
.form-note { margin: 11px 0 0; color: #807d82; text-align: center; font-size: .7rem; }

.site-footer { background: #05060a; color: #fff; padding: 48px 0 25px; }
.footer-top { display: grid; grid-template-columns: 200px 1fr auto; gap: 50px; align-items: center; padding-bottom: 35px; border-bottom: 1px solid var(--line-dark); }
.footer-brand img { width: 190px; }
.footer-top p { margin: 0; max-width: 520px; color: rgba(255,255,255,.48); line-height: 1.65; }
.youtube-button { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.18); padding: 12px 16px; border-radius: 999px; font-size: .83rem; font-weight: 800; }
.youtube-button span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: #ff334b; font-size: .65rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 23px; color: rgba(255,255,255,.38); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }

.video-modal { width: min(1060px, calc(100% - 36px)); border: 0; padding: 0; background: transparent; overflow: visible; }
.video-modal::backdrop { background: rgba(3,4,8,.88); backdrop-filter: blur(11px); }
.video-shell { position: relative; padding-top: 56.25%; background: #000; border-radius: 22px; overflow: hidden; }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal-close { position: absolute; z-index: 2; right: 0; top: -48px; width: 39px; height: 39px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: #fff; font-size: 1.45rem; cursor: pointer; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .09s; }
.delay-2 { transition-delay: .18s; }

@media (max-width: 1060px) {
  .site-nav { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { text-align: center; }
  .hero-kicker, .hero-actions { justify-content: center; }
  .hero-copy > p, .hero-stats { margin-inline: auto; }
  .hero-stage { max-width: 760px; margin-inline: auto; }
  .featured-work { grid-template-columns: 1.15fr .85fr; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .studio-layout, .contact-layout { grid-template-columns: 1fr; gap: 70px; }
  .studio-visual { max-width: 700px; width: 100%; margin-inline: auto; }
  .contact-copy { max-width: 760px; }
  .footer-top { grid-template-columns: 190px 1fr; }
  .youtube-button { grid-column: 1 / -1; width: max-content; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 1180px); }
  .site-header { padding: 11px 0; }
  .brand img { width: 160px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed; top: 0; right: 0; width: min(390px, 92vw); height: 100dvh;
    display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 6px;
    padding: 90px 28px 35px; background: rgba(9,10,18,.97); transform: translateX(105%); transition: transform .3s ease;
    box-shadow: -30px 0 70px rgba(0,0,0,.3);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a { padding: 14px 0; font-family: "Syne"; font-size: 1.7rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav .nav-action { border: 0; margin-top: 14px; padding: 16px 19px; font-family: "Manrope"; font-size: .95rem; justify-content: space-between; }
  .menu-toggle.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(3.9rem, 14vw, 6rem); }
  .hero-layout { padding-bottom: 80px; }
  .section { padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .featured-work { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 390px; }
  .featured-thumb::after { background: linear-gradient(to top, rgba(11,11,19,.65), transparent 60%); }
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .bento-card { min-height: 300px; }
  .process-heading { grid-template-columns: 1fr; gap: 10px; }
  .process-list li { grid-template-columns: 70px 1fr 48px; }
  .process-list li > div { grid-template-columns: .6fr 1fr; }
}

@media (max-width: 600px) {
  :root { --container: min(100% - 24px, 1180px); }
  .cursor-glow { display: none; }
  .hero-kicker { font-size: .64rem; line-height: 1.5; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); margin-top: 20px; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-stats div { padding: 18px 6px 0; }
  .hero-stats div + div { padding-left: 6px; }
  .hero-stats strong { font-size: clamp(.78rem, 3.6vw, 1rem); }
  .hero-stats span { min-height: 2.8em; font-size: .58rem; }
  .hero-layout { gap: 50px; }
  .director-window { border-radius: 16px; transform: rotate(0); }
  .window-top { height: 40px; padding: 0 11px; grid-template-columns: auto 1fr auto; }
  .window-label { display: none; }
  .scene-canvas { padding: 7px; }
  .scene-canvas svg { border-radius: 11px; }
  .scene-badge { padding: 6px 8px; font-size: .55rem; }
  .badge-story { left: 15px; top: 16px; }
  .badge-frame { right: 15px; bottom: 16px; }
  .timeline { height: 48px; grid-template-columns: auto 1fr; }
  .timeline-time { display: none; }
  .floating-note { display: none; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 540px; height: 540px; }
  .ticker-track { padding: 14px 0; font-size: .67rem; }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .work-section .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    white-space: normal;
  }
  .work-section .section-heading > p { justify-self: start; }
  .featured-thumb { min-height: 260px; }
  .featured-play { width: 55px; height: 55px; left: 18px; bottom: 18px; }
  .featured-label { display: none; }
  .featured-copy { padding: 31px 24px 34px; }
  .featured-copy h3 { font-size: 2.7rem; }
  .video-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 250px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-wide { grid-column: auto; }
  .bento-card { min-height: 280px; padding: 24px; }
  .audio-layout { grid-template-columns: 1fr; }
  .wave { justify-content: flex-start; height: 90px; }
  .studio-visual { min-height: 460px; }
  .card-main { inset: 35px 22px 60px 0; }
  .clapper-top { height: 50px; padding: 0 16px; }
  .clapper-lines { height: 55px; background-size: 80px 80px; }
  .clapper-copy { padding: 58px 25px; }
  .clapper-copy strong { font-size: 2.4rem; }
  .card-colour { width: 105px; padding: 11px; }
  .card-quote { left: 25px; padding: 18px; font-size: .94rem; }
  .studio-points div { grid-template-columns: 1fr; gap: 6px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 10px; padding: 25px 0; }
  .process-list li::after { display: none; }
  .process-list li > div { grid-template-columns: 1fr; gap: 8px; }
  .process-list h3 { font-size: 1.55rem; }
  .contact-section { padding: 64px 0; }
  .contact-form { padding: 24px 18px; border-radius: 25px; }
  .form-heading { display: block; }
  .form-heading small { display: block; margin-top: 7px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-links a { grid-template-columns: 58px 1fr auto; }
  .footer-top, .footer-bottom { display: block; }
  .footer-top > * { margin-bottom: 25px; }
  .youtube-button { width: max-content; }
  .footer-bottom div { margin-top: 15px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Alignment and responsive refinements */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 14px;
  background: #0b3d33;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.brand-mark img {
  width: 107%;
  height: 107%;
  object-fit: cover;
  transform: scale(1.075);
}
.brand-name {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  transform: scaleY(1.08);
  transform-origin: left center;
}

.featured-work {
  grid-template-columns: minmax(0, 1.48fr) minmax(310px, .72fr);
  min-height: 0;
  align-items: stretch;
}
.featured-thumb {
  min-width: 0;
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
  align-self: stretch;
}
.featured-copy {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 3.5vw, 48px);
}
.featured-copy h3 {
  font-size: clamp(2.65rem, 4vw, 3.4rem);
}
.featured-copy h3[lang="ml"] {
  font-family: "Noto Sans Malayalam", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.video-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,11,19,.06);
}
.video-thumb {
  aspect-ratio: 16 / 9;
}
.video-info {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 20px 20px;
}
.channel-card {
  height: 100%;
  min-height: 0;
  grid-column: auto;
}

.bento-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(300px, auto);
  align-items: stretch;
}
.bento-grid > .bento-card:nth-child(1) { grid-column: 1 / span 8; }
.bento-grid > .bento-card:nth-child(2) { grid-column: 9 / span 4; }
.bento-grid > .bento-card:nth-child(3) { grid-column: 1 / span 4; }
.bento-grid > .bento-card:nth-child(4) { grid-column: 5 / span 8; }
.bento-grid > .bento-card:nth-child(4) > div:nth-child(2) { max-width: 52%; }
.bento-grid > .bento-card:nth-child(5) { grid-column: 1 / span 4; }
.bento-grid > .bento-card:nth-child(6) { grid-column: 5 / span 4; }
.bento-grid > .bento-card:nth-child(7) { grid-column: 9 / span 4; }
.bento-card {
  height: 100%;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: start;
}
.contact-copy,
.contact-form {
  min-width: 0;
  height: auto;
}
.contact-copy {
  display: flex;
  flex-direction: column;
}
.contact-copy h2 {
  max-width: 560px;
  font-size: clamp(3rem, 4.2vw, 4.7rem);
}
.contact-copy .contact-links {
  margin-top: 32px;
}
.contact-form {
  display: block;
}
.contact-form > label:last-of-type {
  display: block;
  min-height: 0;
}
.contact-form > label:last-of-type textarea {
  min-height: 140px;
}

.footer-brand {
  display: inline-grid;
  place-items: center;
  width: 118px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
}
.footer-brand img {
  width: 100%;
  height: auto;
}

@media (max-width: 1060px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bento-grid > .bento-card:nth-child(1),
  .bento-grid > .bento-card:nth-child(4),
  .bento-grid > .bento-card:nth-child(7) { grid-column: 1 / -1; }
  .bento-grid > .bento-card:nth-child(2),
  .bento-grid > .bento-card:nth-child(3),
  .bento-grid > .bento-card:nth-child(5),
  .bento-grid > .bento-card:nth-child(6) { grid-column: auto; }
  .bento-grid > .bento-card:nth-child(4) > div:nth-child(2) { max-width: 58%; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
    align-items: start;
  }
  .contact-copy,
  .contact-form { height: auto; }
  .contact-copy .contact-links { margin-top: 32px; }
  .contact-form > label:last-of-type { min-height: 0; }
  .contact-form > label:last-of-type textarea { min-height: 140px; }
}

@media (max-width: 920px) {
  .featured-work {
    grid-template-columns: 1fr;
  }
  .featured-thumb {
    height: auto;
    aspect-ratio: 16 / 8.7;
  }
  .featured-thumb::after {
    background: linear-gradient(to top, rgba(11,11,19,.72), transparent 62%);
  }
}

@media (max-width: 820px) {
  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 12px;
  }
  .brand-name { font-size: 1.2rem; }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-section .section-heading h2,
  .services-section .section-heading h2,
  .process-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .brand { gap: 11px; }
  .brand-mark {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
  }
  .brand-name { font-size: 1.12rem; }
  .featured-thumb { padding-left: 14px; aspect-ratio: 16 / 10; }
  .video-grid { grid-template-columns: 1fr; }
  .video-info { min-height: 0; padding-bottom: 18px; }
  .channel-card { min-height: 250px; grid-column: 1; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid > .bento-card:nth-child(n) { grid-column: 1; }
  .bento-grid > .bento-card:nth-child(4) > div:nth-child(2) { max-width: 100%; }
  .device-pair { opacity: .34; }
  .contact-copy h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .contact-links a {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
  }
  .contact-links a strong {
    overflow-wrap: anywhere;
  }
  .footer-brand { width: 104px; }
}
