@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Display";
  src: url("assets/fonts/thmanyahserifdisplay-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Text";
  src: url("assets/fonts/thmanyahseriftext-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Text";
  src: url("assets/fonts/thmanyahseriftext-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Text";
  src: url("assets/fonts/thmanyahseriftext-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Text";
  src: url("assets/fonts/thmanyahseriftext-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif Text";
  src: url("assets/fonts/thmanyahseriftext-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #120816;
  --ink-2: #1c0d24;
  --purple: #2d1344;
  --violet: #6627e8;
  --orange: #ff6b1a;
  --gold: #ffd13d;
  --rose: #ef3f63;
  --paper: #fff3df;
  --cream: #f7ead5;
  --white: #fffaf0;
  --green: #00b36b;
  --cyan: #54d6ff;
  --line: #120816;
  --soft-line: rgba(18, 8, 22, 0.16);
  --shadow: 0 22px 70px rgba(18, 8, 22, 0.28);
  --sans: "Thmanyah Sans", Tahoma, sans-serif;
  --display: "Thmanyah Serif Display", "Thmanyah Sans", serif;
  --text: "Thmanyah Serif Text", "Thmanyah Sans", serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
p,
span,
strong,
small,
a,
li {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--ink);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader-mark {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18, 8, 22, 0.5);
  animation: preloaderPulse 1.1s ease-in-out infinite;
}

.preloader-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-bar {
  width: 160px;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.14);
  border-radius: 99px;
}

.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  animation: preloaderBar 1.1s ease-in-out infinite;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
}

@keyframes preloaderBar {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(340%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-mark,
  .preloader-bar span {
    animation: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  z-index: 50;
  background-size: 9px 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
  background-size: 120px 120px;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H120V120H0Z' fill='none' stroke='%23fffaf0' stroke-width='1'/%3E%3Cpath d='M40 0V120M80 0V120M0 40H120M0 80H120' fill='none' stroke='%23fffaf0' stroke-width='.45'/%3E%3C/svg%3E");
}

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

p {
  margin: 0;
  font-family: var(--text);
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.45rem);
  font-weight: 400;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  object-fit: cover;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 6px;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 5px 5px 0 var(--rose);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 300;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.main-nav a,
.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 6px;
  color: rgba(255, 250, 240, 0.86);
  font-weight: 500;
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease;
}

.main-nav a:hover,
.nav-action:hover {
  color: var(--ink);
  background: var(--gold);
}

.nav-action {
  background: var(--violet);
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.24);
}

.scene {
  position: relative;
  min-height: auto;
  padding: clamp(78px, 7vw, 118px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 3px solid currentColor;
}

.scene > * {
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* Keep grids from sprawling edge-to-edge on very wide screens. */
.stats-grid,
.content-grid,
.voice-columns,
.platform-cards,
.stories-grid,
.vision-grid,
.values,
.hero,
.about,
.platforms,
.contact {
  max-width: 1360px;
  margin-inline: auto;
}

.theme-ink {
  background: var(--ink);
  color: var(--white);
}

.theme-paper {
  background: var(--paper);
  color: var(--ink);
}

.theme-cream {
  background: var(--cream);
  color: var(--ink);
}

.theme-violet {
  background: var(--violet);
  color: var(--white);
}

.theme-orange {
  background: var(--orange);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  padding-top: clamp(96px, 9vw, 134px);
  min-height: 100svh;
}

.hero-copy {
  grid-column: 1 / span 7;
}

.hero-stage {
  grid-column: 8 / span 5;
}

.hero::before,
.hero::after,
.about::before,
.content::before,
.platforms::before,
.stories::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid currentColor;
  opacity: 0.16;
}

.hero::before {
  width: 36vw;
  height: 24vw;
  top: 16%;
  right: -9vw;
  transform: rotate(-7deg);
}

.hero::after {
  width: 18vw;
  height: 18vw;
  left: 5vw;
  bottom: 7vw;
  transform: rotate(11deg);
}

.scene-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 12px 5px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: 5px 5px 0 var(--rose);
  transform: rotate(-1deg);
}

.scene-kicker.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
  padding-block: 0.1em 0.16em;
  overflow: visible;
}

.hero-title {
  max-width: 100%;
  font-size: clamp(3.35rem, 7.5vw, 7.35rem);
  filter: drop-shadow(9px 9px 0 rgba(239, 63, 99, 0.35));
}

.title-line {
  display: block;
  max-width: 100%;
  overflow: visible;
  transform-origin: right center;
  animation: titleSlide 950ms cubic-bezier(0.2, 0.85, 0.18, 1) both;
}

.title-line-alt {
  margin-top: 18px;
  color: var(--gold);
  animation-delay: 150ms;
  font-size: 0.42em;
  line-height: 1.28;
}

.hero-lead {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.08rem, 0.82vw + 0.98rem, 1.48rem);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid currentColor;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.2;
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--gold);
}

