:root {
  color-scheme: dark;
  --bg: #030306;
  --ink: #f7f5ff;
  --white: #ffffff;
  --muted: rgba(247, 245, 255, 0.68);
  --soft: rgba(247, 245, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(8, 8, 14, 0.54);
  --violet: #9d4dff;
  --pink: #ff4fd8;
  --blue: #60cfff;
  --silver: #d8d6e4;
  --gold: #ffe76a;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(157, 77, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 80% 0%, rgba(96, 207, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, #050508 0%, #030306 50%, #07070d 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

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

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(157, 77, 255, 0.18), transparent 68%);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 300ms ease;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 28px), 1160px);
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: 300ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 10, 0.62);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 78px;
  min-height: 36px;
}

.brand-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.desktop-nav {
  display: none;
  justify-content: flex-end;
  gap: 24px;
  padding-right: clamp(28px, 4.4vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), transparent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(157, 77, 255, 0.86);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.desktop-nav a:hover {
  color: #c38cff;
  text-shadow:
    0 0 10px rgba(157, 77, 255, 0.82),
    0 0 26px rgba(255, 79, 216, 0.46);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  transform: translateY(0) scale(1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.nav-cta,
.button.primary {
  border-color: rgba(157, 77, 255, 0.7);
  background: linear-gradient(135deg, var(--violet), #6c24ff 55%, var(--pink));
  box-shadow: 0 0 28px rgba(157, 77, 255, 0.34);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 48px rgba(157, 77, 255, 0.32);
}

.button:active,
.nav-cta:active {
  transform: translateY(0) scale(0.982);
  box-shadow: 0 8px 24px rgba(157, 77, 255, 0.22);
}

.button:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid rgba(96, 207, 255, 0.84);
  outline-offset: 4px;
}

.section-rail {
  display: none;
}

.section {
  position: relative;
  isolation: isolate;
  padding: clamp(86px, 13vw, 150px) 18px;
}

.section.compact {
  padding-block: clamp(76px, 10vw, 116px);
}

.hero {
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding-top: 92px;
  overflow: hidden;
}

.hero::after,
.final-cta::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  content: "";
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-media,
.final-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #050508;
}

.hero-media::before,
.hero-media::after,
.final-bg::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
}

.hero-media::before,
.final-bg::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.03) 52%, rgba(3, 3, 6, 0.74) 100%);
}

.hero-media::after {
  background: radial-gradient(circle at 74% 48%, transparent 0, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.46) 86%);
}

.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.18) contrast(1.1) brightness(1.18);
  transform: scale(1.08);
  animation: heroMontage 18s infinite;
}

.frame-b {
  animation-delay: 6s;
}

.frame-c {
  animation-delay: 12s;
  object-position: 52% 20%;
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 1px,
    transparent 2px,
    transparent 8px
  );
  mix-blend-mode: overlay;
  opacity: 0.18;
}

.hero-inner,
.section-heading,
.section-kicker,
.proof-strip,
.logo-marquee,
.experience-stage,
.tech-stack,
.statement-flow,
.why-grid,
.energy-intro,
.energy-wall,
.insight-strip,
.final-copy,
.contact-panel {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-inner {
  padding-bottom: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-copy h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(4.2rem, 12vw, 9.2rem);
  font-weight: 1000;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1040px;
  color: #fff;
  font-size: clamp(4.25rem, 8.45vw, 7.1rem);
  line-height: 0.75;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(255, 255, 255, 0.13),
    0 0 58px rgba(157, 77, 255, 0.24);
}

.hero-lead,
.thai-lead,
.section-heading p,
.final-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2.2vw, 1.6rem);
  line-height: 1.55;
}

.thai-lead {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
}

.en-sub {
  display: block;
}

.thai-sub {
  display: block !important;
  clear: both;
  width: 100%;
  margin-top: 0.58em;
  color: rgba(247, 245, 255, 0.58);
  font-size: 0.72em;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.48;
  text-transform: none;
  white-space: normal;
}

.section-heading p .thai-sub,
.final-copy p .thai-sub {
  max-width: 680px;
  font-size: 0.68em;
  line-height: 1.42;
}

.section-heading p .en-sub,
.final-copy p .en-sub,
.experience-panel p .en-sub,
.why-card p .en-sub,
.why-campaign-card p .en-sub,
.insight p .en-sub,
.insight small .en-sub,
.tech-copy > span .en-sub,
.energy-copy p .en-sub {
  display: block;
  margin: 0;
}

