@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --kol-bg: #05060a;
  --kol-panel: #0b0d14;
  --kol-white: #f7f8fb;
  --kol-muted: #aeb4c3;
  --kol-cyan: #21e6f2;
  --kol-pink: #ff2b7d;
  --kol-red: #ff4c4c;
  --kol-orange: #ff7b38;
  --kol-green: #a8ff3e;
  --kol-blue: #497cff;
  --kol-border: rgba(255, 255, 255, 0.13);
  --kol-shell: min(1180px, calc(100vw - 64px));
  --kol-radius: 30px;
  --kol-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body.pmd-kol-case {
  margin: 0;
  color: var(--kol-white);
  background: var(--kol-bg);
  font-family: "DM Sans", sans-serif;
  overflow-x: clip;
}

body.pmd-kol-case.admin-bar .kol-site-header {
  top: 32px;
}

.pmd-kol-case *,
.pmd-kol-case *::before,
.pmd-kol-case *::after {
  box-sizing: border-box;
}

.pmd-kol-case img,
.pmd-kol-case video {
  display: block;
  max-width: 100%;
}

.pmd-kol-case a {
  color: inherit;
}

.pmd-kol-case .skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #05060a;
  background: #fff;
  transform: translateY(-150%);
}

.pmd-kol-case .skip-link:focus {
  transform: translateY(0);
}

.kol-shell {
  position: relative;
  z-index: 3;
  width: var(--kol-shell);
  margin-inline: auto;
}

.kol-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(26px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(18px);
}

.kol-site-header .header-identities,
.kol-site-header .desktop-nav {
  display: flex;
  align-items: center;
}

.kol-site-header .header-identities {
  gap: 22px;
}

.kol-site-header .wordmark {
  font: 700 20px/1 "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.kol-site-header .wordmark span {
  color: var(--kol-pink);
}

.kol-site-header .wordmark-star {
  margin-right: 4px;
  color: var(--kol-cyan) !important;
  font-size: 12px;
  filter: drop-shadow(0 0 8px var(--kol-cyan));
}

.kol-site-header .project-wordmark {
  color: #858b99;
  font-size: 14px;
  letter-spacing: 0;
}

.kol-site-header .desktop-nav {
  gap: 24px;
}

.kol-site-header .desktop-nav a {
  position: relative;
  color: #c9ced9;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.kol-site-header .desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--kol-cyan), var(--kol-pink));
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.kol-site-header .desktop-nav a:hover::after,
.kol-site-header .desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.kol-site-header .desktop-nav .nav-contact {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
}

.kol-site-header .mobile-menu {
  display: none;
}

.kol-hero,
.kol-section,
.kol-brand {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.kol-hero {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: 132px 0 110px;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.99) 0%, rgba(5, 6, 10, 0.93) 30%, rgba(5, 6, 10, 0.2) 72%, rgba(5, 6, 10, 0.72) 100%),
    linear-gradient(0deg, #05060a 0%, transparent 28%),
    var(--hero-image) center/cover no-repeat;
}

.kol-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.kol-hero-glow {
  position: absolute;
  top: 18%;
  left: 41%;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 43, 125, 0.18), transparent 68%);
  filter: blur(25px);
  animation: kol-pulse 5s ease-in-out infinite;
}

.kol-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: clamp(48px, 8vw, 120px);
}

.kol-hero-copy {
  max-width: 820px;
}

.kol-kicker {
  margin: 0 0 22px;
  color: var(--kol-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kol-hero h1,
.kol-section h2,
.kol-brand h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.kol-hero h1 {
  font-size: clamp(56px, 7.8vw, 124px);
  line-height: 0.84;
}

.kol-hero h1 span,
.kol-hero h1 strong {
  display: block;
}

.kol-hero h1 span {
  color: var(--kol-white);
}

.kol-hero h1 strong {
  color: transparent;
  background: linear-gradient(90deg, var(--kol-cyan), #fff 48%, var(--kol-pink));
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 26px rgba(255, 43, 125, 0.17));
}

.kol-hero-role {
  margin: 30px 0 0;
  color: #fff;
  font: 600 15px/1.5 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kol-hero-intro {
  max-width: 670px;
  margin: 18px 0 0;
  color: #bac0cd;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.72;
}

.kol-actions,
.kol-outro-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.kol-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(33, 230, 242, 0.14), rgba(255, 43, 125, 0.18));
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.04), 0 0 30px rgba(33, 230, 242, 0.08);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s var(--kol-ease);
}

.kol-button:hover,
.kol-button:focus-visible {
  border-color: var(--kol-cyan);
  transform: translateY(-3px);
}

.kol-profile-link {
  color: #cbd0dc;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.kol-profile-link span {
  margin-left: 8px;
  color: var(--kol-pink);
}

.kol-hero-signal {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(7, 8, 14, 0.68);
  box-shadow: inset 0 0 50px rgba(33, 230, 242, 0.05);
  backdrop-filter: blur(12px);
}