.button-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: 7px 7px 0 var(--rose);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--rose);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
}

.motion-board {
  position: relative;
  width: min(590px, 100%);
  height: 62px;
  margin-top: 26px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 8px 8px 0 var(--violet), -5px -5px 0 var(--rose);
  transform: rotate(-1deg);
}

.motion-board span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 18px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  transform: translateY(120%);
  animation: motionText 12s infinite;
}

.motion-board span:nth-child(2) {
  animation-delay: 3s;
}

.motion-board span:nth-child(3) {
  animation-delay: 6s;
}

.motion-board span:nth-child(4) {
  animation-delay: 9s;
}

.hero-stage {
  position: relative;
  min-height: min(60vh, 620px);
  transform: translate3d(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px), 0);
  transition: transform 120ms ease-out;
}

.hero-stage::before {
  content: "01 / MEDIA SIGNAL";
  position: absolute;
  top: 0;
  left: 10%;
  z-index: 1;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--cyan);
  border: 2px solid var(--white);
  border-radius: 4px;
  font-weight: 900;
  transform: rotate(5deg);
  box-shadow: 5px 5px 0 var(--ink);
}

.logo-plate {
  position: absolute;
  top: 8%;
  right: 12%;
  display: grid;
  place-items: center;
  width: min(330px, 78vw);
  aspect-ratio: 1;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: var(--purple);
  border: 3px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 8, 22, 0.4);
  animation: floatPlate 6s ease-in-out infinite;
}

.hero-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 10px 13px 8px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 6px 6px 0 var(--white);
  animation: floatNote 5s ease-in-out infinite;
}

.note-one {
  top: 9%;
  left: 7%;
  background: var(--gold);
}

.note-two {
  top: 47%;
  left: 0;
  background: var(--cyan);
  animation-delay: -1s;
}

.note-three {
  right: 0;
  bottom: 13%;
  background: var(--orange);
  animation-delay: -2.2s;
}

.note-four {
  top: 76%;
  right: 17%;
  background: var(--rose);
  color: var(--white);
  animation-delay: -3.2s;
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border-block: 3px solid var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 14px 0;
  animation: tickerMove 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 5px 18px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.65rem);
  font-weight: 700;
  white-space: nowrap;
}

.about,
.platforms,
.contact {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.about .section-copy,
.platforms .section-copy,
.contact .contact-card {
  grid-column: 1 / span 5;
}

.about .collage,
.platforms .orbit-wrap,
.contact .contact-form {
  grid-column: 6 / span 7;
}

.about::before {
  width: 31vw;
  height: 18vw;
  top: 17%;
  left: -12vw;
  transform: rotate(8deg);
}

.section-copy,
.section-header,
.voice-main,
.partnership-copy,
.contact-card {
  max-width: 780px;
}

.section-title {
  margin-bottom: 24px;
  max-width: min(100%, 15.5ch);
  font-size: clamp(2.9rem, 6.2vw, 7rem);
  line-height: 1.2;
}

.section-title .word {
  display: inline-block;
  max-width: 100%;
  padding-block: 0.015em 0.075em;
  vertical-align: top;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  transform: translateY(105%) rotate(-2deg);
  opacity: 0;
  animation: wordRise 720ms cubic-bezier(0.18, 0.86, 0.22, 1) forwards;
  animation-delay: calc(var(--word-index, 0) * 55ms);
  animation-play-state: paused;
}

.in-view .section-title .word,
.hero-title .word {
  animation-play-state: running;
}

.hero-title .word {
  display: inline-block;
  max-width: 100%;
  padding-block: 0.015em 0.075em;
  vertical-align: top;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  transform: translateY(105%) rotate(-2deg);
  opacity: 0;
  animation: wordRise 780ms cubic-bezier(0.18, 0.86, 0.22, 1) forwards;
  animation-delay: calc(180ms + var(--word-index, 0) * 70ms);
}

.section-title > span {
  display: block;
}


.section-copy p + p,
.section-header p,
.voice-main p,
.partnership-copy p,
.contact-card p {
  margin-top: 18px;
}

.collage {
  position: relative;
  min-height: 560px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--violet);
}