.section-heading p,
.final-copy p,
.experience-panel p,
.why-card p,
.why-campaign-card p,
.insight p,
.insight small,
.tech-copy > span,
.energy-copy p {
  text-wrap: pretty;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.proof-strip div {
  min-height: 104px;
  padding: 20px 22px;
  background: rgba(6, 6, 12, 0.64);
}

.proof-strip strong {
  display: block;
  font-size: clamp(1.5rem, 4.6vw, 2.55rem);
  font-weight: 1000;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.final-copy h2 {
  font-size: clamp(3rem, 11vw, 8.2rem);
  line-height: 0.86;
}

.viral {
  overflow-x: clip;
}

.trust-strip {
  width: min(100%, var(--max));
  margin: 34px auto 0;
  padding: 14px 18px;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, transparent, rgba(157, 77, 255, 0.1), transparent);
}

.reel-window {
  position: relative;
  width: min(100%, 1500px);
  margin: 48px auto 0;
  overflow: visible;
}

.reel-window::before,
.reel-window::after {
  position: absolute;
  top: 0;
  bottom: 22px;
  z-index: 3;
  width: 54px;
  pointer-events: none;
  content: "";
}

.reel-window::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.reel-window::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.reel-lane {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 8px;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-x;
}

.reel-lane::-webkit-scrollbar {
  display: none;
}

.reel-progress {
  position: relative;
  width: min(100%, 1220px);
  height: 7px;
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: grab;
}

.reel-progress:active {
  cursor: grabbing;
}

.reel-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--reel-thumb-width, 34%);
  min-width: 42px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  border-radius: inherit;
  box-shadow:
    0 0 14px rgba(157, 77, 255, 0.72),
    0 0 28px rgba(255, 79, 216, 0.36);
  transform: translateX(var(--reel-thumb-left, 0px));
  transition: width 180ms ease;
}

.reel-tile {
  position: relative;
  flex: 0 0 clamp(260px, 30vw, 430px);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #080811;
  transform: translateZ(0);
}

.reel-tile.wide {
  flex-basis: clamp(520px, 60vw, 860px);
}

.reel-tile img,
.reel-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.12) contrast(1.12);
  transform: scale(1.03);
  transition: 700ms ease;
}

.reel-tile::after,
.tech-scene::after,
.insight::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent 55%);
}

.reel-tile:hover img,
.reel-tile:hover video,
.experience-panel:hover img {
  transform: scale(1.09);
}

.video-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 42px rgba(157, 77, 255, 0.2);
}

.video-card video {
  opacity: 0.92;
}

.reel-tile b {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 26px;
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  line-height: 0.9;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.86),
    0 0 28px rgba(96, 207, 255, 0.42);
  text-transform: uppercase;
}

.logo-marquee {
  margin-top: clamp(24px, 3.8vw, 44px);
  padding-block: clamp(22px, 3vw, 40px);
  border-block: 1px solid var(--line);
}

.logo-track {
  display: block;
}

.logo-set {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(clamp(148px, 14vw, 210px), 1fr));
  gap: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 48px);
}

.logo-set img {
  display: block;
  width: auto;
  height: clamp(36px, 4vw, 58px);
  max-width: min(100%, clamp(138px, 15vw, 220px));
  margin-inline: auto;
  object-fit: contain;
  opacity: 1;
  filter:
    grayscale(1)
    brightness(0)
    invert(1)
    contrast(1.18)
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.14));
  transition:
    opacity 0.25s ease,
    filter 0.25s ease,
    transform 0.25s ease;
}

.logo-set img.logo-word {
  height: clamp(38px, 4.35vw, 64px);
  max-width: min(100%, clamp(148px, 16vw, 240px));
}

.logo-set img.logo-wide {
  height: clamp(34px, 3.8vw, 54px);
  max-width: min(100%, clamp(186px, 21vw, 320px));
}

.logo-set img.logo-ultrawide {
  height: clamp(30px, 3.4vw, 48px);
  max-width: min(100%, clamp(226px, 26vw, 420px));
}

.logo-set img.logo-badge,
.logo-set img.logo-icon {
  height: clamp(48px, 5.6vw, 78px);
  max-width: min(100%, clamp(78px, 9vw, 124px));
}

.logo-set img.logo-feature {
  height: clamp(56px, 6.6vw, 92px);
  max-width: min(100%, clamp(92px, 10.5vw, 150px));
}

.logo-set img.logo-mockup {
  opacity: 0.94;
  filter:
    grayscale(1)
    brightness(0)
    invert(1)
    contrast(1.14)
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.12));
}

.logo-set img.logo-compact {
  height: clamp(38px, 4.35vw, 64px);
  max-width: min(100%, clamp(118px, 13vw, 190px));
}

.logo-set img.logo-clean-word {
  height: clamp(34px, 3.85vw, 56px);
  max-width: min(100%, clamp(178px, 20vw, 310px));
}

.logo-set img.logo-script {
  height: clamp(42px, 4.75vw, 68px);
  max-width: min(100%, clamp(166px, 18vw, 270px));
}

.logo-set img.logo-stack {
  height: clamp(62px, 7vw, 98px);
  max-width: min(100%, clamp(178px, 20vw, 310px));
}

.logo-set img.logo-big-camera {
  height: clamp(40px, 4.5vw, 66px);
  max-width: min(100%, clamp(178px, 20vw, 300px));
}

.logo-set img.logo-oppo,
.logo-set img.logo-google {
  height: clamp(42px, 4.7vw, 68px);
  max-width: min(100%, clamp(170px, 19vw, 280px));
}