.kol-hero-signal::before {
  position: absolute;
  top: -1px;
  left: 30px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--kol-cyan), var(--kol-pink));
  box-shadow: 0 0 18px var(--kol-cyan);
  content: "";
}

.kol-hero-signal span,
.kol-hero-signal b,
.kol-hero-signal small {
  display: block;
}

.kol-hero-signal span {
  color: var(--kol-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kol-hero-signal strong {
  display: block;
  margin: 14px 0 2px;
  font: 700 clamp(56px, 6vw, 90px)/0.9 "Space Grotesk", sans-serif;
  letter-spacing: -0.08em;
}

.kol-hero-signal b {
  margin-top: 13px;
  font: 600 15px/1.4 "Space Grotesk", sans-serif;
}

.kol-hero-signal small {
  margin-top: 8px;
  color: #878d9c;
  line-height: 1.55;
}

.kol-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #7f8694;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.kol-scroll-cue i {
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--kol-cyan), transparent);
  animation: kol-current-fall 1.6s linear infinite;
}

.kol-circuit {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 10%;
  left: 0;
  height: 90px;
  opacity: 0.55;
  pointer-events: none;
}

.kol-circuit::before,
.kol-circuit::after {
  position: absolute;
  right: -2%;
  left: -2%;
  height: 1px;
  content: "";
}

.kol-circuit::before {
  top: 32px;
  background: linear-gradient(90deg, transparent, rgba(33, 230, 242, 0.35), rgba(255, 43, 125, 0.3), transparent);
}

.kol-circuit::after {
  top: 54px;
  background: linear-gradient(90deg, transparent 9%, rgba(255, 123, 56, 0.25), transparent 83%);
  transform: rotate(-1deg);
}

.kol-current {
  position: absolute;
  top: 28px;
  left: -18%;
  width: 17%;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #fff, var(--kol-cyan), transparent);
  filter: blur(1px) drop-shadow(0 0 9px var(--kol-cyan));
  animation: kol-current-run 5.5s linear infinite;
}

.kol-circuit i {
  position: absolute;
  top: calc(27px + (var(--node) % 2) * 22px);
  left: calc(4% + (var(--node) * 13%));
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: #070910;
  box-shadow: 0 0 0 4px rgba(33, 230, 242, 0.05), 0 0 18px rgba(33, 230, 242, 0.35);
  animation: kol-node 2.8s var(--delay) ease-in-out infinite;
}

.kol-section,
.kol-brand {
  padding: clamp(110px, 12vw, 180px) 0;
}

.kol-section-heading {
  display: grid;
  max-width: 980px;
  grid-template-columns: 1fr minmax(280px, 0.54fr);
  gap: 50px;
}

.kol-section-heading .kol-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.kol-section-heading h2,
.kol-brand h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
}