.cutout {
  position: absolute;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: 12px 12px 0 var(--ink);
}

.cutout span,
.cutout strong,
.cutout small {
  display: block;
}

.cutout span {
  font-weight: 900;
}

.cutout strong {
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
}

.cutout small {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.cutout-big {
  width: min(420px, 82vw);
  top: 28px;
  right: 8%;
  background: var(--gold);
  transform: rotate(-4deg);
}

.cutout-orange {
  width: 230px;
  top: 320px;
  right: 0;
  color: var(--white);
  background: var(--orange);
  transform: rotate(8deg);
}

.cutout-ink {
  width: 245px;
  top: 246px;
  left: 6%;
  color: var(--white);
  background: var(--ink);
  border-color: var(--white);
  transform: rotate(-8deg);
}

.scribble {
  position: absolute;
  border: 4px solid currentColor;
  border-radius: 50%;
  color: var(--rose);
  opacity: 0.9;
}

.scribble-one {
  width: 180px;
  height: 76px;
  top: 58px;
  left: 18%;
  transform: rotate(-18deg);
}

.impact {
  min-height: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 5vw, 58px);
}

.stat-card {
  position: relative;
  min-height: 240px;
  padding: 68px 22px 22px; /* Increased top padding to avoid overlapping icons/badges */
  color: var(--white);
  background: var(--purple);
  border: 2px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(18, 8, 22, 0.4);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.stat-card:hover {
  border-color: var(--gold);
  box-shadow: 10px 10px 0 var(--gold);
}

.stat-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  transform: rotate(3deg);
  transition: transform 320ms cubic-bezier(0.18, 0.86, 0.22, 1);
}

.stat-card:hover .stat-icon {
  transform: scale(1.18) rotate(-6deg);
}

.stat-card::before {
  content: "LIVE";
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 3px 8px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 900;
}

.stat-card::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 14px;
  left: 18px;
  bottom: 20px;
  background: var(--gold);
  transform: rotate(-4deg);
}

.stat-number {
  display: block;
  color: var(--gold);
  font-family: "Segoe UI", Arial, var(--sans);
  font-size: clamp(3rem, 5.6vw, 6.4rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 0.85;
}

.stat-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
}

.content::before {
  width: 220px;
  height: 70px;
  top: 120px;
  left: 10vw;
  color: var(--gold);
  transform: rotate(-12deg);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 286px;
  padding: clamp(18px, 2.2vw, 28px);
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--white);
  border-radius: 7px;
  box-shadow: 10px 10px 0 var(--violet);
  transform-origin: center;
  overflow: hidden;
}

.icon-3d {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 64px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.82;
}

.service-card:nth-child(2n) {
  background: var(--gold);
  box-shadow: 10px 10px 0 var(--rose);
}

.service-card:nth-child(3n) {
  color: var(--white);
  background: var(--orange);
  box-shadow: 10px 10px 0 var(--gold);
}

.service-index {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 300;
  line-height: 1;
}

.service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(34px, 4vw, 46px);
  margin-bottom: 16px;
  min-width: 0;
}

.service-icon {
  display: inline-grid;
  flex-shrink: 0;
  place-items: center;
  width: clamp(58px, 6vw, 78px);
  height: clamp(58px, 6vw, 78px);
  transform: rotate(-4deg);
}