.logo-set img.logo-king-power {
  height: clamp(82px, 9vw, 126px);
  max-width: min(100%, clamp(132px, 15vw, 204px));
}

.logo-set img.logo-the-mall {
  height: clamp(68px, 7.6vw, 108px);
  max-width: min(100%, clamp(168px, 19vw, 280px));
}

.logo-set img.logo-watsons {
  height: clamp(58px, 6.4vw, 92px);
  max-width: min(100%, clamp(194px, 22vw, 330px));
  filter:
    saturate(1.02)
    contrast(1.05)
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
}

.logo-set img.logo-aston-martin {
  height: clamp(48px, 5.3vw, 78px);
  max-width: min(100%, clamp(260px, 28vw, 440px));
}

.logo-set img.logo-future-park {
  height: clamp(88px, 10vw, 146px);
  max-width: min(100%, clamp(122px, 13.8vw, 194px));
}

.logo-set img:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter:
    grayscale(1)
    brightness(0)
    invert(1)
    contrast(1.16)
    drop-shadow(0 0 20px rgba(168, 86, 255, 0.28));
}

.brands .section-heading h2 {
  max-width: 1020px;
  font-size: clamp(2.55rem, 8.8vw, 6.55rem);
  line-height: 0.92;
}

.brands .section-heading p {
  margin-top: 18px;
  font-size: clamp(1.04rem, 1.85vw, 1.34rem);
}

.experience-stage {
  display: grid;
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(32px, 4vw, 56px);
}

.experience-panel {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.6vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #07070d;
  isolation: isolate;
  text-decoration: none;
  transform: translateZ(0);
}

.experience-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 700ms ease;
}

.experience-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  animation: experienceFadeA 7.5s ease-in-out infinite;
  transition: transform 900ms ease;
  will-change: opacity, transform;
}

.experience-media img:nth-child(2) {
  animation-name: experienceFadeB;
  transform: scale(1.045);
}

.experience-panel:nth-child(2n) .experience-media img {
  animation-delay: -1.4s;
}

.experience-panel:nth-child(3n) .experience-media img {
  animation-delay: -2.7s;
}

.experience-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(3, 3, 8, 0.42) 38%, rgba(0, 0, 0, 0.92)),
    radial-gradient(circle at 20% 12%, rgba(141, 75, 255, 0.2), transparent 38%);
}

.experience-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
}

.experience-number {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.platform-pill {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.platform-pill img {
  position: static;
  width: 13px;
  height: 13px;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
  transform: none;
  transition: none;
}

.experience-panel h3 {
  max-width: 11ch;
  margin: clamp(120px, 16vw, 210px) 0 14px;
  color: var(--white);
  font-size: clamp(1.75rem, 3.7vw, 3.9rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.experience-panel p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.92rem, 1.12vw, 1.04rem);
  font-weight: 650;
  line-height: 1.55;
}

.experience-panel p .thai-sub {
  font-size: 0.86em;
}

.experience-panel:hover .experience-media {
  opacity: 0.86;
}

.experience-panel:hover .experience-media img {
  transform: scale(1.075);
}

.experience-panel:hover .experience-media img:nth-child(2) {
  transform: scale(1.095);
}

@keyframes experienceFadeA {
  0%,
  36% {
    opacity: 1;
  }

  48%,
  86% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes experienceFadeB {
  0%,
  36% {
    opacity: 0;
  }

  48%,
  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.experience-panel:hover .platform-pill {
  border-color: rgba(185, 105, 255, 0.62);
  background: rgba(118, 57, 255, 0.2);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(157, 77, 255, 0.24);
}

.experience .section-heading h2 {
  max-width: 980px;
  font-size: clamp(2.55rem, 10.4vw, 8.6rem);
  line-height: 0.88;
}

.experience .section-heading p {
  max-width: 720px;
}

.technology::before,
.why::before,
.insights::before {
  position: absolute;
  inset: 8% 0 auto;
  z-index: -1;
  height: 46%;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at center, rgba(157, 77, 255, 0.16), transparent 66%);
}

.tech-stack {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
  margin-top: clamp(36px, 4vw, 56px);
}

.tech-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 48%) minmax(0, 52%);
  min-height: 410px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 14, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}

.tech-clickable {
  cursor: pointer;
}

.tech-card-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}