.kol-section-heading h2 em,
.kol-brand h2 em {
  color: transparent;
  background: linear-gradient(90deg, var(--kol-cyan), var(--kol-pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.kol-section-heading > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--kol-muted);
  font-size: 16px;
  line-height: 1.75;
}

.kol-network {
  background:
    radial-gradient(circle at 80% 35%, rgba(33, 230, 242, 0.1), transparent 28%),
    linear-gradient(180deg, #05060a, #080a10 70%, #0a0b11);
}

.kol-channel-grid {
  display: grid;
  margin-top: 74px;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.kol-channel-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--kol-border);
  border-radius: var(--kol-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 45%),
    rgba(9, 11, 17, 0.9);
  text-decoration: none;
  transition: border-color 0.35s ease, transform 0.45s var(--kol-ease);
}

.kol-channel-card:first-child {
  background:
    linear-gradient(145deg, rgba(33, 230, 242, 0.13), transparent 46%),
    rgba(9, 11, 17, 0.95);
}

.kol-channel-card::before {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(33, 230, 242, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(255, 43, 125, 0.08);
  content: "";
}

.kol-channel-card:hover,
.kol-channel-card:focus-visible {
  border-color: rgba(33, 230, 242, 0.65);
  transform: translateY(-8px);
}

.kol-channel-card span,
.kol-channel-card strong,
.kol-channel-card b {
  display: block;
}

.kol-channel-label {
  color: #797f8f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kol-channel-card strong {
  max-width: 88%;
  margin-top: 34px;
  font: 700 clamp(25px, 2.4vw, 37px)/1 "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.kol-channel-card b {
  margin-top: 17px;
  color: var(--kol-cyan);
  font-size: 13px;
}

.kol-channel-card p {
  max-width: 90%;
  margin: 18px 0 0;
  color: #959baa;
  font-size: 14px;
  line-height: 1.65;
}

.kol-channel-card > i {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--kol-pink);
  font-size: 25px;
  font-style: normal;
}

.kol-format-strip {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 10px;
}

.kol-format-strip span {
  margin-right: auto;
  color: #7f8594;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kol-format-strip b,
.kol-brand-tags b {
  padding: 9px 14px;
  border: 1px solid var(--kol-border);
  border-radius: 999px;
  color: #d5d8df;
  font-size: 11px;
}

.kol-workflow {
  background:
    linear-gradient(180deg, #0a0b11 0%, #07080d 100%);
}

.kol-workflow-line {
  position: relative;
  display: grid;
  margin-top: 82px;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.kol-workflow-line::before {
  position: absolute;
  top: 26px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.kol-workflow-current {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 8%;
  width: 0;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--kol-cyan), #fff, var(--kol-pink));
  box-shadow: 0 0 15px var(--kol-cyan);
  transition: width 2.2s var(--kol-ease);
}

.kol-workflow-line.is-charged .kol-workflow-current {
  width: 84%;
}

.kol-workflow-step {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.kol-workflow-step > span {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #0a0b11;
  color: var(--kol-cyan);
  font: 700 11px/1 "Space Grotesk", sans-serif;
  box-shadow: 0 0 0 7px #0a0b11;
  transform: translateX(-50%);
}

.kol-workflow-step h3 {
  margin: 0;
  font: 600 20px/1.2 "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.kol-workflow-step p {
  margin: 14px 0 0;
  color: #9096a5;
  font-size: 13px;
  line-height: 1.7;
}

.kol-brand {
  min-height: 95svh;
}

.kol-brand::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.kol-brand-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.kol-brand-number {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.kol-closeup {
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 76, 76, 0.23), transparent 34%),
    linear-gradient(135deg, #25050d 0%, #100812 55%, #071524 100%);
}

.kol-closeup .kol-kicker,
.kol-closeup .kol-brand-number {
  color: #ff6e65;
}

.kol-closeup h2 em {
  background: linear-gradient(90deg, #ff5f59, #fff, #67d7ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.kol-brand-orbit {
  position: absolute;
  top: 11%;
  right: -9%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(31, 183, 255, 0.06);
  animation: kol-orbit 22s linear infinite;
}

.kol-brand-orbit::before,
.kol-brand-orbit::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.kol-brand-orbit::before {
  inset: 14%;
  border: 1px solid rgba(255, 92, 78, 0.18);
}

.kol-brand-orbit::after {
  inset: 34%;
  background: radial-gradient(circle, rgba(255, 76, 76, 0.3), transparent 66%);
}

.kol-closeup-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 28px;
}

.kol-closeup-stage {
  position: relative;
  min-height: 680px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(2, 7, 24, 0.05), rgba(2, 6, 20, 0.18) 55%, rgba(3, 4, 13, 0.82) 100%),
    var(--closeup-light) center/cover no-repeat,
    #051436;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), inset 0 0 90px rgba(80, 186, 255, 0.11);
  animation: kol-closeup-stage-light 7.5s ease-in-out infinite;
  isolation: isolate;
}

.kol-closeup-stage::before {
  position: absolute;
  z-index: -1;
  top: 19%;
  left: 4%;
  width: 92%;
  height: 50%;
  border: 1px solid rgba(160, 225, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(44, 163, 255, 0.17), inset 0 0 70px rgba(31, 183, 255, 0.08);
  content: "";
  transform: rotate(-8deg);
}

.kol-closeup-stage::after {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: 19%;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(101, 219, 255, 0.78), #fff, rgba(101, 219, 255, 0.78), transparent);
  box-shadow: 0 0 28px rgba(95, 214, 255, 0.78);
  content: "";
  opacity: 0.66;
}

.kol-closeup-word {
  position: absolute;
  top: 12%;
  left: 34px;
  z-index: 5;
  color: #fff;
  font: italic 700 clamp(48px, 4.4vw, 74px)/0.82 "Space Grotesk", sans-serif;
  letter-spacing: -0.08em;
  text-shadow: 7px 7px 0 rgba(3, 91, 146, 0.46), 0 0 28px rgba(255, 255, 255, 0.2);
  transform: rotate(-5deg);
}

.kol-closeup-word span {
  color: #ff5d63;
  text-shadow: 7px 7px 0 rgba(98, 4, 28, 0.5), 0 0 26px rgba(255, 90, 101, 0.35);
}

.kol-closeup-stage p {
  position: absolute;
  z-index: 6;
  right: 34px;
  bottom: 31px;
  left: 34px;
  max-width: 560px;
  margin: 0;
  color: #d7e6f6;
  font-size: 15px;
  line-height: 1.65;
}

.kol-closeup-stage-label {
  position: absolute;
  z-index: 6;
  top: 32px;
  right: 34px;
  color: #87defe;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kol-product-glow {
  position: absolute;
  z-index: 0;
  top: 43%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 240, 255, 0.5), rgba(35, 130, 255, 0.17) 42%, transparent 70%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  animation: kol-product-glow 3.8s ease-in-out infinite;
}

.kol-closeup-beams {
  position: absolute;
  z-index: 2;
  inset: 24% 12% 18%;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.kol-closeup-beams i {
  position: absolute;
  bottom: 0;
  width: 8%;
  height: 78%;
  background: linear-gradient(180deg, transparent, rgba(114, 219, 255, 0.18) 35%, rgba(194, 247, 255, 0.9));
  filter: blur(8px);
  opacity: 0.22;
  transform-origin: bottom;
  animation: kol-beam-flicker 3.8s ease-in-out infinite;
}

.kol-closeup-beams i:nth-child(1) {
  left: 18%;
}

.kol-closeup-beams i:nth-child(2) {
  left: 39%;
  height: 94%;
  animation-delay: -1.9s;
}

.kol-closeup-beams i:nth-child(3) {
  left: 58%;
  height: 86%;
  animation-delay: -0.8s;
}

.kol-closeup-beams i:nth-child(4) {
  left: 77%;
  height: 69%;
  animation-delay: -2.7s;
}

.kol-closeup-product {
  position: absolute;
  z-index: 3;
  display: block;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 20, 0.46)) drop-shadow(0 0 25px rgba(106, 213, 255, 0.2));
  will-change: transform;
}

.kol-closeup-tube-natural {
  top: 20%;
  left: 14%;
  width: 41%;
  animation: kol-product-float-natural 5.6s ease-in-out infinite;
}

.kol-closeup-tube-sapphire {
  top: 18%;
  right: 11%;
  width: 41%;
  animation: kol-product-float-sapphire 5.1s -1.4s ease-in-out infinite;
}

.kol-closeup-product-copy {
  position: absolute;
  z-index: 5;
  bottom: 142px;
  left: 36px;
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.kol-closeup-product-copy strong {
  color: #fff;
  font: 700 clamp(25px, 3vw, 43px)/0.95 "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.kol-closeup-product-copy span {
  color: #6edfff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.kol-story-stack {
  display: grid;
  gap: 16px;
}

.kol-story-card {
  position: relative;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(8, 9, 15, 0.54);
  backdrop-filter: blur(14px);
}

.kol-story-card::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.kol-story-card > span {
  color: #8f95a3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kol-story-card h3 {
  margin: 13px 0 0;
  font: 600 clamp(20px, 2vw, 27px)/1.18 "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.kol-story-card p {
  margin: 14px 0 0;
  color: #aeb3bf;
  font-size: 14px;
  line-height: 1.7;
}

.kol-garnier {
  background:
    radial-gradient(circle at 78% 40%, rgba(168, 255, 62, 0.2), transparent 30%),
    linear-gradient(160deg, #081208 0%, #07100c 54%, #05080b 100%);
}

.kol-garnier .kol-kicker,
.kol-garnier .kol-brand-number {
  color: var(--kol-green);
}

.kol-garnier h2 em {
  background: linear-gradient(90deg, #a8ff3e, #fff);
  background-clip: text;
  -webkit-background-clip: text;
}

.kol-garnier-grid {
  display: grid;
  max-width: 1040px;
  margin: 76px auto 0;
  align-items: center;
  grid-template-columns: 370px 1fr;
  gap: 80px;
}

.kol-phone {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 52px;
  background: #050608;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 7px rgba(168, 255, 62, 0.06), 0 0 70px rgba(168, 255, 62, 0.1);
}

.kol-phone::before {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 50%;
  width: 92px;
  height: 25px;
  border-radius: 20px;
  background: #050608;
  content: "";
  transform: translateX(-50%);
}

.kol-phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 41px;
  aspect-ratio: 9 / 16;
  background: #111;
}

.kol-phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kol-phone-screen video[hidden] {
  display: none;
}

.kol-live-badge {
  position: absolute;
  z-index: 5;
  top: 62px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(9px);
}

.kol-live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3157;
  box-shadow: 0 0 10px #ff3157;
  animation: kol-node 1.4s ease-in-out infinite;
}

.kol-live-reactions {
  position: absolute;
  z-index: 6;
  right: 16px;
  bottom: 38px;
  width: 42px;
  height: 55%;
  overflow: hidden;
  pointer-events: none;
}

.kol-live-reactions i {
  position: absolute;
  right: 5px;
  bottom: -28px;
  color: #ff416c;
  font: normal 700 24px/1 sans-serif;
  filter: drop-shadow(0 0 9px rgba(255, 65, 108, 0.72));
  opacity: 0;
  transform: translateX(var(--x)) scale(0.72);
  animation: kol-live-heart-rise 4.5s var(--d) ease-out infinite;
}

.kol-live-reactions i:nth-child(2),
.kol-live-reactions i:nth-child(5) {
  color: #ff8a47;
}

.kol-live-reactions i:nth-child(3) {
  color: #ff3157;
}

.kol-phone-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 13px;
}

.kol-phone-controls button {
  width: 36px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #727989;
  background: transparent;
  font: 700 10px/1 "DM Sans", sans-serif;
  cursor: pointer;
}

.kol-phone-controls button.is-active {
  border-color: var(--kol-green);
  color: #081006;
  background: var(--kol-green);
}

.kol-brand-story {
  display: grid;
  gap: 20px;
}

.kol-studio-image {
  width: 100%;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  object-fit: cover;
  object-position: center 48%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.kol-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.kol-garnier .kol-brand-tags b {
  border-color: rgba(168, 255, 62, 0.25);
  color: #cfff9a;
}

.kol-longchau {
  background:
    radial-gradient(circle at 17% 45%, rgba(73, 124, 255, 0.24), transparent 33%),
    radial-gradient(circle at 77% 74%, rgba(255, 84, 163, 0.13), transparent 27%),
    linear-gradient(150deg, #07102d, #0a0b18 52%, #100817);
}

.kol-longchau .kol-kicker,
.kol-longchau .kol-brand-number {
  color: #79a2ff;
}

.kol-longchau h2 em {
  background: linear-gradient(90deg, #6fa4ff, #fff, #ff7db1);
  background-clip: text;
  -webkit-background-clip: text;
}

.kol-gmv-panel {
  position: relative;
  display: grid;
  margin-top: 68px;
  padding: 34px 40px;
  overflow: hidden;
  align-items: end;
  grid-template-columns: auto 1fr auto;
  gap: 12px 30px;
  border: 1px solid rgba(121, 162, 255, 0.28);
  border-radius: 30px;
  background: rgba(7, 12, 32, 0.58);
  box-shadow: inset 0 0 60px rgba(73, 124, 255, 0.08);
}

.kol-gmv-panel > span,
.kol-gmv-panel > small {
  grid-column: 1 / -1;
}

.kol-gmv-panel > span {
  color: #93a1c1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kol-gmv-panel strong {
  font: 700 clamp(54px, 8vw, 116px)/0.85 "Space Grotesk", sans-serif;
  letter-spacing: -0.075em;
}

.kol-gmv-panel b {
  color: #79a2ff;
  font: 700 clamp(23px, 2.6vw, 38px)/1 "Space Grotesk", sans-serif;
}

.kol-gmv-panel small {
  color: #8f9ab3;
}

.kol-gmv-panel i {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 260px;
  height: 180px;
  border: 1px solid rgba(121, 162, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(255, 84, 163, 0.08);
  transform: rotate(-12deg);
}

.kol-longchau-gallery {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 0.88fr 1fr 1fr;
  gap: 18px;
}

.kol-media-card {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #080a10;
}

.kol-media-card img,
.kol-media-card video {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.7s var(--kol-ease);
}

.kol-media-card:hover img,
.kol-media-card:hover video {
  transform: scale(1.035);
}

.kol-media-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(4, 6, 14, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.kol-impact-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.kol-outro {
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 50% 50%, rgba(33, 230, 242, 0.1), transparent 27%),
    linear-gradient(180deg, #070812, #040508);
}

.kol-outro-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

.kol-outro .kol-section-heading {
  display: block;
}

.kol-outro .kol-section-heading .kol-kicker {
  margin-bottom: 22px;
}

.kol-outro-copy > p {
  margin: 0;
  color: #afb5c1;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.75;
}

.kol-credit {
  position: relative;
  z-index: 4;
  width: var(--kol-shell);
  margin: 130px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666d7c;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.kol-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.95s var(--kol-ease);
}

.kol-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.kol-valentine-field,
.kol-leaf-field,
.kol-cloud-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.kol-valentine-field > i,
.kol-cloud-field > i {
  position: absolute;
  bottom: -70px;
  left: var(--x);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  transform: rotate(45deg) scale(var(--s));
}

.kol-valentine-field > i {
  background: rgba(255, 76, 85, 0.78);
  box-shadow: 0 0 26px rgba(255, 60, 75, 0.42);
  animation: kol-slide-heart-rise 12s var(--d) linear infinite;
}

.kol-valentine-field > i::before,
.kol-valentine-field > i::after,
.kol-cloud-field > i::before,
.kol-cloud-field > i::after,
.kol-card-motif-hearts i::before,
.kol-card-motif-hearts i::after,
.kol-card-motif-clouds i::before,
.kol-card-motif-clouds i::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.kol-valentine-field > i::before,
.kol-cloud-field > i::before,
.kol-card-motif-hearts i::before,
.kol-card-motif-clouds i::before {
  left: -50%;
}

.kol-valentine-field > i::after,
.kol-cloud-field > i::after,
.kol-card-motif-hearts i::after,
.kol-card-motif-clouds i::after {
  top: -50%;
}

.kol-leaf-field > i {
  position: absolute;
  top: -55px;
  left: var(--x);
  width: 16px;
  height: 31px;
  border: 1px solid rgba(210, 255, 153, 0.3);
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, rgba(173, 255, 65, 0.55), rgba(41, 135, 44, 0.2));
  box-shadow: 0 0 16px rgba(168, 255, 62, 0.17);
  opacity: 0.48;
  transform: rotate(var(--r));
  animation: kol-leaf-fall 15s var(--d) linear infinite;
}

.kol-cloud-field > i {
  background: rgba(173, 215, 255, 0.34);
  box-shadow: 0 0 20px rgba(101, 168, 255, 0.32), 8px 8px 25px rgba(255, 255, 255, 0.08);
  filter: blur(0.5px);
  animation: kol-cloud-drift 15s var(--d) ease-in-out infinite;
}

.kol-card-motif {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 18px;
  width: 92px;
  height: 62px;
  pointer-events: none;
}

.kol-story-card > :not(.kol-card-motif),
.kol-gmv-panel > :not(.kol-card-motif) {
  position: relative;
  z-index: 2;
}

.kol-card-motif i {
  position: absolute;
  transition:
    opacity 0.65s ease,
    background-color 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.65s ease,
    transform 0.75s var(--kol-ease);
}

.kol-card-motif-hearts i,
.kol-card-motif-clouds i {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  transform: rotate(45deg);
}

.kol-card-motif-hearts i {
  background: rgba(255, 87, 94, 0.42);
  box-shadow: 0 0 14px rgba(255, 72, 84, 0.25);
}

.kol-card-motif-hearts i:nth-child(1),
.kol-card-motif-clouds i:nth-child(1) {
  top: 8px;
  right: 8px;
}

.kol-card-motif-hearts i:nth-child(2),
.kol-card-motif-clouds i:nth-child(2) {
  top: 34px;
  right: 40px;
  opacity: 0.55;
  transform: rotate(45deg) scale(0.68);
}

.kol-card-motif-hearts i:nth-child(3),
.kol-card-motif-clouds i:nth-child(3) {
  top: 8px;
  right: 68px;
  opacity: 0.34;
  transform: rotate(45deg) scale(0.48);
}

.kol-card-motif-leaves i {
  width: 13px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  background: rgba(168, 255, 62, 0.38);
  box-shadow: 0 0 14px rgba(168, 255, 62, 0.2);
}

.kol-card-motif-leaves i:nth-child(1) {
  top: 2px;
  right: 7px;
  transform: rotate(28deg);
}

.kol-card-motif-leaves i:nth-child(2) {
  top: 29px;
  right: 39px;
  opacity: 0.6;
  transform: rotate(-31deg) scale(0.82);
}

.kol-card-motif-leaves i:nth-child(3) {
  top: 5px;
  right: 72px;
  opacity: 0.35;
  transform: rotate(51deg) scale(0.62);
}

.kol-card-motif-clouds i {
  background: rgba(178, 221, 255, 0.46);
  box-shadow: 0 0 18px rgba(103, 174, 255, 0.34);
  filter: blur(0.45px);
}

.kol-story-card,
.kol-media-card,
.kol-gmv-panel {
  transition:
    opacity 0.85s ease,
    border-color 0.42s ease,
    background-color 0.42s ease,
    box-shadow 0.5s ease,
    transform 0.55s var(--kol-ease);
}

.kol-closeup .kol-story-card:hover {
  border-color: rgba(255, 78, 87, 0.76);
  background: rgba(24, 5, 12, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 78, 87, 0.14), 0 0 44px rgba(255, 51, 72, 0.27), inset 0 0 34px rgba(255, 46, 66, 0.08);
  transform: translateY(-5px);
}

.kol-closeup .kol-story-card:hover .kol-card-motif-hearts i:nth-child(1) {
  opacity: 0;
  transform: translate3d(-8px, -72px, 0) rotate(45deg) scale(1.25);
}

.kol-closeup .kol-story-card:hover .kol-card-motif-hearts i:nth-child(2) {
  opacity: 0;
  transform: translate3d(10px, -55px, 0) rotate(45deg) scale(0.95);
}

.kol-closeup .kol-story-card:hover .kol-card-motif-hearts i:nth-child(3) {
  opacity: 0;
  transform: translate3d(-5px, -42px, 0) rotate(45deg) scale(0.72);
}

.kol-garnier .kol-story-card:hover {
  border-color: rgba(168, 255, 62, 0.78);
  background: rgba(7, 23, 8, 0.82);
  box-shadow: 0 0 0 1px rgba(168, 255, 62, 0.12), 0 0 46px rgba(111, 255, 62, 0.24), inset 0 0 34px rgba(168, 255, 62, 0.07);
  transform: translateY(-5px);
}

.kol-garnier .kol-story-card:hover .kol-card-motif-leaves i {
  background: #ffd95c;
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.55);
}

.kol-garnier .kol-story-card:hover .kol-card-motif-leaves i:nth-child(1) {
  transform: translate3d(-12px, 18px, 0) rotate(94deg);
}

.kol-garnier .kol-story-card:hover .kol-card-motif-leaves i:nth-child(2) {
  transform: translate3d(9px, 23px, 0) rotate(-102deg) scale(0.82);
}

.kol-garnier .kol-story-card:hover .kol-card-motif-leaves i:nth-child(3) {
  transform: translate3d(-4px, 30px, 0) rotate(126deg) scale(0.62);
}

.kol-longchau .kol-story-card:hover,
.kol-longchau .kol-media-card:hover,
.kol-longchau .kol-gmv-panel:hover {
  border-color: rgba(97, 164, 255, 0.82);
  box-shadow: 0 0 0 1px rgba(97, 164, 255, 0.14), 0 0 48px rgba(54, 128, 255, 0.26), inset 0 0 34px rgba(60, 140, 255, 0.08);
  transform: translateY(-5px);
}

.kol-longchau .kol-story-card:hover .kol-card-motif-clouds i,
.kol-longchau .kol-media-card:hover .kol-card-motif-clouds i,
.kol-longchau .kol-gmv-panel:hover .kol-card-motif-clouds i {
  opacity: 0;
  filter: blur(11px);
  transform: translate3d(0, -14px, 0) rotate(45deg) scale(1.65);
}

.kol-media-card .kol-card-motif {
  z-index: 3;
  top: 20px;
}

.kol-media-card figcaption {
  z-index: 4;
}

@keyframes kol-current-run {
  0% {
    left: -18%;
  }
  100% {
    left: 105%;
  }
}

@keyframes kol-current-fall {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: translateY(12px) scaleY(0.5);
  }
}

@keyframes kol-node {
  0%,
  100% {
    opacity: 0.45;
    box-shadow: 0 0 0 4px rgba(33, 230, 242, 0.03), 0 0 8px rgba(33, 230, 242, 0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(33, 230, 242, 0.09), 0 0 24px var(--kol-cyan);
  }
}

@keyframes kol-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes kol-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes kol-product-float-natural {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  50% {
    transform: translate3d(5px, -16px, 0) rotate(-3deg);
  }
}

@keyframes kol-product-float-sapphire {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }
  50% {
    transform: translate3d(-5px, -18px, 0) rotate(3deg);
  }
}

@keyframes kol-product-glow {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes kol-closeup-stage-light {
  0%,
  100% {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), inset 0 0 90px rgba(80, 186, 255, 0.1);
  }
  22% {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), inset 0 0 120px rgba(80, 186, 255, 0.18);
  }
  26% {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), inset 0 0 76px rgba(80, 186, 255, 0.08);
  }
  29%,
  67% {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), inset 0 0 132px rgba(111, 222, 255, 0.2);
  }
}

@keyframes kol-beam-flicker {
  0%,
  100% {
    opacity: 0.12;
    transform: translateX(-5px) scaleY(0.86);
  }
  38% {
    opacity: 0.5;
    transform: translateX(4px) scaleY(1.04);
  }
  43% {
    opacity: 0.22;
  }
  46% {
    opacity: 0.72;
  }
  68% {
    opacity: 0.28;
    transform: translateX(-2px) scaleY(0.94);
  }
}

@keyframes kol-live-heart-rise {
  0% {
    opacity: 0;
    transform: translate3d(var(--x), 0, 0) scale(0.58);
  }
  16% {
    opacity: 0.95;
  }
  70% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translate3d(-6px, -280px, 0) scale(1.2) rotate(12deg);
  }
}

@keyframes kol-slide-heart-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(45deg) scale(var(--s));
  }
  14% {
    opacity: 0.5;
  }
  60% {
    transform: translate3d(24px, -58vh, 0) rotate(65deg) scale(var(--s));
  }
  100% {
    opacity: 0;
    transform: translate3d(-15px, -112vh, 0) rotate(90deg) scale(var(--s));
  }
}