.service-card h3 {
  flex: 1 1 auto;
  max-width: 9.5ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.35vw, 2.7rem);
  font-weight: 900;
  line-height: 1.16;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.service-card p {
  max-width: 30ch;
  align-self: start;
  margin-top: 0;
  font-family: var(--sans);
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.12rem);
  line-height: 1.55;
  color: currentColor;
}

.voice {
  min-height: auto;
}

.voice-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.voice-column {
  min-height: 280px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 9px 9px 0 var(--orange);
}

.voice-column:nth-child(2) {
  box-shadow: 9px 9px 0 var(--violet);
}

.voice-column:nth-child(3) {
  box-shadow: 9px 9px 0 var(--rose);
}

.hand-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  transform: rotate(-4deg);
}

.voice-column h3 {
  margin: 32px 0 12px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.16;
}

.platforms::before {
  width: 300px;
  height: 120px;
  right: -70px;
  bottom: 120px;
  transform: rotate(9deg);
}

.platforms {
  align-items: start;
  row-gap: clamp(28px, 5vw, 56px);
}

.platforms .section-copy {
  position: relative;
  align-self: center;
  max-width: 620px;
  padding-inline-start: clamp(16px, 2vw, 26px);
  border-inline-start: 7px solid var(--orange);
}

.platforms .section-title {
  max-width: 10ch;
  margin-bottom: 18px;
}

.platforms .section-copy p {
  max-width: 42ch;
  font-size: clamp(1.04rem, 0.45vw + 0.96rem, 1.22rem);
  line-height: 1.75;
}

.orbit-wrap {
  position: relative;
  width: min(540px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 12px 12px 0 var(--violet);
  overflow: visible;
}

.orbit-wrap::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 2px dashed var(--ink);
  border-radius: 8px;
  animation: orbitFrame 12s linear infinite;
}

.orbit-center {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: var(--white);
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 10px;
}

.orbit-logo {
  width: 62%;
  aspect-ratio: 1;
  object-fit: contain;
}

.orbit-center strong {
  font-weight: 900;
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
}

.orbit-item {
  position: absolute;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 7px;
  min-width: 104px;
  min-height: 50px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
  animation: orbitPulse 4s ease-in-out infinite;
}

.orbit-item .icon-3d {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.orbit-a {
  top: 8%;
  right: 41%;
}

.orbit-b {
  top: 34%;
  right: 4%;
  background: var(--rose);
  color: var(--white);
  animation-delay: -0.8s;
}

.orbit-c {
  left: 8%;
  top: 30%;
  background: var(--orange);
  color: var(--white);
  animation-delay: -1.6s;
}

.orbit-d {
  bottom: 12%;
  right: 16%;
  background: var(--cyan);
  animation-delay: -2.4s;
}

.orbit-e {
  bottom: 10%;
  left: 16%;
  background: var(--violet);
  color: var(--white);
  animation-delay: -3.1s;
}

.platform-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: 38px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 172px;
  padding: 18px 18px 20px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 7px 7px 0 var(--orange);
}

.platform-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.platform-card:nth-child(2) {
  background: var(--gold);
}

.platform-card:nth-child(4) {
  color: var(--white);
  background: var(--violet);
}

.platform-card:nth-child(5) {
  color: var(--white);
  background: var(--rose);
}

.platform-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.12;
}

.platform-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.presence {
  display: grid;
  place-items: center;
  min-height: 62svh;
  text-align: center;
}

.presence .section-header {
  padding: clamp(24px, 5vw, 58px);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(-1deg);
}

.presence .scene-kicker {
  margin-inline: auto;
}

.vision {
  min-height: auto;
}

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

.vision-panel {
  min-height: 330px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 7px;
  box-shadow: 10px 10px 0 var(--rose);
}

.vision-panel:nth-child(2) {
  background: var(--white);
  box-shadow: 10px 10px 0 var(--violet);
}

.vision-panel h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 1.14;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.values > span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 14px 6px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--gold);
  animation: badgeBounce 4s ease-in-out infinite;
}