.tech-clickable:hover,
.tech-clickable:focus-within {
  border-color: rgba(185, 105, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 46px rgba(157, 77, 255, 0.16),
    0 28px 82px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.tech-media {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 410px;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 73, 255, 0.2), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.tech-media img {
  width: 100%;
  height: 100%;
  max-height: 570px;
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
  padding: clamp(8px, 1.15vw, 14px);
  transition: 700ms ease;
}

.tech-scene:hover .tech-media img {
  transform: scale(1.035);
  opacity: 0.94;
}

.tech-copy {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: 28px 28px minmax(92px, auto) minmax(118px, 1fr) auto;
  align-self: stretch;
  align-content: stretch;
  padding: clamp(24px, 2.45vw, 36px);
  pointer-events: none;
}

.tech-copy p {
  align-self: start;
  margin: 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tech-copy small {
  display: inline-block;
  align-self: start;
  margin-top: 10px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tech-copy h3 {
  display: flex;
  min-height: clamp(82px, 6.1vw, 108px);
  align-items: flex-start;
  margin: 14px 0 0;
  color: var(--white);
  max-width: 100%;
  overflow-wrap: normal;
  word-break: keep-all;
  font-size: clamp(1.55rem, 2.12vw, 2.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  transition:
    color 0.28s ease,
    transform 0.28s ease;
}

.tech-copy > span {
  display: block;
  min-height: 100px;
  max-width: 520px;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.08vw, 1.08rem);
  font-weight: 650;
  line-height: 1.5;
}

.tech-copy small.thai-sub,
.tech-copy > span .thai-sub {
  display: block;
  min-height: 0;
  margin: 0.5em 0 0;
  color: rgba(247, 245, 255, 0.56);
  font-size: 0.78em;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.44;
  text-transform: none;
}

.tech-actions {
  position: relative;
  z-index: 7;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
  margin-top: 20px;
  pointer-events: auto;
}

.tech-clickable:hover .tech-copy h3,
.tech-clickable:focus-within .tech-copy h3 {
  color: rgba(255, 255, 255, 0.98);
  transform: translate3d(4px, 0, 0);
}

.tech-actions a {
  position: relative;
  z-index: 8;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.tech-actions a:nth-child(-n + 2) {
  border-color: rgba(168, 86, 255, 0.55);
  background: linear-gradient(135deg, rgba(112, 56, 255, 0.42), rgba(210, 66, 227, 0.28));
}

.tech-actions a:hover {
  border-color: rgba(185, 105, 255, 0.76);
  background: rgba(135, 70, 255, 0.22);
  box-shadow: 0 0 24px rgba(157, 77, 255, 0.22);
  transform: translateY(-1px);
}

.technology .section-heading h2 {
  max-width: 1220px;
  font-size: clamp(2.7rem, 9vw, 7.6rem);
  line-height: 0.9;
}

.technology .section-heading p {
  max-width: 740px;
}

.why {
  overflow: hidden;
}

.why-heading h2 {
  max-width: 940px;
  font-size: clamp(3.2rem, 10.8vw, 8.9rem);
  line-height: 0.83;
}

.why-heading p {
  max-width: 820px;
}

.why-grid {
  display: grid;
  gap: clamp(12px, 1.25vw, 18px);
  margin-top: clamp(36px, 5vw, 70px);
}

.why-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(102, 206, 255, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 12, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}

a.why-card {
  color: inherit;
  text-decoration: none;
}

a.why-card-feature {
  cursor: pointer;
}

.why-card::before {
  position: absolute;
  inset: auto -18% -42% 18%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at center, rgba(157, 77, 255, 0.24), transparent 66%);
  opacity: 0.36;
  transform: translate3d(0, 0, 0) rotate(-5deg);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

.why-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-card h3 {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0;
  color: var(--white);
  overflow-wrap: anywhere;
  font-size: clamp(1.58rem, 2.55vw, 2.7rem);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
}

.why-card p {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.14vw, 1.12rem);
  font-weight: 620;
  line-height: 1.55;
}

.why-card p .thai-sub {
  color: rgba(247, 245, 255, 0.58);
  font-size: 0.86em;
}

.why-card:hover {
  border-color: rgba(185, 105, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 44px rgba(157, 77, 255, 0.14),
    0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 0.65;
  transform: translate3d(3%, -4%, 0) rotate(-2deg);
}

.why-card-feature {
  display: grid;
  min-height: clamp(420px, 40vw, 560px);
  padding: 0;
  align-content: end;
}

.why-card-feature::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.7) 72%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(7, 7, 12, 0.74), rgba(7, 7, 12, 0.08) 58%);
}

.why-visual {
  position: absolute;
  inset: 0;
  background-image: var(--why-image);
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.04);
  transition:
    opacity 0.45s ease,
    transform 0.7s ease;
}

.why-card-feature .why-card-copy {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 38px);
}

.why-card-feature span {
  margin-bottom: 18px;
}

.why-card-feature h3 {
  max-width: 860px;
  font-size: clamp(2.25rem, 5.2vw, 5.25rem);
  line-height: 0.86;
}

.why-card-feature p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.why-card-feature p .thai-sub {
  font-size: 0.76em;
}

.why-card-feature:hover .why-visual {
  opacity: 0.76;
  transform: scale(1.075);
}

.why-campaign-grid {
  display: grid;
  gap: clamp(12px, 1.25vw, 18px);
  margin-top: clamp(12px, 1.25vw, 18px);
}