@keyframes kol-leaf-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--r));
  }
  14% {
    opacity: 0.46;
  }
  52% {
    transform: translate3d(34px, 54vh, 0) rotate(calc(var(--r) + 130deg));
  }
  100% {
    opacity: 0;
    transform: translate3d(-22px, 112vh, 0) rotate(calc(var(--r) + 270deg));
  }
}

@keyframes kol-cloud-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(45deg) scale(var(--s));
  }
  18% {
    opacity: 0.34;
  }
  52% {
    transform: translate3d(32px, -48vh, 0) rotate(52deg) scale(var(--s));
  }
  100% {
    opacity: 0;
    transform: translate3d(-20px, -106vh, 0) rotate(65deg) scale(var(--s));
  }
}

@media (max-width: 1060px) {
  :root {
    --kol-shell: min(100% - 44px, 960px);
  }

  .kol-site-header .desktop-nav {
    display: none;
  }

  .kol-site-header .mobile-menu {
    position: relative;
    display: block;
  }

  .kol-site-header .mobile-menu summary {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
  }

  .kol-site-header .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .kol-site-header .mobile-menu nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    width: 230px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(7, 8, 13, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
  }

  .kol-site-header .mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 10px;
    color: #d5d9e2;
    font-size: 12px;
    text-decoration: none;
  }

  .kol-site-header .mobile-menu nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .kol-hero {
    background-position: 61% center;
  }

  .kol-hero-grid {
    grid-template-columns: 1fr;
  }

  .kol-hero-signal {
    max-width: 310px;
  }

  .kol-channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kol-channel-card:first-child {
    grid-column: 1 / -1;
  }

  .kol-workflow-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .kol-workflow-line::before,
  .kol-workflow-current {
    top: 20px;
    bottom: 20px;
    left: 26px;
    width: 2px;
    height: auto;
  }

  .kol-workflow-current {
    width: 5px;
    height: 0;
  }

  .kol-workflow-line.is-charged .kol-workflow-current {
    width: 5px;
    height: calc(100% - 40px);
  }

  .kol-workflow-step {
    min-height: 92px;
    padding: 0 0 0 86px;
  }

  .kol-workflow-step > span {
    top: 0;
    left: 0;
    transform: none;
  }

  .kol-closeup-grid {
    grid-template-columns: 1fr;
  }

  .kol-story-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .kol-garnier-grid {
    grid-template-columns: minmax(300px, 0.72fr) 1fr;
    gap: 46px;
  }

  .kol-longchau-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .kol-media-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --kol-shell: calc(100% - 30px);
    --kol-radius: 24px;
  }

  body.pmd-kol-case.admin-bar .kol-site-header {
    top: 46px;
  }

  .kol-site-header {
    min-height: 66px;
    padding: 11px 15px;
  }

  .kol-site-header .header-identities {
    gap: 12px;
  }

  .kol-site-header .wordmark {
    font-size: 17px;
  }

  .kol-site-header .project-wordmark {
    font-size: 12px;
  }

  .kol-hero {
    min-height: auto;
    padding: 130px 0 100px;
    background:
      linear-gradient(180deg, rgba(5, 6, 10, 0.5) 0%, rgba(5, 6, 10, 0.84) 34%, #05060a 76%),
      var(--hero-image) 62% top/auto 48% no-repeat,
      #05060a;
  }

  .kol-hero-grid {
    gap: 38px;
  }

  .kol-hero-copy {
    padding-top: 36vh;
  }

  .kol-hero h1 {
    font-size: clamp(48px, 14vw, 76px);
    line-height: 0.9;
  }

  .kol-hero-role {
    margin-top: 23px;
    font-size: 12px;
  }

  .kol-hero-intro {
    font-size: 15px;
  }

  .kol-actions,
  .kol-outro-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .kol-hero-signal {
    max-width: none;
  }

  .kol-scroll-cue {
    display: none;
  }

  .kol-section,
  .kol-brand {
    min-height: auto;
    padding: 92px 0;
  }

  .kol-section-heading {
    display: block;
  }

  .kol-section-heading .kol-kicker {
    margin-bottom: 18px;
  }

  .kol-section-heading h2,
  .kol-brand h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .kol-section-heading > p:last-child {
    margin-top: 24px;
  }

  .kol-channel-grid,
  .kol-impact-grid {
    grid-template-columns: 1fr;
  }

  .kol-channel-card:first-child {
    grid-column: auto;
  }

  .kol-channel-card {
    min-height: 270px;
  }

  .kol-format-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .kol-format-strip span {
    width: 100%;
    margin: 0 0 8px;
  }

  .kol-story-stack {
    grid-template-columns: 1fr;
  }

  .kol-brand-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .kol-brand-number {
    align-self: flex-start;
  }

  .kol-closeup-stage {
    min-height: 585px;
    padding: 24px;
  }

  .kol-closeup-word {
    top: 12%;
    left: 24px;
    font-size: clamp(44px, 14vw, 68px);
  }

  .kol-closeup-stage-label {
    top: 22px;
    right: 22px;
    max-width: 150px;
    text-align: right;
  }

  .kol-closeup-tube-natural {
    top: 22%;
    left: 12%;
    width: 45%;
  }

  .kol-closeup-tube-sapphire {
    top: 20%;
    right: 10%;
    width: 45%;
  }

  .kol-closeup-product-copy {
    bottom: 154px;
    left: 24px;
  }

  .kol-closeup-stage p {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .kol-closeup-stage p {
    font-size: 15px;
  }

  .kol-garnier-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .kol-phone {
    width: min(340px, 92%);
    margin-inline: auto;
  }

  .kol-studio-image {
    height: 320px;
  }

  .kol-gmv-panel {
    display: block;
    padding: 28px 22px;
  }

  .kol-gmv-panel strong,
  .kol-gmv-panel b {
    display: block;
  }

  .kol-gmv-panel strong {
    margin-top: 18px;
    font-size: clamp(43px, 14vw, 72px);
    overflow-wrap: anywhere;
  }

  .kol-gmv-panel b {
    margin-top: 9px;
  }

  .kol-gmv-panel small {
    display: block;
    margin-top: 13px;
  }

  .kol-longchau-gallery {
    grid-template-columns: 1fr;
  }

  .kol-media-card:first-child {
    grid-column: auto;
  }

  .kol-media-card,
  .kol-media-card img,
  .kol-media-card video {
    min-height: 440px;
  }

  .kol-outro-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .kol-credit {
    margin-top: 90px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .kol-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .kol-current,
  .kol-circuit i,
  .kol-hero-glow,
  .kol-brand-orbit,
  .kol-valentine-field > i,
  .kol-leaf-field > i,
  .kol-cloud-field > i,
  .kol-live-reactions i,
  .kol-closeup-beams i,
  .kol-closeup-stage,
  .kol-closeup-product,
  .kol-product-glow,
  .kol-scroll-cue i,
  .kol-live-badge i {
    animation: none !important;
  }

  .kol-workflow-current {
    width: 84%;
    transition: none;
  }

  .kol-phone video,
  .kol-media-card video {
    animation: none;
  }

  .kol-story-card,
  .kol-media-card,
  .kol-gmv-panel,
  .kol-card-motif i {
    transition: none;
  }
}