.values > span:nth-child(2n) {
  background: var(--orange);
  color: var(--white);
  animation-delay: -1s;
}

.values > span:nth-child(3n) {
  background: var(--rose);
  color: var(--white);
  animation-delay: -2s;
}

.stories::before {
  width: 260px;
  height: 260px;
  left: -120px;
  top: 220px;
  transform: rotate(17deg);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 10px 10px 0 var(--ink);
}

.story-art {
  display: grid;
  place-items: center;
  height: 170px;
  margin-bottom: 17px;
  color: var(--white);
  border: 3px solid var(--ink);
  border-radius: 5px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
}

.art-violet {
  background: var(--violet);
}

.art-gold {
  color: var(--ink);
  background: var(--gold);
}

.art-rose {
  background: var(--rose);
}

.art-orange {
  background: var(--orange);
}

.story-card span {
  font-weight: 900;
}

.story-card h3 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.6vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
}

.story-card p {
  font-size: 1rem;
}

.story-card a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 13px 6px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
  font-weight: 700;
}

.partnership {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.partnership::before {
  content: "AD / COLLAB / CAMPAIGN";
  position: absolute;
  top: 18%;
  left: 8vw;
  color: rgba(255, 250, 240, 0.12);
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  max-width: 7ch;
}

.partnership-actions {
  display: grid;
  gap: 14px;
  min-width: min(320px, 100%);
}

.arrow-note {
  position: absolute;
  left: 9vw;
  bottom: 12vh;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  transform: rotate(-8deg);
  box-shadow: 7px 7px 0 var(--ink);
}

.arrow-note::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 3px;
  right: 88%;
  top: 54%;
  background: var(--gold);
  border: 1px solid var(--ink);
  transform: rotate(12deg);
}

.contact {
  min-height: auto;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--orange);
}

.contact-card .section-title {
  max-width: 11ch;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--violet);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.contact-form span {
  color: var(--gold);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.35;
  outline: 0;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 209, 61, 0.22);
}

.form-status {
  min-height: 28px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: clamp(32px, 6vw, 70px);
  color: var(--white);
  background: #08030a;
  border-top: 3px solid var(--gold);
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.76);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  min-width: 140px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 5px;
  font-weight: 700;
}

.footer-line {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: var(--gold) !important;
  font-family: var(--display) !important;
  font-size: clamp(1.7rem, 3vw, 3.2rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.reveal {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Final balancing pass: compact scenes, controlled cards, visible icons. */
.impact,
.content,
.voice,
.platforms,
.presence,
.vision,
.stories,
.partnership,
.contact {
  min-height: auto;
}

.voice-column h3 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  text-wrap: balance;
}

.platform-cards {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
}

.platform-card {
  min-height: 176px;
}

.platform-card h3 {
  font-size: clamp(1.75rem, 2.2vw, 2.4rem);
  line-height: 1.12;
}

.story-card h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.55rem);
  line-height: 1.18;
  text-wrap: balance;
}

.reels {
  min-height: auto;
  overflow: visible;
}

.reels-stage {
  position: relative;
  height: 300vh;
  margin-top: clamp(28px, 4vw, 48px);
}

.reels-sticky {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  overflow: hidden;
}

.reels-deck {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 16;
}

.reel-card {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}

.reel-card[data-reel-index="0"] .reel-frame {
  box-shadow: 10px 10px 0 var(--violet);
}

.reel-card[data-reel-index="1"] .reel-frame {
  box-shadow: 10px 10px 0 var(--rose);
}

.reel-card[data-reel-index="2"] .reel-frame {
  box-shadow: 10px 10px 0 var(--gold);
}

.reel-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  border: 3px solid var(--white);
  border-radius: 12px;
}