.why-campaign-card {
  position: relative;
  display: grid;
  min-height: clamp(260px, 24vw, 360px);
  overflow: hidden;
  align-content: space-between;
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(96, 207, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 16%, rgba(96, 207, 255, 0.15), transparent 28%),
    radial-gradient(circle at 90% 84%, rgba(255, 79, 216, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(13, 18, 26, 0.9), rgba(7, 7, 12, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.why-campaign-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  opacity: 0.68;
}

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

.why-campaign-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  margin-bottom: clamp(24px, 4vw, 54px);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-campaign-card h3 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.72rem, 3.15vw, 3.35rem);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
}

.why-campaign-card p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 620;
  line-height: 1.58;
}

.why-campaign-card p .thai-sub {
  color: rgba(247, 245, 255, 0.62);
  font-size: 0.9em;
}

.why-campaign-card-wide {
  min-height: clamp(330px, 31vw, 430px);
  background:
    radial-gradient(circle at 16% 18%, rgba(157, 77, 255, 0.28), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(96, 207, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(20, 20, 30, 0.94), rgba(5, 5, 10, 0.8));
}

.why-campaign-card-wide h3 {
  max-width: 900px;
  font-size: clamp(2.45rem, 5.3vw, 5.45rem);
  line-height: 0.86;
}

.why-campaign-card-cta {
  border-color: rgba(255, 79, 216, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 79, 216, 0.22), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(157, 77, 255, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(18, 11, 28, 0.94), rgba(6, 6, 12, 0.82));
}

.atmosphere {
  overflow: hidden;
}

.energy-intro {
  display: grid;
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
}

.energy-intro .section-kicker {
  display: block;
  width: auto;
  margin: 0 0 18px;
}

.energy-intro h2 {
  max-width: 1060px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.energy-copy {
  display: grid;
  gap: 18px;
}

.energy-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.08rem, 2.2vw, 1.85rem);
  font-weight: 650;
  line-height: 1.35;
}

.energy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.energy-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-wall {
  counter-reset: energy-frame;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(124px, 8.5vw, 168px);
  grid-auto-flow: dense;
  align-items: stretch;
  gap: clamp(10px, 1.35vw, 18px);
  margin-top: clamp(36px, 5vw, 78px);
}

.energy-shot {
  counter-increment: energy-frame;
  position: relative;
  min-height: 0;
  height: 100%;
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #08080d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease,
    transform 700ms ease;
}

.energy-shot-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  color: inherit;
  text-decoration: none;
}

.energy-shot-link:focus-visible {
  outline: 2px solid rgba(96, 207, 255, 0.92);
  outline-offset: -5px;
}

.energy-shot::before {
  position: absolute;
  top: clamp(12px, 1.35vw, 20px);
  left: clamp(12px, 1.35vw, 20px);
  z-index: 3;
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(7, 8, 14, 0.78), rgba(7, 8, 14, 0.42)),
    rgba(105, 199, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(105, 199, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.28);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  content: counter(energy-frame, decimal-leading-zero);
}

.energy-shot::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 30% 16%, rgba(105, 199, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.78));
}

.energy-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(var(--energy-drift, 0px)) scale(1.03);
  transition:
    filter 700ms ease,
    transform 900ms ease;
  will-change: transform;
}

.energy-shot figcaption {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(16px, 2vw, 28px);
  z-index: 2;
  display: grid;
  gap: 8px;
}