.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.reel-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  z-index: 2;
  padding: 6px 12px 4px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0 var(--rose);
  transform: rotate(-4deg);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tilt-card:hover {
  z-index: 3;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(46px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes wordRise {
  from {
    opacity: 0;
    transform: translateY(105%) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes motionText {
  0% {
    transform: translateY(120%);
  }
  6%,
  23% {
    transform: translateY(0);
  }
  29%,
  100% {
    transform: translateY(-120%);
  }
}

@keyframes orbitFrame {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatPlate {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes floatNote {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes badgeBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

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

  .main-nav {
    display: none;
  }

  .hero,
  .about,
  .platforms,
  .contact,
  .partnership {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage,
  .about .section-copy,
  .about .collage,
  .platforms .section-copy,
  .platforms .orbit-wrap,
  .contact .contact-card,
  .contact .contact-form {
    grid-column: 1 / -1;
  }

  .hero-stage {
    min-height: 400px;
  }

  .floating-note {
    display: none;
  }

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

  .stat-card,
  .service-card,
  .platform-card,
  .story-card {
    grid-column: span 1 !important;
  }

  .story-card:nth-child(2),
  .story-card:nth-child(4) {
    margin-top: 28px;
  }

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

  .platform-cards .platform-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
  }

  .brand small,
  .nav-action {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .scene {
    min-height: auto;
    padding: 96px 16px 70px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(3.05rem, 16vw, 5.35rem);
    line-height: 1.12;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 4.35rem);
    line-height: 1.18;
  }

  .hero-actions,
  .partnership-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .motion-board {
    height: 70px;
  }

  .hero-stage {
    min-height: 380px;
  }

  .logo-plate {
    top: 16%;
    right: 2%;
    width: min(310px, 78vw);
  }

  .collage {
    min-height: 560px;
  }

  .cutout-big {
    right: 0;
  }

  .cutout-orange {
    top: 380px;
  }

  .cutout-ink {
    left: 0;
    top: 235px;
  }

  .stats-grid,
  .content-grid,
  .voice-columns,
  .platform-cards,
  .vision-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .reels-deck {
    width: min(260px, 74vw);
  }

  .service-card {
    min-height: auto;
  }

  .service-head {
    gap: 10px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
  }

  .service-card h3 {
    max-width: 10.5ch;
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.16;
  }

  .story-card:nth-child(2),
  .story-card:nth-child(4) {
    margin-top: 0;
  }

  .platforms .section-copy {
    padding-inline-start: 14px;
    border-inline-start-width: 5px;
  }

  .orbit-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(430px, 100%);
    aspect-ratio: auto;
    padding: 150px 14px 16px;
  }

  .orbit-wrap::before {
    inset: 18px;
    height: 112px;
    border-radius: 8px;
    animation: none;
  }

  .orbit-center {
    inset: auto;
    top: 22px;
    right: 50%;
    width: 118px;
    height: 118px;
    transform: translateX(50%);
  }

  .orbit-logo {
    width: 58%;
  }

  .orbit-item {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 7px 8px;
    font-size: 0.9rem;
    animation: none;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .orbit-item .icon-3d {
    width: 24px;
    height: 24px;
  }

  .orbit-e {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(190px, 100%);
  }

  .arrow-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: max-content;
    max-width: 100%;
    margin-top: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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

/* --- Premium Kashida/Mudud Styling & Effects --- */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.word.has-mudud {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.word.has-mudud::before {
  content: "";
  position: absolute;
  bottom: 0.12em;
  left: -2px;
  right: -2px;
  height: 0.32em;
  background: var(--gold);
  z-index: -1;
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 420ms cubic-bezier(0.18, 0.86, 0.22, 1);
  border-radius: 2px;
  pointer-events: none;
}

/* Custom highlight colors based on parent theme for strong contrast */
.theme-cream .word.has-mudud::before,
.theme-paper .word.has-mudud::before {
  background: var(--rose);
  opacity: 0.45;
}

.theme-violet .word.has-mudud::before {
  background: var(--gold);
}

.theme-orange .word.has-mudud::before {
  background: var(--purple);
  opacity: 0.65;
}

.theme-ink .word.has-mudud::before {
  background: var(--violet);
}

/* Hover reveal effect */
.word.has-mudud:hover::before {
  transform: scaleX(1);
}

/* Subtle visual shine on mudud headers */
.hero-title .word.has-mudud:hover,
.section-title .word.has-mudud:hover {
  text-shadow: 0 0 12px rgba(255, 209, 61, 0.22);
}