.energy-shot figcaption span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.energy-shot figcaption b {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 2rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.energy-shot figcaption small {
  display: block;
  max-width: 28ch;
  color: rgba(247, 245, 255, 0.62);
  font-size: clamp(0.74rem, 0.92vw, 0.98rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.34;
  text-transform: none;
}

.energy-shot.hero {
  grid-column: span 5;
  grid-row: span 5;
}

.energy-shot.hero figcaption b {
  max-width: 12ch;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 0.88;
}

.energy-shot.wide {
  grid-column: span 6;
  grid-row: span 4;
}

.energy-shot.tall {
  grid-column: span 3;
  grid-row: span 5;
}

.energy-shot.medium {
  grid-column: span 4;
  grid-row: span 4;
}

.energy-shot.small {
  grid-column: span 3;
  grid-row: span 4;
}

.energy-shot.feature {
  grid-column: span 5;
  grid-row: span 5;
}

.energy-shot.lift {
  transform: translateY(clamp(6px, 1vw, 14px));
}

.energy-shot:hover {
  z-index: 3;
  border-color: rgba(160, 91, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 90px rgba(142, 75, 255, 0.2);
  transform: translateY(-6px);
}

.energy-shot.lift:hover {
  transform: translateY(0);
}

.energy-shot:hover img {
  filter: saturate(1.18) contrast(1.1);
  transform: translateY(var(--energy-drift, 0px)) scale(1.09);
}

.energy-shot:nth-child(1) img,
.energy-shot:nth-child(3) img,
.energy-shot:nth-child(5) img,
.energy-shot:nth-child(10) img,
.energy-shot:nth-child(12) img {
  object-position: center 62%;
}

.energy-shot:nth-child(2) img,
.energy-shot:nth-child(6) img,
.energy-shot:nth-child(9) img {
  object-position: center 58%;
}

.energy-shot:nth-child(4) img,
.energy-shot:nth-child(11) img,
.energy-shot:nth-child(14) img {
  object-position: center 50%;
}

.energy-shot:nth-child(18) img {
  object-position: center 58%;
}

.energy-shot:nth-child(19) img {
  object-position: center 56%;
}

.energy-shot:nth-child(18) {
  grid-column: 1 / span 6;
}

.energy-shot:nth-child(19) {
  grid-column: 7 / span 6;
}

.insight-strip {
  display: grid;
  gap: clamp(10px, 1.35vw, 18px);
  margin-top: clamp(38px, 5vw, 74px);
}

.insight {
  position: relative;
  display: grid;
  min-height: clamp(360px, 34vw, 520px);
  overflow: hidden;
  align-content: space-between;
  padding: clamp(22px, 2.8vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--glow-x, 82%) var(--glow-y, 18%), rgba(96, 207, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 12, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 26px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    background 0.55s ease;
}

.insight::before {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 62%;
  height: 70%;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at center, rgba(157, 77, 255, 0.24), transparent 68%);
  opacity: 0.42;
  transform: rotate(-12deg);
  transition:
    opacity 0.35s ease,
    transform 0.55s ease;
}

.insight::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.insight span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight h3 {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: clamp(42px, 8vw, 94px) 0 0;
  color: var(--white);
  overflow-wrap: anywhere;
  font-size: clamp(2rem, 3.15vw, 3.55rem);
  font-weight: 1000;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.insight p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  font-weight: 760;
  line-height: 1.45;
}

.insight p .thai-sub {
  color: rgba(247, 245, 255, 0.62);
  font-size: 0.76em;
  font-weight: 620;
}

.insight small {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: rgba(247, 245, 255, 0.56);
  font-size: clamp(0.92rem, 1.02vw, 1.04rem);
  font-weight: 650;
  line-height: 1.5;
}

.insight small .thai-sub {
  color: rgba(247, 245, 255, 0.54);
  font-size: 0.9em;
  font-weight: 600;
}

.insight:hover {
  --glow-x: 52%;
  --glow-y: 10%;
  border-color: rgba(96, 207, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 42px rgba(96, 207, 255, 0.1),
    0 36px 100px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px) scale(1.006);
}

.insight:hover::before {
  opacity: 0.72;
  transform: translate3d(-8%, 4%, 0) rotate(-5deg);
}

.insight:hover h3 {
  transform: translateX(6px);
}

.insight-large h3,
.insight-wide h3 {
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
}

.insight h3,
.insight p,
.insight small {
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.insights .section-heading h2 {
  max-width: 1180px;
  font-size: clamp(2.9rem, 9.4vw, 8.25rem);
  line-height: 0.86;
}

.insights .section-heading h2 span {
  display: inline-block;
  font-size: 0.72em;
}

.insights .section-heading p {
  max-width: 820px;
}

.final-cta {
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
}

.final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(1.1) contrast(1.08);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
  backdrop-filter: blur(16px);
}

.contact-panel div {
  min-width: 0;
  padding: 20px;
  background: rgba(5, 5, 10, 0.68);
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel b {
  display: block;
  max-width: 100%;
  min-width: 0;
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  line-height: 1.08;
  word-break: break-word;
}

.contact-panel b a {
  color: inherit;
  text-decoration: none;
}

.site-footer {
  display: grid;
  gap: 22px 34px;
  padding: clamp(28px, 3.4vw, 46px) 18px clamp(30px, 3.6vw, 50px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 8, 14, 0.96), #030306 58%),
    #030306;
}

.footer-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  letter-spacing: 0.01em;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: rgba(247, 245, 255, 0.7);
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96, 207, 255, 0.85), rgba(198, 62, 255, 0.85));
  opacity: 0;
  transform: scaleX(0.42);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-socials {
  gap: 10px;
}

.footer-social {
  --social-color: #9d8cff;

  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(247, 245, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(247, 245, 255, 0.055);
  color: rgba(247, 245, 255, 0.78);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.footer-social::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 24% 35%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, var(--social-color), rgba(190, 58, 255, 0.34));
  transition: opacity 220ms ease;
}

.footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: translateZ(0);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.footer-social span {
  line-height: 1;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(247, 245, 255, 0.12);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 28px color-mix(in srgb, var(--social-color) 72%, transparent);
  transform: translateY(-4px) scale(1.035);
}

.footer-social:hover::before,
.footer-social:focus-visible::before {
  opacity: 1;
}

.footer-social:hover img,
.footer-social:focus-visible img {
  transform: scale(1.18) rotate(-4deg);
}

.footer-social--tiktok {
  --social-color: #25f4ee;
}

.footer-social--instagram {
  --social-color: #e1306c;
}

.footer-social--facebook {
  --social-color: #1877f2;
}

.footer-social--youtube {
  --social-color: #ff0033;
}

.footer-service-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  color: rgba(247, 245, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-service-links a {
  opacity: 0.68;
  transition:
    color 220ms ease,
    opacity 220ms ease;
}

.footer-service-links a:hover {
  color: #c38cff;
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 800ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes heroMontage {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  8%,
  30% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.12);
  }
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .proof-strip,
  .contact-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .experience-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience-panel {
    min-height: clamp(430px, 42vw, 560px);
  }

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

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

  .why-campaign-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .why-card-feature {
    grid-column: span 3;
  }

  .why-card:not(.why-card-feature) {
    grid-column: span 2;
  }

  .why-campaign-card {
    grid-column: span 3;
  }

  .why-campaign-card-wide,
  .why-campaign-card-cta {
    grid-column: span 6;
  }

  .energy-shot:nth-child(18) {
    grid-column: 1 / span 6;
  }

  .energy-shot:nth-child(19) {
    grid-column: 7 / span 6;
  }

  .insight-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .insight {
    grid-column: span 3;
  }

  .insight-large,
  .insight-wide {
    grid-column: span 6;
  }

  .energy-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .site-footer {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 238px;
  }

  .site-footer .brand-mark {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: flex-end;
    align-self: start;
    padding-left: clamp(150px, 18vw, 360px);
  }

  .footer-socials {
    grid-column: 1;
    grid-row: 2;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-self: end;
  }

  .footer-service-links {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-end;
    align-self: end;
  }
}

@media (min-width: 1120px) {
  .section {
    padding-left: 112px;
  }

  .site-footer {
    padding-left: 124px;
  }

  .site-header {
    left: 92px;
    right: 32px;
    width: auto;
    transform: none;
    padding-left: 20px;
  }

  .section-rail {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 15;
    display: grid;
    width: 92px;
    padding-top: 96px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 3, 6, 0.3);
    backdrop-filter: blur(14px);
  }

  .section-rail a {
    display: grid;
    align-content: center;
    gap: 8px;
    min-height: 82px;
    padding-left: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: 220ms ease;
  }

  .section-rail b {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
  }

  .section-rail a:hover,
  .section-rail a.is-active {
    color: var(--ink);
    background: rgba(157, 77, 255, 0.12);
  }

  .hero h1 {
    max-width: 920px;
  }

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

  .why-campaign-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .why-card-feature {
    grid-column: span 6;
  }

  .why-card:not(.why-card-feature) {
    grid-column: span 4;
  }

  .why-campaign-card {
    grid-column: span 4;
  }

  .why-campaign-card-wide {
    grid-column: span 8;
  }

  .why-campaign-card-cta {
    grid-column: span 8;
  }

  .energy-shot:nth-child(18) {
    grid-column: 1 / span 6;
  }

  .energy-shot:nth-child(19) {
    grid-column: 7 / span 6;
  }

  .insight-strip {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .insight {
    grid-column: span 4;
  }

  .insight-large {
    grid-column: span 7;
  }

  .insight-wide {
    grid-column: span 8;
  }

  .energy-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  }

}

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

  .nav-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.66rem;
  }

  .brand-mark span {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 76px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.05rem);
    line-height: 0.86;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 52%, rgba(3, 3, 6, 0.9) 100%);
  }

  .frame-a,
  .frame-c {
    object-position: 60% 40%;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 30px;
    border-radius: 20px;
  }

  .proof-strip div {
    min-height: 104px;
    padding: 17px;
  }

  .logo-marquee {
    padding-block: 20px;
  }

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

  .logo-set img {
    height: clamp(30px, 9vw, 44px);
    max-width: min(100%, clamp(120px, 41vw, 174px));
  }

  .logo-set img.logo-word {
    height: clamp(31px, 9.5vw, 46px);
    max-width: min(100%, clamp(126px, 42vw, 180px));
  }

  .logo-set img.logo-compact {
    height: clamp(32px, 9.6vw, 46px);
    max-width: min(100%, clamp(104px, 35vw, 148px));
  }

  .logo-set img.logo-clean-word {
    height: clamp(28px, 8.4vw, 40px);
    max-width: min(100%, clamp(132px, 43vw, 184px));
  }

  .logo-set img.logo-script {
    height: clamp(34px, 10vw, 48px);
    max-width: min(100%, clamp(132px, 43vw, 184px));
  }

  .logo-set img.logo-stack {
    height: clamp(46px, 13vw, 64px);
    max-width: min(100%, clamp(136px, 44vw, 188px));
  }

  .logo-set img.logo-big-camera {
    height: clamp(32px, 9.8vw, 48px);
    max-width: min(100%, clamp(136px, 44vw, 188px));
  }

  .logo-set img.logo-oppo,
  .logo-set img.logo-google {
    height: clamp(34px, 10vw, 50px);
    max-width: min(100%, clamp(132px, 43vw, 184px));
  }

  .logo-set img.logo-king-power {
    height: clamp(80px, 22vw, 108px);
    max-width: min(100%, clamp(116px, 38vw, 160px));
  }

  .logo-set img.logo-the-mall {
    height: clamp(68px, 19vw, 94px);
    max-width: min(100%, clamp(132px, 43vw, 184px));
  }

  .logo-set img.logo-watsons {
    height: clamp(56px, 16vw, 78px);
    max-width: min(100%, clamp(154px, 48vw, 204px));
  }

  .logo-set img.logo-wide {
    height: clamp(28px, 8.4vw, 40px);
    max-width: min(100%, clamp(136px, 44vw, 188px));
  }

  .logo-set img.logo-ultrawide {
    height: clamp(25px, 7.6vw, 36px);
    max-width: min(100%, clamp(146px, 45vw, 198px));
  }

  .logo-set img.logo-badge,
  .logo-set img.logo-icon {
    height: clamp(38px, 11vw, 54px);
    max-width: min(100%, clamp(58px, 17vw, 78px));
  }

  .logo-set img.logo-feature {
    height: clamp(42px, 12vw, 60px);
    max-width: min(100%, clamp(64px, 19vw, 88px));
  }

  .logo-set img.logo-aston-martin {
    height: clamp(36px, 10vw, 54px);
    max-width: min(100%, clamp(110px, 33vw, 154px));
  }

  .logo-set img.logo-future-park {
    height: clamp(54px, 15vw, 76px);
    max-width: min(100%, clamp(72px, 22vw, 100px));
  }

  .logo-set img.logo-big-camera {
    height: clamp(36px, 10.5vw, 52px);
    max-width: min(100%, clamp(148px, 48vw, 204px));
  }

  .logo-set img.logo-oppo,
  .logo-set img.logo-google {
    height: clamp(42px, 12vw, 58px);
    max-width: min(100%, clamp(150px, 48vw, 204px));
  }

  .logo-set img.logo-king-power {
    height: clamp(86px, 24vw, 116px);
    max-width: min(100%, clamp(128px, 42vw, 172px));
  }

  .logo-set img.logo-the-mall {
    height: clamp(74px, 21vw, 102px);
    max-width: min(100%, clamp(144px, 46vw, 194px));
  }

  .logo-set img.logo-watsons {
    height: clamp(62px, 18vw, 84px);
    max-width: min(100%, clamp(166px, 52vw, 220px));
  }

  .reel-window {
    margin-top: 34px;
  }

  .reel-lane {
    gap: 12px;
  }

  .reel-tile {
    flex-basis: 76vw;
    min-height: 430px;
    border-radius: 20px;
  }

  .reel-tile.wide {
    flex-basis: 76vw;
  }

  .why-heading h2 {
    font-size: clamp(3.05rem, 15vw, 4.2rem);
  }

  .why-grid {
    margin-top: 34px;
  }

  .why-campaign-grid {
    margin-top: 12px;
  }

  .why-card {
    min-height: 230px;
  }

  .why-card h3 {
    font-size: clamp(1.62rem, 10vw, 2.45rem);
    line-height: 0.94;
  }

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

  .why-card-feature {
    min-height: 440px;
  }

  .why-card-feature::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0.94)),
      linear-gradient(90deg, rgba(7, 7, 12, 0.56), rgba(7, 7, 12, 0.04) 62%);
  }

  .why-campaign-card {
    min-height: 300px;
    padding: 22px;
  }

  .why-campaign-card span {
    margin-bottom: 36px;
  }

  .why-campaign-card h3 {
    font-size: clamp(1.9rem, 10.6vw, 2.85rem);
    line-height: 0.9;
  }

  .why-campaign-card-wide h3 {
    font-size: clamp(2.45rem, 13vw, 3.85rem);
  }

  .why-campaign-card p {
    font-size: 0.96rem;
  }

  .insights .section-heading h2 {
    font-size: clamp(2.55rem, 13.2vw, 4.15rem);
  }

  .insight {
    min-height: 390px;
    padding: 22px;
  }

  .insight h3 {
    margin-top: 52px;
    font-size: clamp(2.15rem, 11.5vw, 3.25rem);
    line-height: 0.88;
  }

  .experience-panel,
  .tech-scene,
  .why-card,
  .why-campaign-card,
  .insight,
  .contact-panel {
    border-radius: 20px;
  }

  .tech-scene {
    grid-template-columns: 1fr;
  }

  .tech-media {
    min-height: min(88vw, 390px);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tech-media img {
    height: min(88vw, 390px);
    max-height: 390px;
  }

  .tech-copy {
    grid-template-rows: auto auto auto auto auto;
    align-content: start;
  }

  .tech-copy h3,
  .tech-copy > span {
    min-height: 0;
  }

  .energy-intro h2 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .energy-copy p {
    font-size: 1.05rem;
  }

  .energy-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
    margin-top: 34px;
  }

  .energy-shot,
  .energy-shot.hero,
  .energy-shot.wide,
  .energy-shot.tall,
  .energy-shot.medium,
  .energy-shot.small,
  .energy-shot.feature {
    grid-column: span 1;
    grid-row: auto;
    height: auto;
    min-height: 360px;
    border-radius: 20px;
  }

  .energy-shot.hero,
  .energy-shot.wide,
  .energy-shot.feature {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .energy-shot.lift {
    transform: none;
  }

  .energy-shot figcaption b {
    font-size: 1.15rem;
  }

  .energy-shot.hero figcaption b {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

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